@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;500;600;700&display=swap');
        
* {
    font-family: 'Fira Code', 'Courier New', monospace;
}

body {
    margin: 0;
    overflow-x: hidden;
}

/* Hero Section with Background Image */
.hero {
    height: 100vh;
    width: 100%;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
}

/* Overlay for smooth transition */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
    pointer-events: none;
}

/* Terminal Section with same background + blur */
.terminal-section {
    min-height: 100vh;
    background-image: url('terminal-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 4rem 2rem;
}

/* Blur overlay for terminal section */
.terminal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    backdrop-filter: blur(20px);
    z-index: 0;
}

/* Glass Terminal Card */
.terminal-card {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    margin: 0 auto;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.terminal-header {
    background: rgba(20, 20, 20, 0.9);
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 1.5rem 1.5rem 0 0;
    display: flex;
    gap: 0.75rem;
}

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

.terminal-dot-red { background: #ff5f56; }
.terminal-dot-yellow { background: #ffbd2e; }
.terminal-dot-green { background: #27c93f; }

.terminal-body {
    padding: 2rem;
}

.prompt {
    color: #0f0;
    font-weight: 500;
}

.command {
    color: #fff;
}

.output {
    color: #aaa;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tech-category {
    color: #0f0;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    border-left: 3px solid #0f0;
    padding-left: 0.75rem;
}

.tech-items {
    color: #ddd;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-badge {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.tech-badge:hover {
    background: rgba(0, 255, 0, 0.2);
    border-color: #0f0;
    transform: translateY(-2px);
}

/* Typing animation */
.typing {
    overflow: hidden;
    border-right: 2px solid #0f0;
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #0f0; }
}

/* Modern Navigation Menu */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #0f0;
    font-weight: bold;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #0f0;
    background: rgba(0, 255, 0, 0.1);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #0f0;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.resume-link {
    background: rgba(0, 255, 0, 0.15);
    border: 1px solid rgba(0, 255, 0, 0.4);
}

.resume-link:hover {
    background: rgba(0, 255, 0, 0.3);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Responsive */
@media (max-width: 768px) {
    .terminal-body {
        padding: 1rem;
    }
    .tech-items {
        gap: 0.5rem;
    }
    .tech-badge {
        font-size: 0.7rem;
    }
    .nav-links {
        gap: 1rem;
    }
    .navbar {
        padding: 0.75rem 1rem;
    }
    .logo {
        font-size: 1rem;
    }
}



/* Footer Styles */
.footer {
background: rgba(0, 0, 0, 0.85);
backdrop-filter: blur(12px);
border-top: 1px solid rgba(0, 255, 0, 0.2);
padding: 3rem 2rem 1rem;
margin-top: 0;
position: relative;
z-index: 10;
}

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

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}

.footer-section {
padding: 0 1rem;
}

.footer-title {
color: #0f0;
font-size: 1rem;
font-weight: 600;
margin-bottom: 1rem;
letter-spacing: 1px;
border-left: 3px solid #0f0;
padding-left: 0.75rem;
}

.social-links {
display: flex;
flex-direction: column;
gap: 0.75rem;
}

.social-link {
color: #ccc;
text-decoration: none;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-size: 0.9rem;
}

.social-link:hover {
color: #0f0;
transform: translateX(5px);
}

.contact-info p {
color: #ccc;
margin: 0.5rem 0;
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.9rem;
}

.contact-info i {
color: #0f0;
width: 20px;
}

.terminal-quote {
background: rgba(0, 0, 0, 0.5);
padding: 0.75rem;
border-radius: 8px;
border-left: 3px solid #0f0;
}

.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
font-size: 0.85rem;
}

.copyright-text {
color: #666;
margin-left: 0.5rem;
}

@media (max-width: 768px) {
.footer {
padding: 2rem 1rem 1rem;
}

.footer-content {
gap: 1.5rem;
}

.footer-section {
padding: 0;
}

.social-link, .contact-info p {
font-size: 0.8rem;
}
}