:root {
    --bg-color: #0a192f;
    --card-bg: rgba(16, 33, 65, 0.7);
    --accent-blue: #64ffda;
    --border-glow: rgba(255, 255, 255, 0.4);
    --text-color: #e6f1ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Loading Animation */
#loader {
    position: fixed;
    height: 100vh;
    width: 100%;
    background: var(--bg-color);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.dog-spinner {
    font-size: 50px;
    color: var(--accent-blue);
    animation: bounce 0.6s infinite alternate;
}

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-20px); }
}

a {
    text-decoration : none;
    color :rgb(26, 218, 186)
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 10%;
    background: rgba(10, 25, 47, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 100;
}

.logo {
    font-weight: 800;
    letter-spacing: 2px;
}

.logo span { color: var(--accent-blue); }

nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 30px; }
nav ul li a { 
    text-decoration: none; 
    color: var(--text-color); 
    font-size: 0.9rem;
    transition: 0.3s;
}

nav ul li a:hover { color: var(--accent-blue); }

/* Hero Section */
header {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.glow-text {
    font-size: 4rem;
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.stat-box {
    border: 1px solid var(--border-glow);
    padding: 10px 20px;
    border-radius: 8px;
    background: var(--card-bg);
}

/* Sections */
section {
    padding: 100px 10%;
}

.section-title {
    margin-bottom: 50px;
    font-size: 2rem;
    border-left: 4px solid var(--accent-blue);
    padding-left: 15px;
}

/* Resume Cards */
.resume-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.resume-card {
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resume-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    border-color: white;
}

.skill-tags span {
    display: inline-block;
    background: rgba(100, 255, 218, 0.1);
    color: var(--accent-blue);
    padding: 5px 12px;
    border-radius: 20px;
    margin: 5px;
    font-size: 0.8rem;
}

/* Empty State Updates */
.empty-state {
    text-align: center;
    padding: 50px;
    border: 2px dashed var(--border-glow);
    border-radius: 20px;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.5;
}