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

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #06b6d4;
    --text-primary: #111827;
    --text-secondary: #374151;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-3: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

[data-theme="dark"] {
    --text-primary: #ffffff;
    --text-secondary: #e5e7eb;
    --bg-primary: #111827;
    --bg-secondary: #1f2937;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.4);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5), 0 4px 6px -4px rgb(0 0 0 / 0.5);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.6), 0 8px 10px -6px rgb(0 0 0 / 0.6);
}

[data-theme="dark"] .footer {
    background: #000000;
}

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-2);
    width: 0%;
    z-index: 10001;
    transition: width 0.1s ease;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .glass-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .glass-card h3 {
    color: #ffffff;
}

/* Gradient Text Animation */
.gradient-text {
    background: linear-gradient(45deg, #6366f1, #8b5cf6, #06b6d4, #6366f1);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Project Filters */
.project-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.filter-btn:hover {
    background: var(--gradient-2);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.filter-btn.active {
    background: var(--gradient-2);
    color: white;
    border-color: transparent;
}

.project-category {
    transition: all 0.5s ease;
}

.project-category.hidden {
    display: none;
}

/* Skill Progress Bars */
.skill-item-wrapper {
    width: 100%;
    margin-bottom: 1.5rem;
}

.skill-item-wrapper .skill-item {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.skill-progress {
    width: 100%;
    height: 8px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress-bar {
    height: 100%;
    background: var(--gradient-2);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s ease;
    position: relative;
}

.skill-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Screen reader only class */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

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

.loading-logo {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.2rem;
}

.loading-logo .logo-text {
    color: white;
}

.loading-logo .logo-accent {
    color: #6366f1;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 1rem;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 2px;
    animation: loadingProgress 2s ease-in-out;
}

.loading-text {
    font-size: 1rem;
    opacity: 0.8;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Skeleton Loading */
.skeleton-container {
    position: relative;
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 1rem;
}

[data-theme="dark"] .skeleton {
    background: linear-gradient(90deg, #374151 25%, #4b5563 50%, #374151 75%);
    background-size: 200% 100%;
}

.skeleton-text {
    height: 1rem;
    width: 100%;
}

.skeleton-text.short {
    width: 60%;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.about-real-content {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn:focus,
.nav-menu a:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border: 1px solid rgba(0, 255, 255, 0.3);
    background: rgba(0, 255, 255, 0.05);
    animation: techFloat 15s infinite linear;
}

.shape-1 {
    width: 100px;
    height: 100px;
    left: 10%;
    top: 20%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 0s;
    border-color: rgba(255, 0, 150, 0.4);
    background: rgba(255, 0, 150, 0.1);
}

.shape-2 {
    width: 80px;
    height: 80px;
    left: 70%;
    top: 10%;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    animation-delay: 3s;
    border-color: rgba(0, 255, 255, 0.4);
    background: rgba(0, 255, 255, 0.1);
}

.shape-3 {
    width: 120px;
    height: 120px;
    left: 20%;
    top: 60%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 6s;
    border-color: rgba(0, 255, 0, 0.4);
    background: rgba(0, 255, 0, 0.1);
}

.shape-4 {
    width: 60px;
    height: 60px;
    left: 80%;
    top: 70%;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 100%, 0% 100%);
    animation-delay: 9s;
    border-color: rgba(255, 255, 0, 0.4);
    background: rgba(255, 255, 0, 0.1);
}

.shape-5 {
    width: 90px;
    height: 90px;
    left: 50%;
    top: 30%;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    animation-delay: 12s;
    border-color: rgba(255, 100, 0, 0.4);
    background: rgba(255, 100, 0, 0.1);
}

/* Tech grid overlay */
.animated-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

/* Matrix-style code rain */
.animated-bg::after {
    content: '01001010 01100001 01110110 01100001 01010011 01100011 01110010 01101001 01110000 01110100';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 120%;
    color: rgba(0, 255, 0, 0.1);
    font-family: 'Courier New', monospace;
    font-size: 12px;
    line-height: 20px;
    animation: codeRain 25s linear infinite;
    white-space: pre-wrap;
    word-spacing: 10px;
}

@keyframes techFloat {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg) scale(1.2);
        opacity: 0;
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes codeRain {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100vh);
    }
}

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

/* Enhanced Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

[data-theme="dark"] .navbar {
    background: rgba(17, 24, 39, 0.95);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

[data-theme="dark"] .navbar.scrolled {
    background: rgba(17, 24, 39, 0.98);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.theme-toggle:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

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

.logo-accent {
    color: var(--primary-color);
    position: relative;
}

.logo-accent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-2);
    border-radius: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

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

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

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Enhanced Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.greeting {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-name {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.name-part {
    display: inline-block;
    animation: slideInLeft 1s ease both;
}

.name-part:nth-child(2) {
    animation-delay: 0.3s;
    background: linear-gradient(45deg, #fff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-roles {
    height: 60px;
    margin-bottom: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.role {
    position: absolute;
    width: 100%;
    font-size: 1.3rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    line-height: 1.2;
    white-space: nowrap;
    text-align: center;
}

.role.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s both;
}

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.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-2);
    color: white;
    box-shadow: var(--shadow-lg);
}

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

.btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.glow-btn {
    position: relative;
}

.glow-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    background: var(--gradient-2);
    z-index: -1;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-btn:hover::after {
    opacity: 0.7;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.7);
    position: relative;
    border-radius: 2px;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--bg-secondary);
}

[data-theme="dark"] .animated-bg {
    background: linear-gradient(135deg, #000000 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
}

.project-card,
.skill-category,
.education-item,
.contact-item,
.contact-form,
.timeline-content {
    background: var(--bg-primary);
    transition: all 0.3s ease;
}

[data-theme="dark"] .project-card,
[data-theme="dark"] .skill-category,
[data-theme="dark"] .education-item,
[data-theme="dark"] .contact-item,
[data-theme="dark"] .contact-form,
[data-theme="dark"] .timeline-content {
    background: #1f2937;
    color: #e5e7eb;
}

[data-theme="dark"] .project-content h4,
[data-theme="dark"] .project-content p,
[data-theme="dark"] .skill-category h3,
[data-theme="dark"] .education-content h3,
[data-theme="dark"] .education-content h4,
[data-theme="dark"] .education-content p,
[data-theme="dark"] .timeline-content h3,
[data-theme="dark"] .timeline-content h4,
[data-theme="dark"] .timeline-content p,
[data-theme="dark"] .contact-item span {
    color: #e5e7eb;
}

[data-theme="dark"] .glass-card h3 {
    color: #ffffff !important;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #ffffff;
    position: relative;
}

.education-title {
    color: #111827;
}

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

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

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-content p {
    margin-bottom: 2rem;
}

/* Enhanced Timeline */
.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-2);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    margin-bottom: 4rem;
    position: relative;
    display: flex;
    align-items: center;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--gradient-2);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-date {
    flex: 1;
    text-align: center;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.timeline-content {
    flex: 1;
    background: rgb(251, 247, 247);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin: 0 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -30px;
    border-right-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -30px;
    border-left-color: white;
}

.timeline-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.timeline-content p {
    color: var(--text-secondary);
}

/* Enhanced Projects */
.project-category {
    margin-bottom: 5rem;
}

.category-title {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

.project-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-2);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 25px;
    z-index: 1;
}

.project-card:hover::before {
    opacity: 0.05;
}

.project-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

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

.project-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

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



.project-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.project-title-image {
    text-align: center;
    margin-bottom: 1rem;
}

.project-title-image img {
    border-radius: 8px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.project-title-image img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.project-content h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.project-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.tech-tag {
    background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: var(--gradient-2);
    color: white;
    transform: translateY(-2px);
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-link {
    color: var(--primary-color);
    font-size: 1.4rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
}

.project-link:hover {
    color: white;
    background: var(--gradient-2);
    transform: translateY(-3px);
}

/* Enhanced Skills */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.skill-category {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-2);
}

.skill-category:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.skill-category h3 {
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skill-item {
    background: var(--bg-secondary);
    padding: 0.8rem 1.2rem;
    border-radius: 30px;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

/* Python - Snake theme */
.skill-category:nth-child(1) .skill-item:nth-child(1):hover {
    background: linear-gradient(135deg, #3776ab, #ffd43b);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(55, 118, 171, 0.4);
    border-color: #ffd43b;
}

/* Java - Coffee theme */
.skill-category:nth-child(1) .skill-item:nth-child(2):hover {
    background: linear-gradient(135deg, #f89820, #ed8b00);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(248, 152, 32, 0.4);
    border-color: #5382a1;
}

/* SQL - Database theme */
.skill-category:nth-child(1) .skill-item:nth-child(3):hover {
    background: linear-gradient(135deg, #336791, #4479a1);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(51, 103, 145, 0.4);
    border-color: #f29111;
}

/* RAG - Retrieval theme */
.skill-category:nth-child(2) .skill-item:nth-child(1):hover {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
    border-color: #ffffff;
}

/* LLMs - Language model theme */
.skill-category:nth-child(2) .skill-item:nth-child(2):hover {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    border-color: #ffffff;
}

/* Hugging Face - AI community theme */
.skill-category:nth-child(2) .skill-item:nth-child(3):hover {
    background: linear-gradient(135deg, #ffd21e, #ffb800);
    color: #111827;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 210, 30, 0.4);
    border-color: #ffffff;
}

/* Machine Learning - ML theme */
.skill-category:nth-child(2) .skill-item:nth-child(4):hover {
    background: linear-gradient(135deg, #f7931e, #3499cd);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(247, 147, 30, 0.4);
    border-color: #3499cd;
}

/* LangChain - LLM framework theme */
.skill-category:nth-child(3) .skill-item:nth-child(1):hover {
    background: linear-gradient(135deg, #1c3c3c, #2d6a6a);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(29, 78, 78, 0.4);
    border-color: #ffffff;
}

/* Flask - Micro framework theme */
.skill-category:nth-child(3) .skill-item:nth-child(2):hover {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: #ffffff;
}

/* FastAPI - Modern API theme */
.skill-category:nth-child(3) .skill-item:nth-child(3):hover {
    background: linear-gradient(135deg, #009688, #26a69a);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 150, 136, 0.4);
    border-color: #ffffff;
}

/* Streamlit - Data app theme */
.skill-category:nth-child(3) .skill-item:nth-child(4):hover {
    background: linear-gradient(135deg, #ff4b4b, #ff6b6b);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 75, 75, 0.4);
    border-color: #ffffff;
}

/* Scikit-learn - ML theme */
.skill-category:nth-child(3) .skill-item:nth-child(5):hover {
    background: linear-gradient(135deg, #f7931e, #3499cd);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(247, 147, 30, 0.4);
    border-color: #3499cd;
}

/* NumPy - Scientific theme */
.skill-category:nth-child(3) .skill-item:nth-child(6):hover {
    background: linear-gradient(135deg, #013243, #4dabcf);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(1, 50, 67, 0.4);
    border-color: #4dabcf;
}

/* Pandas - Data theme */
.skill-category:nth-child(3) .skill-item:nth-child(7):hover {
    background: linear-gradient(135deg, #150458, #130654);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(21, 4, 88, 0.4);
    border-color: #e70488;
}

/* PostgreSQL - Elephant theme */
.skill-category:nth-child(4) .skill-item:nth-child(1):hover {
    background: linear-gradient(135deg, #336791, #4479a1);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(51, 103, 145, 0.4);
    border-color: #ffffff;
}

/* SQLAlchemy - ORM theme */
.skill-category:nth-child(4) .skill-item:nth-child(2):hover {
    background: linear-gradient(135deg, #d71f00, #e85d3f);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(215, 31, 0, 0.4);
    border-color: #ffffff;
}

/* ChromaDB - Vector DB theme */
.skill-category:nth-child(4) .skill-item:nth-child(3):hover {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
    border-color: #ffffff;
}

/* FAISS - Vector search theme */
.skill-category:nth-child(4) .skill-item:nth-child(4):hover {
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
    border-color: #ffffff;
}

/* MongoDB - NoSQL theme */
.skill-category:nth-child(4) .skill-item:nth-child(5):hover {
    background: linear-gradient(135deg, #47a248, #6fbf73);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(71, 162, 72, 0.4);
    border-color: #ffffff;
}

/* Docker - Container theme */
.skill-category:nth-child(5) .skill-item:nth-child(1):hover {
    background: linear-gradient(135deg, #2496ed, #4aa8f0);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(36, 150, 237, 0.4);
    border-color: #ffffff;
}

/* GitHub - Version control theme */
.skill-category:nth-child(5) .skill-item:nth-child(2):hover {
    background: linear-gradient(135deg, #333333, #555555);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(51, 51, 51, 0.4);
    border-color: #ffffff;
}

/* Power BI - BI theme */
.skill-category:nth-child(5) .skill-item:nth-child(3):hover {
    background: linear-gradient(135deg, #f2c811, #f5d63d);
    color: #111827;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(242, 200, 17, 0.4);
    border-color: #ffffff;
}

/* Apache Superset - BI theme */
.skill-category:nth-child(5) .skill-item:nth-child(4):hover {
    background: linear-gradient(135deg, #20a7c9, #1f8ac0);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(32, 167, 201, 0.4);
    border-color: #ffffff;
}

/* Jupyter Notebook - Data science theme */
.skill-category:nth-child(5) .skill-item:nth-child(5):hover {
    background: linear-gradient(135deg, #f37626, #f5a623);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(243, 118, 38, 0.4);
    border-color: #ffffff;
}

/* Enhanced Education */
.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.education-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.education-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-2);
}

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

.education-icon {
    color: var(--primary-color);
    font-size: 2rem;
    min-width: 40px;
    display: flex;
    align-items: flex-start;
    padding-top: 0.2rem;
}

.education-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.education-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.education-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.education-year {
    font-weight: 600;
    color: var(--primary-color) !important;
}

/* Enhanced Certifications */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.certification-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.certification-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-2);
}

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

.certification-icon {
    color: var(--primary-color);
    font-size: 2rem;
    display: flex;
    align-items: flex-start;
    padding-top: 0.2rem;
    min-width: 40px;
}

.certification-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
}

.certification-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1rem;
    text-align: left;
}

[data-theme="dark"] .certification-content h3 {
    color: #ffffff;
}

/* Section title color fix for light-bg sections */
#education .section-title,
#contact .section-title {
    color: var(--text-primary);
}

/* Enhanced Contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.contact-item span {
    color: var(--text-primary);
}

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

.contact-item i {
    color: var(--primary-color);
    width: 24px;
    font-size: 1.3rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.contact-form input,
.contact-form textarea {
    padding: 1.2rem;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

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

[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form textarea {
    background: #374151;
    border-color: #4b5563;
    color: #e5e7eb;
}

[data-theme="dark"] .contact-form input::placeholder,
[data-theme="dark"] .contact-form textarea::placeholder {
    color: #9ca3af;
}

[data-theme="dark"] .education-item {
    background: #1f2937;
}

[data-theme="dark"] .education-content h3 {
    color: #ffffff;
}

[data-theme="dark"] .education-content h4 {
    color: #818cf8;
}

[data-theme="dark"] .education-content p {
    color: #d1d5db;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    text-align: center;
    padding: 3rem 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

.project-card {
    animation: fadeInUp 0.6s ease forwards;
}

.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }
.project-card:nth-child(3) { animation-delay: 0.3s; }

.skill-category {
    animation: zoomIn 0.5s ease forwards;
}

.skill-category:nth-child(1) { animation-delay: 0.1s; }
.skill-category:nth-child(2) { animation-delay: 0.2s; }
.skill-category:nth-child(3) { animation-delay: 0.3s; }

.education-item {
    animation: slideInRight 0.6s ease forwards;
}

.timeline-item:nth-child(odd) {
    animation: slideInLeft 0.6s ease forwards;
}

.timeline-item:nth-child(even) {
    animation: slideInRight 0.6s ease forwards;
}

.contact-item {
    animation: fadeInUp 0.5s ease forwards;
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }

.hero-buttons .btn {
    animation: zoomIn 0.5s ease forwards;
}

.hero-buttons .btn:nth-child(1) { animation-delay: 1.2s; }
.hero-buttons .btn:nth-child(2) { animation-delay: 1.4s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .project-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        padding: 0 1rem;
    }
    
    .hero-name {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .btn {
        width: 90%;
        max-width: 280px;
        justify-content: center;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 50px;
    }
    
    .timeline-item::before {
        left: 20px;
    }
    
    .timeline-content {
        margin: 1rem 0;
        padding: 1.5rem;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-card {
        margin: 0 10px;
    }
    
    .project-content {
        padding: 1.5rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .skill-category {
        padding: 2rem 1.5rem;
    }
    
    .education-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .education-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .education-content h3,
    .education-content h4,
    .education-content p {
        text-align: left;
    }
    
    .education-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .category-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-name {
        font-size: clamp(2rem, 12vw, 3rem);
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-roles {
        height: 50px;
    }
    
    .role {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .project-content {
        padding: 1rem;
    }
    
    .project-content h4 {
        font-size: 1.2rem;
    }
    
    .skill-category {
        padding: 1.5rem 1rem;
    }
    
    .skill-category h3 {
        font-size: 1.1rem;
    }
    
    .education-item {
        padding: 1.5rem 1rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .contact-item {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .tech-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
}

/* Reduced motion for accessibility */
@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;
    }
}