* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: #050816;
            color: #fff;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
		
		* {
body.light-mode header {
    background: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

body.light-mode nav a {
    color: #374151;
}

body.light-mode .hero p,
body.light-mode .about-text,
body.light-mode .project-text,
body.light-mode footer p,
body.light-mode .arch-card p {
    color: #4b5563;
}

body.light-mode .hero-card,
body.light-mode .feature,
body.light-mode .skill-card,
body.light-mode .project-card,
body.light-mode .arch-card {
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(0,0,0,0.08);
    color: #111827;
}

body.light-mode .badge {
    background: rgba(0,255,255,0.08);
}

body.light-mode .bg-glow {
    background: rgba(0,255,255,0.08);
}

body.light-mode .bg-glow2 {
    background: rgba(140,82,255,0.08);
}

        .bg-glow {
            position: fixed;
            width: 700px;
            height: 700px;
            border-radius: 50%;
            background: rgba(0,255,255,0.12);
            filter: blur(120px);
            top: -200px;
            right: -150px;
            z-index: -1;
        }

        .bg-glow2 {
            position: fixed;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: rgba(140,82,255,0.12);
            filter: blur(120px);
            bottom: -200px;
            left: -100px;
            z-index: -1;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 8%;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255,255,255,0.08);
            position: sticky;
            top: 0;
            background: rgba(5,8,22,0.6);
            z-index: 999;
        }

        .logo h1 {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 2px;
        }

        .logo span {
            color: #00ffff;
        }

        nav {
            display: flex;
            gap: 30px;
        }

        nav a {
            color: #cfd3ff;
            transition: 0.3s;
        }

        nav a:hover {
            color: #00ffff;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 80px 8%;
            gap: 50px;
        }

        .hero-text {
            flex: 1;
        }

        .badge {
            display: inline-block;
            padding: 10px 18px;
            border-radius: 50px;
            background: rgba(0,255,255,0.08);
            border: 1px solid rgba(0,255,255,0.2);
            color: #00ffff;
            margin-bottom: 25px;
        }

        .hero h2 {
            font-size: 72px;
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 25px;
        }

        .gradient {
            background: linear-gradient(to right, #00ffff, #8c52ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            color: #b7bddf;
            line-height: 1.8;
            font-size: 18px;
            max-width: 700px;
        }

        .btn-group {
            margin-top: 40px;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 28px;
            border-radius: 16px;
            font-weight: 600;
            transition: 0.3s;
            display: inline-block;
        }

        .btn-primary {
            background: linear-gradient(to right, #00ffff, #0066ff);
            color: #000;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,255,255,0.25);
        }

        .btn-outline {
            border: 1px solid rgba(255,255,255,0.2);
        }

        .btn-outline:hover {
            background: rgba(255,255,255,0.08);
        }

        .hero-card {
            width: 420px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
            backdrop-filter: blur(15px);
            border-radius: 30px;
            padding: 35px;
            position: relative;
            overflow: hidden;
        }

        .hero-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 30px;
            padding: 1px;
            background: linear-gradient(to right, rgba(0,255,255,0.3), rgba(140,82,255,0.3));
            -webkit-mask:
                linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }

        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .ai-box {
            width: 65px;
            height: 65px;
            border-radius: 18px;
            background: linear-gradient(to bottom right, #00ffff, #8c52ff);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 800;
            color: #000;
        }

        .feature {
            padding: 18px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 18px;
            margin-bottom: 16px;
            transition: 0.3s;
        }

        .feature:hover {
            background: rgba(255,255,255,0.08);
            transform: translateY(-3px);
        }

        section {
            padding: 100px 8%;
        }

        .section-title {
            margin-bottom: 60px;
        }

        .section-title span {
            color: #00ffff;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-size: 14px;
        }

        .section-title h3 {
            font-size: 48px;
            margin-top: 15px;
        }

.skills-grid,
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .skill-card,
        .project-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 28px;
            padding: 35px;
            transition: 0.3s;
        }

        .skill-card:hover,
        .project-card:hover {
            transform: translateY(-5px);
            border-color: rgba(0,255,255,0.35);
        }

        .skill-card i,
        .project-card i {
            font-size: 40px;
            margin-bottom: 25px;
            color: #00ffff;
        }

		
		.about-text {
    color: #c9d1ff;
    line-height: 2;
    max-width: 1000px;
    font-size: 18px;
}

.project-text {
    margin-top: 15px;
    color: #bfc5e0;
    line-height: 1.8;
}

.footer-title {
    font-size: 32px;
    margin-bottom: 15px;
}
		
		.architecture-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.arch-card {
    width: 220px;
    min-height: 220px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 30px;
    padding: 30px 20px;
    text-align: center;
    backdrop-filter: blur(15px);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.arch-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,255,255,0.12),
        rgba(140,82,255,0.12)
    );
    opacity: 0;
    transition: 0.4s;
}

.arch-card:hover::before {
    opacity: 1;
}

.arch-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: rgba(0,255,255,0.4);
    box-shadow: 0 20px 40px rgba(0,255,255,0.15);
}

        .quote {
            text-align: center;
            max-width: 1000px;
            margin: auto;
        }

        .quote h2 {
            font-size: 56px;
            line-height: 1.4;
            font-weight: 800;
        }

        footer {
            padding: 60px 8%;
            border-top: 1px solid rgba(255,255,255,0.08);
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        footer p {
            color: #9ca3af;
        }

        @media(max-width: 992px) {
            .hero {
                flex-direction: column;
            }

            .hero h2 {
                font-size: 52px;
            }

            .hero-card {
                width: 100%;
            }

            nav {
                display: none;
            }
        }

        @media(max-width: 600px) {
            .hero h2 {
                font-size: 40px;
            }

            .section-title h3 {
                font-size: 36px;
            }

            .quote h2 {
                font-size: 32px;
            }
        }