:root {
    --bg-dark: #080a0f;
    --primary-cyan: #00f2ff;
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

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

/* Navbar Style */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(8, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--primary-cyan); }

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10%;
    background: radial-gradient(circle at top right, rgba(0, 242, 255, 0.05), transparent);
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid var(--primary-cyan);
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.3);
}

.gradient-text {
    font-size: 3.5rem;
    background: linear-gradient(to right, #fff, var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.hero p {
    max-width: 600px;
    color: var(--text-dim);
    margin-bottom: 30px;
}

/* Buttons */
.btn-primary {
    padding: 12px 35px;
    background: var(--primary-cyan);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    margin-right: 15px;
    transition: 0.3s;
}

.btn-primary:hover {
    box-shadow: 0 0 20px var(--primary-cyan);
    transform: scale(1.05);
}

/* Project Cards */
.projects { padding: 100px 8%; }

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card-glass {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    transition: 0.4s;
}

.card-glass:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--primary-cyan);
    transform: translateY(-10px);
}

.icon-box {
    color: var(--primary-cyan);
    margin-bottom: 15px;
}

.tags span {
    font-size: 0.8rem;
    background: rgba(0, 242, 255, 0.1);
    color: var(--primary-cyan);
    padding: 4px 12px;
    border-radius: 20px;
    margin-right: 5px;
}
