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

:root {
    --neon-pink: #ff006e;
    --neon-cyan: #00f5ff;
    --neon-purple: #8b00ff;
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Noise overlay */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Grid overlay */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image:
        linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.95), transparent);
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--neon-cyan);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 20px var(--neon-pink);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-pink);
    transition: width 0.3s ease;
}

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

/* Glitch effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 2s infinite linear alternate-reverse;
    color: var(--neon-pink);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 3s infinite linear alternate-reverse;
    color: var(--neon-cyan);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 95% 0); transform: translate(-2px, 2px); }
    20% { clip-path: inset(30% 0 40% 0); transform: translate(2px, -2px); }
    40% { clip-path: inset(60% 0 20% 0); transform: translate(-2px, 2px); }
    60% { clip-path: inset(80% 0 5% 0); transform: translate(2px, -2px); }
    80% { clip-path: inset(10% 0 70% 0); transform: translate(-2px, 2px); }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: inset(95% 0 0 0); transform: translate(2px, -2px); }
    20% { clip-path: inset(40% 0 30% 0); transform: translate(-2px, 2px); }
    40% { clip-path: inset(20% 0 60% 0); transform: translate(2px, -2px); }
    60% { clip-path: inset(5% 0 80% 0); transform: translate(-2px, 2px); }
    80% { clip-path: inset(70% 0 10% 0); transform: translate(2px, -2px); }
}

/* Hero section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(139, 0, 255, 0.1) 0%, transparent 70%);
}

.hero-content {
    text-align: center;
    z-index: 10;
}

.glitch-large {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 900;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    position: relative;
    text-shadow:
        0 0 10px var(--neon-cyan),
        0 0 20px var(--neon-cyan),
        0 0 40px var(--neon-cyan),
        0 0 80px var(--neon-purple);
}

.glitch-large::before,
.glitch-large::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-large::before {
    animation: glitch-1 0.5s infinite linear alternate-reverse;
    color: var(--neon-pink);
    z-index: -1;
    opacity: 0.8;
}

.glitch-large::after {
    animation: glitch-2 0.7s infinite linear alternate-reverse;
    color: var(--neon-cyan);
    z-index: -2;
    opacity: 0.8;
}

.tagline {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1rem, 3vw, 1.5rem);
    letter-spacing: 0.5em;
    color: var(--neon-pink);
    margin-bottom: 2rem;
}

.cyber-line {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    margin: 2rem auto;
    position: relative;
}

.cyber-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--neon-cyan);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    box-shadow: 0 0 20px var(--neon-cyan);
}

.subtitle {
    font-size: 1.1rem;
    letter-spacing: 0.3em;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    text-decoration: none;
    border: 2px solid var(--neon-pink);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background: transparent;
}

.cta-button:hover {
    background: var(--neon-pink);
    box-shadow:
        0 0 20px var(--neon-pink),
        inset 0 0 20px rgba(255, 0, 110, 0.3);
    transform: translateY(-3px);
}

.cta-button span {
    position: relative;
    z-index: 1;
}

/* Floating shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    border: 2px solid var(--neon-cyan);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.shape-2 {
    width: 200px;
    height: 200px;
    border: 2px solid var(--neon-pink);
    top: 60%;
    right: 10%;
    animation-delay: -5s;
    border-radius: 50%;
}

.shape-3 {
    width: 150px;
    height: 150px;
    border: 2px solid var(--neon-purple);
    top: 20%;
    right: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    border: 2px solid var(--neon-cyan);
    bottom: 10%;
    left: 15%;
    animation-delay: -15s;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, 30px) rotate(90deg); }
    50% { transform: translate(0, 60px) rotate(180deg); }
    75% { transform: translate(-30px, 30px) rotate(270deg); }
}

/* Sections */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 4rem;
    position: relative;
}

.section-content {
    max-width: 1200px;
    width: 100%;
    z-index: 10;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.1em;
    margin-bottom: 4rem;
    text-align: center;
}

.highlight {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
}

/* About section */
.about {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

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

.about-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    transition: left 0.4s ease;
}

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

.about-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.1);
}

.card-icon {
    font-size: 3rem;
    color: var(--neon-pink);
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Vision section */
.vision {
    background: var(--darker-bg);
    position: relative;
}

.vision-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 0, 110, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(0, 245, 255, 0.1) 0%, transparent 40%);
}

.vision-text {
    text-align: center;
}

.large-text {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.stats-row {
    display: flex;
    justify-content: center;
    gap: 6rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--neon-cyan);
    text-shadow: 0 0 30px var(--neon-cyan);
}

.stat-label {
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    color: var(--text-secondary);
}

/* Contact section */
.contact {
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.contact-intro {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-box {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-link {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
}

.bracket {
    color: var(--neon-pink);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: var(--neon-pink);
    color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.3);
    transform: translateY(-5px);
}

/* Footer */
.footer {
    padding: 3rem 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--dark-bg);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--neon-cyan);
}

.footer p {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .section {
        padding: 4rem 2rem;
    }

    .stats-row {
        gap: 3rem;
    }

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

@media (max-width: 480px) {
    .nav-links {
        display: none;
    }

    .logo {
        font-size: 1.2rem;
    }
}
