:root {
    --bg: #0b0e14;
    --card: #151921;
    --cyan: #00d4ff;
    --text: #ffffff;
    --gray: #94a3b8;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    margin: 0;
    scroll-behavior: smooth;
}

.cyan-glow {
    color: var(--cyan);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 8%;
    background: rgba(11, 14, 20, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 84%;
    top: 0;
    z-index: 1000;
}

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

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: lowercase;
    transition: 0.3s;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #1a2333 0%, #0b0e14 100%);
}

.profile-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 3px solid var(--cyan);
    margin: 0 auto 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

/* Skills Bar */
.skills {
    padding: 100px 15%;
}

.skill-item {
    margin-bottom: 25px;
    background: var(--card);
    padding: 15px;
    border-radius: 8px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.bar {
    background: #2d3748;
    height: 10px;
    border-radius: 5px;
}

.progress {
    background: var(--cyan);
    height: 100%;
    border-radius: 5px;
    box-shadow: 0 0 10px var(--cyan);
}