/* Import Fonts */
@import url("https://fonts.googleapis.com/css2?family=Audiowide&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
/* Light Beam Effects */
.light-beam {
	position: absolute;
	top: -150px;
	right: -50px;
	width: 600px;
	height: 800px;
	background: linear-gradient(
		45deg,
		rgba(255, 255, 255, 0.05),
		rgba(255, 255, 255, 0)
	);
	opacity: 0.2;
	filter: blur(100px);
	pointer-events: none;
	z-index: 0; /* Behind all content */
}

.second-beam {
	position: absolute;
	bottom: -200px;
	left: -100px;
	width: 500px;
	height: 700px;
	background: linear-gradient(
		45deg,
		rgba(255, 255, 255, 0.05),
		rgba(255, 255, 255, 0)
	);
	opacity: 0.15;
	filter: blur(100px);
	pointer-events: none;
	z-index: 0; /* Behind all content */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.light-beam {
		width: 400px;
		height: 600px;
		top: -100px;
		right: -30px;
	}

	.second-beam {
		width: 350px;
		height: 500px;
		bottom: -150px;
		left: -50px;
	}
}
/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
		Roboto, sans-serif;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px; /* Adjust based on nav height */
}

body {
	background-color: #000;
	color: #fff;
	min-height: 100vh;
	overflow-x: hidden;
	position: relative;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Navigation */
.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	position: sticky;
	top: 0;
	z-index: 10;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(10px);
	transition: background 0.3s ease;
}

.logo {
	font-family: "Audiowide", serif;
	font-size: 1.75rem;
	color: #fff;
	text-decoration: none;
	letter-spacing: 3px;
	font-weight: 600;
}

.logo img {
	height: 40px;
	width: auto;
	margin-right: 8px;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.nav-link {
	color: #fff;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	opacity: 0.8;
	transition: opacity 0.3s ease;
	display: flex;
	align-items: center;
	gap: 4px;
}

.nav-link:hover {
	opacity: 1;
}

.button {
	padding: 0.5rem 1rem;
	border-radius: 6px;
	font-size: 0.9rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
}

.button-dark {
	background: #fff;
	color: #000;
}

.button-dark:hover {
	background: #e0e0e0;
}

.button-light {
	background: transparent;
	border: 1px solid #fff;
	color: #fff;
}

.button-light:hover {
	background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	color: #fff;
	font-size: 1.5rem;
	cursor: pointer;
}

/* Hero Section */
.hero {
	padding: 6rem 2rem;
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
}

.hero-content {
	max-width: 650px;
}

.hero-title {
	font-size: clamp(2.5rem, 6vw, 5rem);
	line-height: 1.1;
	margin-bottom: 1.5rem;
	font-weight: 700;
	color: #fff;
}

.hero-description {
	font-size: 1.25rem;
	opacity: 0.8;
	max-width: 600px;
	margin-bottom: 2.5rem;
	line-height: 1.6;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	padding: 0.9rem 2.5rem;
	background: #fff;
	color: #000;
	text-decoration: none;
	border-radius: 100px;
	font-weight: 600;
	gap: 0.5rem;
	transition: transform 0.3s ease, background 0.3s ease;
}

.cta-button:hover {
	transform: scale(1.05);
	background: #e0e0e0;
}

.hero-image {
	flex: 0 1 45%;
	position: relative;
	display: grid;
	place-items: center;
}

.dashboard-preview {
	width: 100%;
	max-width: 600px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(5px);
	padding: 1rem;
	height: 350px;
	overflow: hidden;
}

.dashboard-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}

.dashboard-title {
	font-size: 1.2rem;
	font-weight: 500;
}

.dashboard-controls {
	display: flex;
	gap: 0.5rem;
}

.dashboard-controls span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
}

.dashboard-controls span:nth-child(1) {
	background: #ff5f57;
}
.dashboard-controls span:nth-child(2) {
	background: #febc2e;
}
.dashboard-controls span:nth-child(3) {
	background: #28c840;
}

.dashboard-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	height: calc(100% - 50px);
}

.dashboard-chart {
	background: rgba(255, 255, 255, 0.03);
	border-radius: 8px;
	padding: 1rem;
	position: relative;
	overflow: hidden;
}

.chart-title {
	font-size: 0.9rem;
	margin-bottom: 1rem;
	opacity: 0.8;
}

.chart-visual {
	height: 70%;
	position: relative;
}

.chart-bar {
	position: absolute;
	bottom: 0;
	width: 10%;
	background: #fff;
	border-radius: 4px 4px 0 0;
	animation: chartGrow 2s infinite alternate;
}

.chart-line {
	height: 2px;
	background: rgba(255, 255, 255, 0.1);
	position: relative;
	top: 50%;
}

.chart-dot {
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #fff;
	top: -3px;
	animation: chartMove 4s infinite alternate;
}

/* Light Beams */
.light-beam {
	position: absolute;
	top: -150px;
	right: -50px;
	width: 600px;
	height: 800px;
	background: linear-gradient(
		45deg,
		rgba(255, 255, 255, 0.05),
		rgba(255, 255, 255, 0)
	);
	opacity: 0.2;
	filter: blur(100px);
	pointer-events: none;
}

.second-beam {
	position: absolute;
	bottom: -200px;
	left: -100px;
	width: 500px;
	height: 700px;
	background: linear-gradient(
		45deg,
		rgba(255, 255, 255, 0.05),
		rgba(255, 255, 255, 0)
	);
	opacity: 0.15;
	filter: blur(100px);
	pointer-events: none;
}

/* Features/About Section */
.features {
	padding: 6rem 2rem;
	position: relative;
	z-index: 2;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 2rem;
	color: #fff;
}

.section-subtitle {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 4rem;
	opacity: 0.7;
	font-size: 1.1rem;
	line-height: 1.6;
}

.feature-grid,
.about-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.feature-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: transform 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-10px);
}

.feature-icon {
	font-size: 2rem;
	margin-bottom: 1.5rem;
}

.feature-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #fff;
}

.feature-description {
	opacity: 0.8;
	line-height: 1.6;
}

/* Services Section */
.services {
	padding: 6rem 2rem;
	position: relative;
	z-index: 2;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.service-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: transform 0.3s ease;
}

.service-card:hover {
	transform: translateY(-10px);
}

/* Testimonials */
.testimonials {
	padding: 6rem 2rem;
	position: relative;
	z-index: 2;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.testimonial-card {
	background: rgba(255, 255, 255, 0.03);
	border-radius: 12px;
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-content {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	position: relative;
}

.testimonial-content::before {
	content: '"';
	font-size: 4rem;
	position: absolute;
	left: -1.5rem;
	top: -1.5rem;
	opacity: 0.2;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.author-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #fff;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}

.author-info h4 {
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.author-info p {
	opacity: 0.6;
	font-size: 0.9rem;
}

/* Pricing */
.pricing {
	padding: 6rem 2rem;
	position: relative;
	z-index: 2;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.pricing-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: transform 0.3s ease;
	position: relative;
	overflow: hidden;
}

.pricing-card.popular::after {
	content: "Most Popular";
	position: absolute;
	top: 12px;
	right: -36px;
	background: #fff;
	color: #000;
	padding: 0.5rem 3rem;
	font-size: 0.8rem;
	font-weight: 600;
	transform: rotate(45deg);
}

.pricing-card:hover {
	transform: translateY(-10px);
}

.pricing-name {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.pricing-description {
	opacity: 0.7;
	margin-bottom: 2rem;
	font-size: 0.9rem;
}

.pricing-amount {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
}

.pricing-period {
	opacity: 0.6;
	margin-bottom: 2rem;
}

.pricing-features {
	margin-bottom: 2rem;
	flex-grow: 1;
}

.pricing-feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.check-icon {
	color: #fff;
}

.pricing-cta {
	display: block;
	padding: 0.75rem;
	text-align: center;
	border-radius: 6px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
}

.primary-cta {
	background: #fff;
	color: #000;
}

.primary-cta:hover {
	background: #e0e0e0;
}

.secondary-cta {
	background: transparent;
	border: 1px solid #fff;
	color: #fff;
}

.secondary-cta:hover {
	background: rgba(255, 255, 255, 0.1);
}

/* Contact */
.contact {
	padding: 6rem 2rem;
	position: relative;
	z-index: 2;
}

.contact-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 4rem;
	max-width: 1200px;
	margin: 0 auto;
}

.contact-left h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: #fff;
}

.contact-left p {
	opacity: 0.8;
	margin-bottom: 1rem;
	line-height: 1.6;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-group label {
	font-size: 0.9rem;
	opacity: 0.8;
}

.form-group input,
.form-group textarea {
	padding: 0.75rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	color: #fff;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: rgba(255, 255, 255, 0.3);
}

.form-group textarea {
	min-height: 120px;
	resize: vertical;
}

.submit-button {
	background: #fff;
	color: #000;
	border: none;
	padding: 0.75rem;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.3s ease, background 0.3s ease;
}

.submit-button:hover {
	transform: scale(1.02);
	background: #e0e0e0;
}

/* Footer Styles */
.footer {
    background: #000;
    padding: 6rem 2rem 2rem;
    position: relative;
    z-index: 2;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer-about {
    max-width: 300px;
}

.footer-logo {
    font-family: "Audiowide", serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-decoration: none;
    display: block;
}

.footer-about p {
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Newsletter Form */
.footer-newsletter {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.footer-newsletter input {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff;
    font-size: 0.9rem;
    flex-grow: 1;
}

.footer-newsletter input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter button {
    padding: 0.75rem 1.5rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Footer Links */
.footer-links h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #fff;
}

/* Creative Element: Innovation Wave */
.footer-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
    z-index: -1;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

/* Copyright */
.copyright {
    text-align: center;
    padding-top: 2rem;
    opacity: 0.5;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Screen Reader Only Utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer {
        padding: 4rem 1.5rem 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-about {
        max-width: 100%;
    }

    .footer-logo {
        font-size: 1.75rem;
    }

    .footer-wave {
        height: 80px;
    }
}					

/* Animations */
@keyframes chartGrow {
	from {
		height: 30%;
	}
	to {
		height: 80%;
	}
}

@keyframes chartMove {
	0% {
		left: 10%;
	}
	100% {
		left: 90%;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.feature-card,
.service-card,
.testimonial-card,
.pricing-card {
	animation: fadeInUp 0.6s ease backwards;
}

.feature-card:nth-child(1),
.service-card:nth-child(1),
.testimonial-card:nth-child(1),
.pricing-card:nth-child(1) {
	animation-delay: 0.1s;
}
.feature-card:nth-child(2),
.service-card:nth-child(2),
.testimonial-card:nth-child(2),
.pricing-card:nth-child(2) {
	animation-delay: 0.2s;
}
.feature-card:nth-child(3),
.service-card:nth-child(3),
.pricing-card:nth-child(3) {
	animation-delay: 0.3s;
}
.service-card:nth-child(4) {
	animation-delay: 0.4s;
}

/* Responsive Styles */
@media (max-width: 1100px) {
	.hero-image {
		margin-top: 3rem;
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}
	.mobile-menu-toggle {
		display: block;
	}
	.hero {
		flex-direction: column;
		padding: 4rem 1.5rem;
	}
	.hero-title {
		font-size: 2.5rem;
	}
	.hero-description {
		font-size: 1rem;
	}
	.section-title {
		font-size: 2rem;
	}
	.section-subtitle {
		font-size: 1rem;
	}
	.feature-grid,
	.service-grid,
	.testimonial-grid,
	.pricing-grid,
	.contact-container,
	.about-grid {
		grid-template-columns: 1fr;
	}
	.dashboard-preview {
		max-width: 100%;
		height: 300px;
	}
}

/* Scrollbar */
::-webkit-scrollbar {
	width: 0;
}
iframe {
	width: 100%;
	border: none;
	scrollbar-width: none;
	scroll-behavior: smooth;
}
