:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;

    --tool-spring-color: #6db33f;
    --tool-react-color: #61dafb;
    --tool-postgresql-color: #336791;
    --tool-java-color: #b07219;
    --tool-mysql-color: #00758f;
    --tool-script-color: #facc15;
    --tool-docker-color: #2496ed;
    --tool-bootstrap-color: #7952b3;
    --tool-kubernetes-color: #326ce5;
    --tool-python-color: #3572A5;
    --tool-mqtt-color: #660066;

    /* Animation Timing */
    --transition-fast: 0.2s;
    --transition-normal: 0.3s;
    --transition-slow: 0.5s;
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Allgemeine Tool-Badge-Stile */
.tool-spring,
.tool-react,
.tool-postgresql,
.tool-java,
.tool-mysql,
.tool-script,
.tool-docker,
.tool-bootstrap,
.tool-kubernetes,
.tool-python,
.tool-mqtt,
.tool-default {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all var(--transition-normal) var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

/* Subtle pulse animation on hover */
.tool-spring::before,
.tool-react::before,
.tool-postgresql::before,
.tool-java::before,
.tool-mysql::before,
.tool-script::before,
.tool-docker::before,
.tool-bootstrap::before,
.tool-kubernetes::before,
.tool-python::before,
.tool-mqtt::before,
.tool-default::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.tool-spring:hover::before,
.tool-react:hover::before,
.tool-postgresql:hover::before,
.tool-java:hover::before,
.tool-mysql:hover::before,
.tool-script:hover::before,
.tool-docker:hover::before,
.tool-bootstrap:hover::before,
.tool-kubernetes:hover::before,
.tool-python:hover::before,
.tool-mqtt:hover::before,
.tool-default:hover::before {
    width: 100%;
    height: 100%;
}

.tool-default {
    background: white;
    color: #000000;
}

.tool-spring {
    background-color: var(--tool-spring-color);
    color: white;
    animation: subtleFloat 6s ease-in-out infinite;
}

.tool-react {
    background-color: var(--tool-react-color);
    color: white;
    animation: subtleFloat 6s ease-in-out infinite 0.5s;
}

.tool-postgresql {
    background-color: var(--tool-postgresql-color);
    color: white;
    animation: subtleFloat 6s ease-in-out infinite 1s;
}

.tool-java {
    background-color: var(--tool-java-color);
    color: white;
    animation: subtleFloat 6s ease-in-out infinite 1.5s;
}

.tool-mysql {
    background-color: var(--tool-mysql-color);
    color: white;
    animation: subtleFloat 6s ease-in-out infinite 2s;
}

.tool-script {
    background-color: var(--tool-script-color);
    color: white;
    animation: subtleFloat 6s ease-in-out infinite 2.5s;
}

.tool-docker {
    background-color: var(--tool-docker-color);
    color: white;
    animation: subtleFloat 6s ease-in-out infinite 3s;
}

.tool-bootstrap {
    background-color: var(--tool-bootstrap-color);
    color: white;
    animation: subtleFloat 6s ease-in-out infinite 3.5s;
}

.tool-kubernetes {
    background-color: var(--tool-kubernetes-color);
    color: white;
    animation: subtleFloat 6s ease-in-out infinite 4s;
}

.tool-python {
    background-color: var(--tool-python-color);
    color: white;
    animation: subtleFloat 6s ease-in-out infinite 4.5s;
}

.tool-mqtt {
    background-color: var(--tool-mqtt-color);
    color: white;
    animation: subtleFloat 6s ease-in-out infinite 5s;
}

.tool-spring:hover,
.tool-react:hover,
.tool-postgresql:hover,
.tool-java:hover,
.tool-mysql:hover,
.tool-script:hover,
.tool-docker:hover,
.tool-bootstrap:hover,
.tool-kubernetes:hover,
.tool-python:hover,
.tool-mqtt:hover,
.tool-default:hover {
    filter: brightness(1.1);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    position: relative;
    overflow-x: hidden;
}

/* Background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
            radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.02) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal) ease;
    animation: slideDown 0.5s ease-out;
}

/* Navbar scroll effect */
.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    transition: transform var(--transition-normal) ease;
    display: inline-flex;
    align-items: center;
}

.navbar-brand:hover {
    transform: translateX(5px);
}

.navbar-brand i {
    animation: rotate 20s linear infinite;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all var(--transition-normal) var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::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;
}

.navbar-nav .nav-link:hover::before {
    left: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background-color: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Dropdown improvements */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    animation: dropIn 0.3s ease-out;
    margin-top: 0.5rem;
}

.dropdown-menu .dropdown-item {
    transition: all var(--transition-fast) ease;
    border-radius: 8px;
    margin: 0.2rem 0.5rem;
}

.dropdown-menu .dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
    animation: fadeIn 0.8s ease-out;
}

/* Cards */
.card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: var(--bg-card);
    transition: all var(--transition-normal) var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.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);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.card:hover::before {
    animation: shimmerCard 0.5s ease;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Progress bars */
.progress {
    height: 8px;
    border-radius: 10px;
    background-color: #e5e7eb;
    overflow: visible;
    position: relative;
}

.progress-bar {
    border-radius: 10px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    position: relative;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

.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;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: slidePattern 20s linear infinite;
}

/* Floating particles effect */
.hero-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image:
            radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
            radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 25px 25px;
    animation: floatParticles 30s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-section h1 i {
    animation: pulse 2s ease-in-out infinite;
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* About Section */
.about-section {
    padding: 4rem 0;
}

.profile-img {
    width: 290px;
    height: 440px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-slow) var(--ease-smooth);
    position: relative;
}

.profile-img::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal) ease;
}

.profile-img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.profile-img:hover::before {
    opacity: 1;
    animation: rotate 3s linear infinite;
}

.about-content {
    padding: 2rem 0;
    animation: fadeInLeft 0.8s ease-out;
}

.about-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.5s ease;
}

.about-content:hover h2::after {
    width: 100%;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-out 0.2s both;
}

/* Experience Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    animation: growDown 2s ease-out;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
    opacity: 0;
    animation: fadeInLeft 0.6s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }

.timeline-marker {
    position: absolute;
    left: 20px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

.timeline-content {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal) var(--ease-smooth);
    border-left: 3px solid transparent;
}

.timeline-content:hover {
    transform: translateY(-5px) translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-left-color: var(--accent-color);
}

.timeline-date {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0.5rem 0;
}

.timeline-company {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.timeline-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Education Section */
.education-card {
    background: var(--bg-card);
    border: none;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal) var(--ease-smooth);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.education-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform var(--transition-normal) ease;
}

.education-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.education-card:hover::before {
    transform: scaleX(1);
}

.education-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    animation: subtleFloat 4s ease-in-out infinite;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
}

.service-card {
    background: var(--bg-card);
    border: none;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal) var(--ease-smooth);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    transition: all 0.5s ease;
}

.service-card:hover::before {
    top: -150%;
    left: -150%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all var(--transition-normal) ease;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* Stats Section */
.stats-section {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
    animation: countUp 2s ease-out;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.8;
    animation: fadeIn 1s ease-out 0.5s both;
}

/* Info Cards */
.info-card {
    background: var(--bg-card);
    border: none;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal) var(--ease-smooth);
    border-left: 3px solid transparent;
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-left-color: var(--primary-color);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    transition: all var(--transition-normal) ease;
}

.info-card:hover .info-icon {
    transform: rotate(360deg);
}

/* Buttons */
.btn {
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal) ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-normal) var(--ease-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 12px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all var(--transition-normal) var(--ease-smooth);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    color: white;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-normal) var(--ease-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Skills Section */
.skills-section {
    padding: 4rem 0;
}

.skill-category {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal) var(--ease-smooth);
    animation: fadeInUp 0.6s ease-out;
}

.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-right: 1rem;
    animation: pulse 3s ease-in-out infinite;
}

.skill-item {
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInLeft 0.5s ease-out forwards;
}

.skill-item:nth-child(1) { animation-delay: 0.1s; }
.skill-item:nth-child(2) { animation-delay: 0.2s; }
.skill-item:nth-child(3) { animation-delay: 0.3s; }
.skill-item:nth-child(4) { animation-delay: 0.4s; }

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.skill-name {
    font-weight: 600;
    color: var(--text-dark);
}

.skill-level {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.skill-bar {
    height: 8px;
    background-color: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

.skill-progress {
    height: 100%;
    border-radius: 10px;
    position: relative;
    transition: width 2s var(--ease-smooth);
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

/* Tools Section */
.tools-section {
    padding: 4rem 0;
    background: var(--bg-card);
}

.tool-item {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-normal) var(--ease-smooth);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.tool-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.5s;
}

.tool-item:hover::before {
    left: 100%;
}

.tool-item:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
    background: white;
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: all var(--transition-normal) ease;
}

.tool-item:hover .tool-icon {
    transform: rotateY(360deg);
    color: var(--accent-color);
}

.tool-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.tool-description {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Certifications Section */
.certifications-section {
    padding: 4rem 0;
}

.cert-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal) var(--ease-smooth);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.cert-card::after {
    content: '✓';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: var(--success-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    transform: rotate(15deg);
    opacity: 0;
    transition: all var(--transition-normal) ease;
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cert-card:hover::after {
    opacity: 1;
    transform: rotate(0deg);
}

.cert-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--success-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
    animation: pulse 3s ease-in-out infinite;
}

.cert-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cert-issuer {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.cert-date {
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 500;
}

/* Contact Form Styles */
.form-control, .form-select {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all var(--transition-normal) var(--ease-smooth);
    background: white;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
    transform: translateY(-2px);
}

.form-control.is-invalid, .form-select.is-invalid {
    border-color: var(--danger-color);
    animation: shake 0.5s ease;
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    transition: all var(--transition-fast) ease;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

/* Accordion styles */
.accordion-item {
    border: none;
    border-radius: 15px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 1rem;
    transition: all var(--transition-normal) ease;
}

.accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.accordion-button {
    background: var(--bg-card);
    border: none;
    font-weight: 500;
    padding: 1.5rem;
    transition: all var(--transition-normal) ease;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    transition: transform var(--transition-normal) ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-body {
    background: var(--bg-card);
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    animation: fadeIn 0.3s ease;
}

/* Animation for form elements */
.focused .form-label {
    color: var(--primary-color);
    transform: translateY(-2px);
    font-weight: 600;
}

/* Privacy Section Styles */
.privacy-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.privacy-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 40px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out;
}

.privacy-section h2 {
    color: #2c3e50;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
}

.privacy-section h2::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    animation: slideRight 1s ease-out;
}

.privacy-section h3 {
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.privacy-section h4 {
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 500;
}

.data-box {
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
    transition: all var(--transition-normal) ease;
    animation: fadeInLeft 0.6s ease-out;
}

.data-box:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.data-box strong {
    color: #2c3e50;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.right-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #27ae60;
    transition: all var(--transition-normal) ease;
    animation: fadeInUp 0.6s ease-out;
}

.right-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.right-item h5 {
    color: #27ae60;
    margin-bottom: 10px;
}

.contact-info {
    background: #e8f4f8;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
    transition: all var(--transition-normal) ease;
}

.contact-info:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.table-of-contents {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.table-of-contents ul {
    list-style: none;
    padding-left: 0;
}

.table-of-contents li {
    margin: 8px 0;
    transition: all var(--transition-fast) ease;
}

.table-of-contents li:hover {
    transform: translateX(5px);
}

.table-of-contents a {
    text-decoration: none;
    color: #3498db;
    font-weight: 500;
    transition: all var(--transition-fast) ease;
}

.table-of-contents a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.section-divider {
    height: 2px;
    background: linear-gradient(to right, #3498db, #27ae60);
    border: none;
    margin: 40px 0;
    animation: expandWidth 1s ease-out;
}

/* Projects Section Styles */
.project-card {
    position: relative;
    height: 100%;
    padding-bottom: 100px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border: none;
    padding: 2rem;
    transition: all var(--transition-normal) var(--ease-smooth);
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    animation: slideRight 1s ease-out;
}

.project-image {
    margin-top: 50px;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal) ease;
}

.project-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    animation: slidePattern 10s linear infinite;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-image i {
    position: relative;
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.project-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tech {
    margin-bottom: 4.5rem;
}

.project-links {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.project-link {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all var(--transition-normal) var(--ease-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.project-link.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.project-link.primary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

.project-link.secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.project-link.secondary:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    background: white;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-normal) var(--ease-bounce);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    width: 120%;
    height: 120%;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.project-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: slideLeft 0.5s ease-out;
}

.project-item {
    transition: all var(--transition-normal) ease;
}

.project-item.hidden {
    display: none;
}

/* Partner Section Styles */
.partners-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

.partners-section h2 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.partners-section .lead {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.partner-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal) var(--ease-smooth);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.6s ease-out;
}

.partner-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.partner-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
    animation: pulse 3s ease-in-out infinite;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="15" height="15" patternUnits="userSpaceOnUse"><circle cx="7.5" cy="7.5" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.partner-logo i {
    position: relative;
    z-index: 2;
}

.partner-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.partner-type {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.partner-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.coding-week-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
    display: inline-block;
    position: relative;
    overflow: hidden;
    animation: pulse 2s ease-in-out infinite;
}

.coding-week-badge::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;
}

.coding-week-badge:hover::before {
    left: 100%;
}

/* Status Badges */
.status-completed {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-ongoing {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-planned {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    animation: slideRight 3s linear infinite;
}

.footer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color var(--transition-fast) ease;
}

.footer a:hover {
    color: white;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin: 0 5px;
    transition: all var(--transition-normal) ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideRight {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideLeft {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes shimmerCard {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes dropIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes growDown {
    from {
        height: 0;
    }
    to {
        height: 100%;
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes slidePattern {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(10px, 10px);
    }
}

@keyframes floatParticles {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(-25px, -25px);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--border-color);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: rotate 1s linear infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1,
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1.2rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-marker {
        left: 5px;
    }

    .profile-img {
        width: 250px;
        height: 250px;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
    }

    .category-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .skill-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .skill-level {
        margin-top: 0.25rem;
    }

    .info-card {
        margin-bottom: 1rem;
    }

    .service-card {
        margin-bottom: 2rem;
    }

    .filter-tabs {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 200px;
        text-align: center;
    }

    .project-links {
        flex-direction: column;
    }

    .partners-section {
        padding: 60px 0;
    }

    .partner-card {
        margin-bottom: 2rem;
    }
}

/* Print styles */
@media print {
    .navbar, .footer, .hero-section {
        display: none;
    }

    body {
        background: white;
    }

    .card, .project-card, .service-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Accessibility improvements */
.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;
}

/* Focus styles for keyboard navigation */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Reduced motion preferences */
@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;
    }
}
