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

:root {
    --bg-color: #0b0b0f;
    --card-bg: #12121a;
    --accent: #8e44ad;
    --neon-blue: #00d4ff;
}

body {
    
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: #ffffff;
    min-height: 100 vh;
    display: flex;
    flex-direction: column;
}

#root {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Alignment: Left to Right */
nav {
    display: flex;
    justify-content: space-between; /* Logo left, Nav-links right */
    align-items: center;
    padding: 20px 5%;
    background: rgba(18, 18, 26, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1f1f2e;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    cursor: pointer;
}

.logo span { color: var(--accent); }

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-links button {
    background: transparent;
    border: 1px solid #2d2d3f;
    color: #ccc;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
}

.nav-links .active {
    background: var(--neon-blue);
    color: #000;
    border: none;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

/* Main Content Wrapper */
.main-wrapper {
    flex: 1; /* Ye content ko push karega taake footer niche rahe */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.card {
    background: var(--card-bg);
    border: 1px solid #222;
    padding: 60px 40px;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.btn-primary {
    background: #6c5ce7;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 25px;
}

/* Footer Fix */
footer {
    padding: 60px 5% 30px 5%; /* Top spacing zyada rakhi hai */
    background: #08080c;
    border-top: 1px solid #1f1f2e;
    color: #888;
    font-size: 14px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    font-size: 20px;
    margin-bottom: 10px;
    display: block;
}

.footer-brand p {
    max-width: 300px;
    line-height: 1.6;
    color: #666;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-links li:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 8px var(--neon-blue);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #16161d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #444;
}

.footer-bottom strong {
    color: var(--accent);
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
/* 1. Card Entry (Niche se upar ana) */
@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Background Particle Animation */
@keyframes floatParticle {
    0% { 
        transform: translateY(0) translateX(0); 
        opacity: 0; 
    }
    10% { opacity: 0.2; }
    90% { opacity: 0.2; }
    100% { 
        transform: translateY(-100vh) translateX(50px); 
        opacity: 0; 
    }
}

/* Base Body settings taake background dark rahe */
body {
    background-color: #050509 !important; /* Pure Dark for Glow */
    overflow-x: hidden;
}

/* Ensure content particles ke upar rahe */
nav, main, footer {
    position: relative;
    z-index: 1;
}

/* Styling tag ke andar ye naye rules add karein */

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

.premium-3d-card {
    transform-style: preserve-3d;
}

.premium-3d-card:hover h3 {
    transform: translateZ(30px); /* Text bahar ki taraf aayega hover par */
    color: #a855f7;
}

.features-grid {
    animation: fadeInUp 1s ease-out both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Navigation Base Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: relative;
    z-index: 1000;
}

/* Hamburger Styles (Desktop par hide rahega) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

/* Mobile Media Query (Screen width 768px se kam ho tab) */
@media (max-width: 768px) {
    .hamburger {
        display: flex; /* Mobile par dikhao */
    }

    .nav-links {
        display: none; /* Default mein hide karo */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 18, 0.95);
        backdrop-filter: blur(20px);
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.mobile-active {
        display: flex; /* Menu click hone par dikhao */
    }

    .nav-links button {
        width: 90%;
        margin: 10px auto;
        text-align: center;
    }

    /* Hero Section ki scaling mobile ke liye */
    .hero-title {
        font-size: 35px !important;
    }
}

/* about css */
