/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066cc;
    --secondary-color: #4a90e2;
    --accent-color: #00d4ff;
    --silver-color: #c0c0c0;
    --light-silver: #e8e8e8;
    --dark-silver: #808080;
    --text-primary: #333333;
    --text-secondary: #666666;
    --background-light: #ffffff;
    --background-dark: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    --gradient-glow: linear-gradient(45deg, #00d4ff, #0066cc, #4a90e2);
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(0, 102, 204, 0.3);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --base-font-size: 16px;
    --line-height: 1.6;
    --success-color: #28a745;
    --success-hover: #218838;
    --warning-color: #ffc107;
    --warning-hover: #e0a800;
    --error-color: #dc3545;
    --error-hover: #c82333;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --background-light: #1a1a1a;
    --background-dark: #2d2d2d;
    --light-silver: #404040;
    --dark-silver: #606060;
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.4);
    --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Dark Mode Specific Styles */
[data-theme="dark"] .navbar {
    background: rgba(26, 26, 26, 0.95);
    border-bottom: 1px solid rgba(64, 64, 64, 0.2);
    backdrop-filter: blur(20px);
}

[data-theme="dark"] .navbar .container {
    background: transparent;
}

[data-theme="dark"] .navbar .nav-brand,
[data-theme="dark"] .navbar .nav-menu,
[data-theme="dark"] .navbar .nav-toggle {
    background: transparent;
}

[data-theme="dark"] .nav-container {
    background: transparent;
}

[data-theme="dark"] .nav-controls {
    background: transparent;
}

[data-theme="dark"] .nav-link {
    color: #ffffff;
}

[data-theme="dark"] .nav-link:hover {
    color: var(--accent-color);
}

[data-theme="dark"] .bar {
    background: #ffffff;
}

[data-theme="dark"] .hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

[data-theme="dark"] .about-section,
[data-theme="dark"] .skills-section,
[data-theme="dark"] .experience-section,
[data-theme="dark"] .projects-section,
[data-theme="dark"] .blog-section,
[data-theme="dark"] .resume-section,
[data-theme="dark"] .contact-section {
    background: transparent;
}

[data-theme="dark"] .project-card,
[data-theme="dark"] .blog-card,
[data-theme="dark"] .skill-item,
[data-theme="dark"] .timeline-content,
[data-theme="dark"] .contact-form,
[data-theme="dark"] .highlight-item {
    background: var(--background-dark);
    border: 1px solid var(--light-silver);
}

[data-theme="dark"] .tech-item {
    background: var(--background-dark);
    border: 1px solid var(--light-silver);
}

[data-theme="dark"] .stat-item {
    background: var(--background-dark);
    border: 1px solid var(--light-silver);
}

[data-theme="dark"] .dashboard-content,
[data-theme="dark"] .admin-login-content {
    background: var(--background-dark);
    color: var(--text-primary);
}

[data-theme="dark"] .dashboard-section {
    background: var(--background-light);
    border: 1px solid var(--light-silver);
}

[data-theme="dark"] .dashboard-section input,
[data-theme="dark"] .dashboard-section textarea,
[data-theme="dark"] .admin-login-form input {
    background: var(--background-light);
    color: var(--text-primary);
    border: 1px solid var(--light-silver);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
    background: var(--background-light);
    color: var(--text-primary);
    border: 1px solid var(--light-silver);
}

[data-theme="dark"] .project-skill {
    background: var(--light-silver);
    color: var(--text-primary);
}

[data-theme="dark"] .skill-bar {
    background: var(--light-silver);
}

[data-theme="dark"] .nav-menu {
    background-color: var(--background-dark);
}

[data-theme="dark"] .nav-menu.active {
    background-color: var(--background-dark);
}

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

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

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    margin-bottom: 30px;
}

.logo-animation {
    display: inline-block;
    animation: pulse 2s infinite;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 20px auto;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: loading 2s ease-in-out infinite;
}

.loading-text {
    font-size: 14px;
    color: var(--accent-color);
    letter-spacing: 2px;
    animation: fadeInOut 2s infinite;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(192, 192, 192, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

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

.nav-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.theme-toggle:hover {
    background: rgba(0, 102, 204, 0.1);
    transform: scale(1.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

/* Admin Login Modal */
.admin-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1003;
    backdrop-filter: blur(10px);
}

.admin-login-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--light-silver);
}

.admin-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-silver);
}

.admin-login-header h2 {
    color: var(--primary-color);
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-login-form .form-group {
    margin-bottom: 20px;
}

.admin-login-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
}

.admin-login-form input {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light-silver);
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
}

.admin-login-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.security-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
    padding: 10px;
    background: rgba(255, 170, 0, 0.1);
    border-radius: 8px;
    border-left: 3px solid #ffaa00;
}

.security-notice i {
    color: #ffaa00;
}

.security-notice small {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Admin Access Button */

/* Admin Access Button */
.admin-access {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1001;
}

.admin-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    opacity: 0.7;
}

.admin-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-heavy);
    opacity: 1;
}

/* Admin Access Button */
.admin-access {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1001;
}

.admin-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    opacity: 0.7;
}

.admin-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-heavy);
    opacity: 1;
}

/* Dashboard Toggle */
.dashboard-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1001;
}

.dashboard-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.dashboard-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-heavy);
}

/* Dashboard Modal */
.dashboard-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1002;
    backdrop-filter: blur(5px);
}

.dashboard-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    overflow-y: auto;
    box-shadow: var(--shadow-heavy);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.admin-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-primary);
    display: none;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-silver);
}

.dashboard-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.dashboard-actions .btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dashboard-actions .btn-success {
    background: var(--success-color);
    color: white;
}

.dashboard-actions .btn-success:hover {
    background: var(--success-hover);
    transform: translateY(-1px);
}

.dashboard-actions .btn-warning {
    background: var(--warning-color);
    color: white;
}

.dashboard-actions .btn-warning:hover {
    background: var(--warning-hover);
    transform: translateY(-1px);
}

/* Font size control */
.font-size-control {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.font-size-control label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.font-size-control input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--light-silver);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.font-size-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
}

.font-size-control input[type="range"]::-moz-range-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
}

/* Content tabs */
.content-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--light-silver);
}

.tab-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 6px 6px 0 0;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--primary-color);
    color: white;
}

.tab-btn:hover:not(.active) {
    background: var(--light-silver);
    color: var(--text-primary);
}

/* Existing content list */
.existing-content-list {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid var(--light-silver);
    border-radius: 8px;
    padding: 10px;
}

.content-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin-bottom: 8px;
    border: 1px solid var(--light-silver);
    border-radius: 6px;
    background: var(--background-dark);
}

.content-item:last-child {
    margin-bottom: 0;
}

.content-item-info {
    flex: 1;
}

.content-item-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.content-item-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.content-item-actions {
    display: flex;
    gap: 5px;
}

.content-item-actions button {
    padding: 4px 8px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.content-item-actions .edit-btn {
    background: var(--primary-color);
    color: white;
}

.content-item-actions .delete-btn {
    background: var(--error-color);
    color: white;
}

.content-item-actions button:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Edit Forms Styling */
.edit-form {
    background: var(--background-light);
    border: 1px solid var(--light-silver);
    border-radius: 8px;
    padding: 20px;
    margin-top: 15px;
}

.edit-form .form-group {
    margin-bottom: 15px;
}

.edit-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--text-primary);
}

.edit-form input,
.edit-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--light-silver);
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.edit-form input:focus,
.edit-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.edit-form textarea {
    resize: vertical;
    min-height: 80px;
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: flex-end;
}

.form-actions .btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-actions .btn-success {
    background: var(--success-color);
    color: white;
}

.form-actions .btn-success:hover {
    background: var(--success-hover);
    transform: translateY(-1px);
}

.form-actions .btn-secondary {
    background: var(--dark-silver);
    color: white;
}

.form-actions .btn-secondary:hover {
    background: var(--text-secondary);
    transform: translateY(-1px);
}

/* Skill level range styling */
#editSkillLevel {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--light-silver);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin-bottom: 5px;
}

#editSkillLevel::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
}

#editSkillLevel::-moz-range-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
}

#editSkillLevelValue {
    font-weight: 600;
    color: var(--primary-color);
    margin-left: 10px;
}

.dashboard-header h2 {
    color: var(--primary-color);
    font-size: 24px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition);
}

.close-btn:hover {
    color: var(--primary-color);
}

.dashboard-sections {
    display: grid;
    gap: 30px;
}

.dashboard-section {
    padding: 20px;
    border: 1px solid var(--light-silver);
    border-radius: var(--border-radius);
    background: var(--background-dark);
}

.dashboard-section h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 18px;
}

.dashboard-section input,
.dashboard-section textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid var(--light-silver);
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

.dashboard-section input:focus,
.dashboard-section textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.dashboard-section textarea {
    min-height: 100px;
    resize: vertical;
}

.update-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.update-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.button-group {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.button-group .update-btn,
.button-group .remove-btn {
    flex: 1;
    margin-top: 0;
}

.remove-btn {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.remove-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.3);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: var(--gradient-accent);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    border-radius: 30px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    top: 10%;
    right: 30%;
    animation-delay: 1s;
}

.shape-5 {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    bottom: 40%;
    right: 5%;
    animation-delay: 3s;
}

/* Particles */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 6s; }
.particle:nth-child(8) { left: 80%; animation-delay: 7s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* 3D Animations */
@keyframes float3D {
    0%, 100% { 
        transform: perspective(1000px) translateY(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg); 
    }
    25% { 
        transform: perspective(1000px) translateY(-20px) rotateX(10deg) rotateY(5deg) rotateZ(5deg); 
    }
    50% { 
        transform: perspective(1000px) translateY(-10px) rotateX(-5deg) rotateY(10deg) rotateZ(-5deg); 
    }
    75% { 
        transform: perspective(1000px) translateY(-15px) rotateX(5deg) rotateY(-5deg) rotateZ(10deg); 
    }
}

/* Enhanced 3D Profile Card */
.profile-card {
    animation: profileFloat 4s ease-in-out infinite;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: perspective(1000px) rotateX(10deg) rotateY(10deg) translateZ(30px);
}

/* 3D Tech Stack */
.tech-stack {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    min-width: 80px;
    transform-style: preserve-3d;
}

.tech-item:hover {
    transform: perspective(1000px) rotateX(15deg) rotateY(15deg) translateZ(20px);
    box-shadow: var(--shadow-medium);
}

/* 3D Project Cards */
.project-card {
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg) translateZ(20px);
    box-shadow: var(--shadow-heavy);
}

/* 3D Buttons */
.btn {
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: perspective(1000px) rotateX(10deg) translateZ(10px);
}

/* 3D Skill Tags */
.skill-tag {
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    transform: perspective(1000px) rotateX(10deg) rotateY(10deg) translateZ(10px);
    box-shadow: var(--shadow-light);
}

/* 3D Blog Cards */
.blog-card {
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg) translateZ(15px);
    box-shadow: var(--shadow-medium);
}

/* 3D Social Links */
.social-link {
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: perspective(1000px) rotateX(10deg) rotateY(10deg) translateZ(10px);
    box-shadow: var(--shadow-medium);
}

/* 3D Geometric Shapes */
.shape {
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

/* 3D Scroll Indicator */
.scroll-indicator {
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: perspective(1000px) rotateX(10deg) translateZ(10px);
}

/* 3D Dashboard Elements */
.dashboard-section {
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.dashboard-section:hover {
    transform: perspective(1000px) rotateX(5deg) translateZ(10px);
    box-shadow: var(--shadow-medium);
}

/* 3D Form Elements */
.form-group input,
.form-group textarea {
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    transform: perspective(1000px) translateZ(5px);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1), 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    margin-top: 70px; /* Add top margin to avoid navbar overlap */
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 102, 204, 0.3)); }
    50% { filter: drop-shadow(0 0 30px rgba(0, 102, 204, 0.6)); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-weight: 400;
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.profile-card {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-heavy);
    position: relative;
    overflow: hidden;
    animation: profileFloat 4s ease-in-out infinite;
}

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

.profile-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

.profile-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-glow);
    filter: blur(20px);
    opacity: 0.3;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.profile-avatar {
    font-size: 120px;
    color: white;
    z-index: 2;
}

.tech-stack {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    min-width: 80px;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.tech-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.tech-item span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    animation: scrollBounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--primary-color);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
}

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

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: transparent;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.about-stats {
    display: grid;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--background-dark);
    border-radius: var(--border-radius);
    border: 1px solid var(--light-silver);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Skills Section */
.skills-section {
    padding: 100px 0;
    background: transparent;
}

.skills-content {
    display: grid;
    gap: 60px;
}

.skills-category h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

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

.skill-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--background-light);
    border-radius: var(--border-radius);
    border: 1px solid var(--light-silver);
    transition: var(--transition);
    transform-style: preserve-3d;
}

.skill-item:hover {
    transform: perspective(1000px) rotateX(5deg) translateZ(10px);
    box-shadow: var(--shadow-medium);
}

.skill-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    width: 60px;
    text-align: center;
}

.skill-info {
    flex: 1;
}

.skill-info h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.skill-level {
    display: flex;
    align-items: center;
    gap: 15px;
}

.skill-bar {
    flex: 1;
    height: 8px;
    background: var(--light-silver);
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 1s ease;
    animation: skillProgress 2s ease-out;
}

@keyframes skillProgress {
    from { width: 0%; }
    to { width: var(--progress-width); }
}

.skill-level span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    min-width: 40px;
}

/* Experience Section */
.experience-section {
    padding: 100px 0;
    background: transparent;
}

.experience-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: transparent;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 20px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: 4px solid var(--background-light);
    box-shadow: var(--shadow-light);
}

.timeline-content {
    background: var(--background-dark);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--light-silver);
    transition: var(--transition);
    transform-style: preserve-3d;
}

.timeline-content:hover {
    transform: perspective(1000px) rotateY(5deg) translateZ(10px);
    box-shadow: var(--shadow-medium);
}

.experience-header {
    margin-bottom: 20px;
}

.experience-header h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.company {
    display: block;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 5px;
}

.duration {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.experience-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.experience-achievements h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.experience-achievements ul {
    list-style: none;
    padding: 0;
}

.experience-achievements li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.experience-achievements li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Projects Section */
.projects-section {
    padding: 100px 0;
    background: transparent;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--light-silver);
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.project-image {
    width: 100%;
    height: 200px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-image:hover img {
    transform: scale(1.05);
}

.project-image::before {
    content: '📱';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--text-secondary);
    z-index: 1;
    opacity: 0.3;
}

.project-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
    z-index: 2;
}

.project-content {
    padding: 25px;
}

.project-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.project-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.project-skill {
    background: var(--light-silver);
    color: var(--text-primary);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.project-link:hover {
    color: var(--secondary-color);
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background: transparent;
}

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

.blog-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--light-silver);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.blog-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-date {
    color: var(--dark-silver);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Resume Section */
.resume-section {
    padding: 100px 0;
    background: transparent;
}

.resume-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.resume-summary h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.resume-summary p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.resume-highlights {
    display: grid;
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid var(--light-silver);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-light);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
}

.highlight-item span {
    font-weight: 500;
    color: var(--text-primary);
}

.resume-download {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--background-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.contact-form {
    background: var(--background-dark);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--light-silver);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--light-silver);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--light-silver);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Lazy Loading */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy.loaded {
    opacity: 1;
}

/* Optimized Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--background-light);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-controls {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-stats {
        justify-content: center;
    }

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

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .skill-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .experience-timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-marker {
        left: 5px;
    }

    .resume-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .profile-card {
        width: 250px;
        height: 250px;
    }

    .profile-avatar {
        font-size: 100px;
    }

    .tech-stack {
        gap: 15px;
    }

    .tech-item {
        min-width: 70px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .dashboard-content {
        width: 95%;
        padding: 20px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}
