:root {
	--bengal-orange: #f57c00;
	--empire-blue: #1976d2;
	--innovation-green: #43a047;
	--dark-bg: #121212;
	--light-text: #f5f5f5;
	--muted-gray: #9e9e9e;
	--hover-orange: #ff9800;
	--active-blue: #1565c0;
	--success-green: #2e7d32;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	background: var(--dark-bg);
	color: var(--light-text);
	overflow-x: hidden;
}

h1,
h2,
h3 {
	font-family: 'Space Grotesk', sans-serif;
}

/* Animated Background - Reduced for hero only */
.animated-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
}

.animated-bg::before {
	content: '';
	position: absolute;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(245, 124, 0, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	top: -250px;
	right: -250px;
	animation: float 20s infinite alternate;
}

.animated-bg::after {
	content: '';
	position: absolute;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(25, 118, 210, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	bottom: -200px;
	left: -200px;
	animation: float 15s infinite alternate-reverse;
}

@keyframes float {
	0% {
		transform: translate(0, 0) scale(1);
	}

	100% {
		transform: translate(100px, 100px) scale(1.1);
	}
}

/* Moving Grid Background for Hero */
@keyframes moveGrid {
	0% {
		background-position: 0 0;
	}

	100% {
		background-position: 80px 80px;
	}
}

#grid-bg {
	background-image:
		linear-gradient(to right, rgba(245, 245, 245, 0.08) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(245, 245, 245, 0.08) 1px, transparent 1px);
	background-size: 40px 40px;
	animation: moveGrid 20s linear infinite;
}

.glow {
	background-color: rgba(25, 118, 210, 0.2);
	/* empire-blue glow */
}

/* Navbar */
.navbar {
	backdrop-filter: blur(10px);
	background: rgba(18, 18, 18, 0.233);
	border-bottom: 1px solid rgba(245, 124, 0, 0.1);
	animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
	from {
		transform: translateY(-100%);
	}

	to {
		transform: translateY(0);
	}
}

.nav-link {
	position: relative;
	transition: color 0.3s;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--bengal-orange);
	transition: width 0.3s;
}

.nav-link:hover::after {
	width: 100%;
}


/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.hero-content {
	animation: fadeInUp 1s ease-out;
	z-index: 10;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.gradient-text {
	background: linear-gradient(135deg, var(--bengal-orange) 0%, var(--empire-blue) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Buttons */
.btn-primary {
	background: linear-gradient(135deg, var(--bengal-orange) 0%, var(--hover-orange) 100%);
	color: white;
	padding: 12px 32px;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s;
	border: none;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
	transition: left 0.3s;
}

.btn-primary:hover::before {
	left: 100%;
}

.btn-secondary {
	border: 2px solid var(--empire-blue);
	color: var(--empire-blue);
	padding: 10px 30px;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s;
	background: transparent;
	cursor: pointer;
}

.btn-secondary:hover {
	background: var(--empire-blue);
	color: rgba(255, 255, 255, 0.233);
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(25, 118, 210, 0.3);
}

/* Marquee */

.marquee-track {
	display: flex;
	width: max-content;
	animation: scroll-bounce 59s linear infinite alternate;
}

@keyframes scroll-bounce {
	0% {
		transform: translateX(0);
	}

	50% {
		transform: translateX(-49%);
	}
    100% {
        transform: translateX(49%);
}
}
.logo-icon {
	transition: transform 0.3s ease;
}

.logo-icon:hover {
	transform: scale(1.2);
}

.marquee-track:hover {
	animation-play-state: paused;
}


/* Cards */
.card {
	background: rgba(30, 30, 30, 0.6);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(245, 124, 0, 0.1);
	border-radius: 16px;
	padding: 24px;
	transition: all 0.3s;
	height: 100%;
}

.card:hover {
	transform: translateY(-8px);
	border-color: var(--bengal-orange);
	box-shadow: 0 20px 40px rgba(245, 124, 0, 0.2);
}

.repo-card {
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.repo-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(245, 124, 0, 0.1), transparent);
	transition: left 0.5s;
}

.repo-card:hover::before {
	left: 100%;
}

/* Stats Section */
.stat-item {
	text-align: center;
	animation: fadeInUp 0.8s ease-out backwards;
}

.stat-item:nth-child(1) {
	animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
	animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
	animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
	animation-delay: 0.4s;
}

.stat-number {
	font-size: 3rem;
	font-weight: 800;
	background: linear-gradient(135deg, var(--bengal-orange) 0%, var(--empire-blue) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* FAQ */

.faq-section {

	text-align: center;
	padding: 10px;

}

.faq-headline {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 2rem;
	background: linear-gradient(135deg, var(--bengal-orange) 0%, var(--empire-blue) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.faq-item {
	border: 1px solid #e5e7eb;
	border-radius: 0.5rem;
	overflow: hidden;
	margin-bottom: 1rem;
	background: #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.faq-question {
	width: 100%;
	padding: 1rem 1.25rem;
	background: var(--bengal-orange);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.125rem;
	font-weight: 500;
	transition: background 0.3s;
}

.faq-question:hover {
	background: var(--active-blue);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	padding: 0 1.25rem;
	background: var(--success-green);
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
	max-height: 500px;
	/* adjust according to content */
	padding: 1rem 1.25rem;
}

.plus {
	transition: transform 0.3s;
	font-weight: bold;
}

.plus.rotate {
	transform: rotate(45deg);
}

/* Loading Animation */
.loader {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid rgba(245, 124, 0, 0.3);
	border-top-color: var(--bengal-orange);
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* Scroll Animations */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s, transform 0.6s;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Footer */
footer {
	border-top: 1px solid rgba(245, 124, 0, 0.1);
	background: rgba(18, 18, 18, 0.8);
	backdrop-filter: blur(10px);
}

/* Responsive */
@media (max-width: 768px) {
	.stat-number {
		font-size: 2rem;
	}
}