:root {
    --primary: #0a0e14;
    --secondary: #121820;
    --accent: #3a86ff;
    --accent-alt: #2ea043;
    --yellow: #FFD43B;
    --yellow-light: #FFE873;
    --text: #c9d1d9;
    --text-light: #e6e9ec;
    --highlight: #ff6b6b;
    --card-bg: #161b22;
    --terminal-bg: rgba(10, 14, 20, 0.85);
    --section-spacing: 80px;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: radial-gradient(circle at top left, #0a0e14, #05080d);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(10, 14, 20, 0.92);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(58, 134, 255, 0.15);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Courier New', monospace;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo .bracket {
    color: var(--yellow);
}

.logo .name {
    color: var(--text-light);
}

.logo .slash {
    color: var(--yellow);
}

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

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    font-size: 1.05rem;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
    position: relative;
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: var(--yellow);
    border-radius: 2px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.profile-container {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yellow), #FFA500);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto;
    box-shadow: 0 0 50px rgba(255, 212, 59, 0.3);
}

.profile-pic {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: linear-gradient(45deg, #1a2029, #0a0e14);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 5px solid var(--card-bg);
    position: relative;
}

.profile-pic::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 50%, rgba(255, 212, 59, 0.1));
}

.profile-pic .avatar {
    width: 100%;
    height: 100%;
    background: #2c3e50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 3.5rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    position: relative;
    overflow: hidden;
    background-image: url('assets/images/me.jpg');
    background-size: cover;
    background-position: center;
}

section {
    padding: var(--section-spacing) 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    color: var(--text-light);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--yellow);
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--yellow);
}

.about-details {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 212, 59, 0.1);
}

.detail-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-item strong {
    display: block;
    color: var(--yellow);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.skill-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 212, 59, 0.1);
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--yellow);
}

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 212, 59, 0.3);
}

.skill-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--yellow);
    display: flex;
    align-items: center;
}

.skill-card h3 i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: var(--yellow);
}

.skill-card ul {
    list-style: none;
}

.skill-card li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.skill-card li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--yellow);
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.cert-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 212, 59, 0.1);
    position: relative;
    overflow: hidden;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--yellow);
}

.cert-card:hover {
    transform: translateY(-5px);
}

.cert-icon {
    font-size: 3rem;
    color: var(--yellow);
    margin-bottom: 20px;
}

.status {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 15px;
    font-weight: 600;
}

.in-progress {
    background: rgba(255, 212, 59, 0.15);
    color: var(--yellow);
    border: 1px solid rgba(255, 212, 59, 0.3);
}

.next {
    background: rgba(88, 166, 255, 0.15);
    color: var(--accent);
    border: 1px solid rgba(88, 166, 255, 0.3);
}

.learning-section {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 212, 59, 0.1);
}

.learning-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.learning-column h3 {
    color: var(--yellow);
    margin-bottom: 20px;
    font-size: 1.4rem;
    position: relative;
    padding-left: 20px;
}

.learning-column h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--yellow);
    border-radius: 50%;
}

.learning-column ul {
    list-style: none;
}

.learning-column li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.learning-column li::before {
    content: '⟫';
    position: absolute;
    left: 0;
    color: var(--yellow);
}

.career-section {
    background: rgba(10, 14, 20, 0.4);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-top: 40px;
    text-align: center;
    border: 1px solid rgba(255, 212, 59, 0.1);
}

.career-section h3 {
    color: var(--yellow);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.career-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

footer {
    background: var(--primary);
    padding: 60px 0 30px;
    text-align: center;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 212, 59, 0.1);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow), #FFA500);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    color: var(--text);
    font-size: 1.2rem;
    transition: all 0.3s;
    text-decoration: none;
    border: 1px solid rgba(255, 212, 59, 0.1);
}

.social-links a:hover {
    background: var(--yellow);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 212, 59, 0.3);
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .learning-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
}

.terminal {
    background: var(--terminal-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    font-family: 'Courier New', monospace;
    margin: 25px 0;
    border: 1px solid rgba(255, 212, 59, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.terminal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: rgba(18, 24, 32, 0.6);
}

.terminal-header {
    position: absolute;
    top: 10px;
    left: 15px;
    display: flex;
    gap: 8px;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red { background: #ff5f56; }
.yellow { background: var(--yellow); }
.green { background: #27c93f; }

.terminal-content {
    margin-top: 45px;
    color: var(--yellow-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.terminal-content .command {
    color: #79c0ff;
}

.hacker-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 212, 59, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(46, 160, 67, 0.05) 0%, transparent 20%);
    z-index: -1;
}

.matrix-code {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.03;
    pointer-events: none;
}

.glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, rgba(255, 212, 59, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}
/* Add smooth scrolling behavior to the entire page */
html {
    scroll-behavior: smooth;
}

/* Highlight active section in navigation */
.nav-active {
    color: var(--yellow) !important;
}

.nav-active::after {
    width: 100% !important;
}

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--yellow);
    z-index: 1001;
    transition: width 0.2s ease;
}