* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    body {
    font-family: 'Poppins', sans-serif;
    background: #050816;
    color: white;
    overflow-x: hidden;
    }
    html {
    scroll-behavior: smooth;
    }
    .background-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    background: #6c63ff;
    filter: blur(180px);
    top: -100px;
    right: -100px;
    opacity: 0.35;
    z-index: -1;
    }
    .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    position: sticky;
    top: 0;
    backdrop-filter: blur(10px);
    background: rgba(0,0,0,0.2);
    z-index: 1000;
    }
    .logo {
    font-size: 2rem;
    }
    .logo span {
    color: #6c63ff;
    }
    6
    nav {
    display: flex;
    gap: 30px;
    }
    nav a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
    }
    nav a:hover {
    color: #6c63ff;
    }
    .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    gap: 50px;
    }
    .hero-left {
    flex: 1;
    }
    .tag {
    color: #6c63ff;
    margin-bottom: 20px;
    letter-spacing: 2px;
    }
    .hero-left h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    }
    .hero-description {
    color: #b8b8b8;
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 35px;
    }
    .hero-buttons {
    display: flex;
    gap: 20px;
    7
    }
    .primary-btn,
    .secondary-btn {
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
    }
    .primary-btn {
    background: #6c63ff;
    color: white;
    }
    .primary-btn:hover {
    transform: translateY(-5px);
    }
    .secondary-btn {
    border: 1px solid #6c63ff;
    color: white;
    }
    .hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    }
    .terminal-card {
    width: 100%;
    max-width: 500px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    }
    .terminal-top {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    }
    .terminal-top span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    8
    background: white;
    }
    .terminal-body {
    padding: 30px;
    font-family: monospace;
    line-height: 2;
    color: #00ff95;
    }
    .section {
    padding: 100px 8%;
    }
    .section-title {
    font-size: 3rem;
    margin-bottom: 50px;
    text-align: center;
    }
    .skills-grid,
    .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    }
    .skill-card,
    .project-card,
    .contact-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(12px);
    transition: 0.3s;
    }
    .skill-card:hover,
    .project-card:hover {
    transform: translateY(-10px);
    }
    .skill-card h3,
    .project-card h3 {
    margin-bottom: 20px;
    color: #6c63ff;
    }
    .skill-card ul {
    list-style: none;
    9
    }
    .skill-card li {
    margin-bottom: 12px;
    color: #d5d5d5;
    }
    .featured {
    grid-column: span 2;
    }
    .project-label {
    color: #6c63ff;
    margin-bottom: 15px;
    }
    .project-content p {
    color: #c4c4c4;
    line-height: 1.8;
    margin-bottom: 25px;
    }
    .tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    }
    .tech-stack span {
    padding: 8px 15px;
    background: rgba(108,99,255,0.15);
    border-radius: 50px;
    font-size: 0.9rem;
    }
    .project-buttons {
    margin-top: 25px;
    display: flex;
    gap: 20px;
    }
    .project-buttons a,
    .contact-links a {
    text-decoration: none;
    color: white;
    padding: 12px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    transition: 0.3s;
    }
    10
    .project-buttons a:hover,
    .contact-links a:hover {
    background: #6c63ff;
    }
    .timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: auto;
    }
    .timeline-item {
    padding: 25px;
    border-left: 4px solid #6c63ff;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    }
    .timeline-item span {
    color: #6c63ff;
    font-weight: bold;
    }
    .contact-card {
    max-width: 700px;
    margin: auto;
    text-align: center;
    }
    .contact-card p {
    color: #d4d4d4;
    margin-bottom: 30px;
    line-height: 1.8;
    }
    .contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    }
    footer {
    padding: 30px;
    text-align: center;
    color: #888;
    }
    @media(max-width: 900px) {
    11
    .hero {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    }
    .hero-left h1 {
    font-size: 3rem;
    }
    .hero-buttons {
    justify-content: center;
    }
    nav {
    display: none;
    }
    .featured {
    grid-column: span 1;
    }
    }
    