/* style.css */
:root {
    /* Dark Mode (Default) */
    --bg-dark: #07070a;
    --bg-darker: #040406;
    --bg-card: rgba(20, 20, 25, 0.6);
    --primary: #6366f1; /* Indigo */
    --primary-light: #818cf8;
    --secondary: #ec4899; /* Pink */
    --secondary-light: #f472b6;
    --accent: #06b6d4; /* Cyan */
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-glow: rgba(99, 102, 241, 0.15);
    --input-bg: rgba(0,0,0,0.2);
    
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --font-ar: 'Cairo', sans-serif;
    --font-en-head: 'Syne', sans-serif;
    --font-en-body: 'Inter', sans-serif;
}

/* Light Mode Override */
.light-mode {
    --bg-dark: #f8fafc;
    --bg-darker: #f1f5f9;
    --bg-card: rgba(255, 255, 255, 0.7);
    --primary: #4f46e5; 
    --primary-light: #6366f1;
    --secondary: #d946ef; 
    --secondary-light: #c026d3;
    --accent: #0284c7; 
    
    --text-main: #0f172a;
    --text-muted: #475569;
    
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-glow: rgba(79, 70, 229, 0.15);
    --input-bg: rgba(255, 255, 255, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
    font-family: var(--font-ar);
    line-height: 1.6;
    transition: background-color 0.4s ease, color 0.4s ease;
}

html[lang="en"] body {
    font-family: var(--font-en-body);
}

html[lang="en"] h1, html[lang="en"] h2, html[lang="en"] h3, html[lang="en"] h4, html[lang="en"] h5, html[lang="en"] h6, html[lang="en"] .logo, html[lang="en"] .btn, html[lang="en"] .counter {
    font-family: var(--font-en-head);
}

/* Base Styles & Utils */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
html[lang="en"] .text-right { text-align: left; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2.5rem; }
.pb-3 { padding-bottom: 1rem; }
.pb-4 { padding-bottom: 1.5rem; }
.pt-3 { padding-top: 1rem; }
.pt-4 { padding-top: 1.5rem; }
.pt-5 { padding-top: 3rem; }
.p-0 { padding: 0 !important; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }

.d-block { display: block; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-none { display: none !important; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-3 { gap: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full, .full-width { width: 100%; }

.text-muted { color: var(--text-muted); }
.text-main { color: var(--text-main); }
.text-secondary { color: var(--secondary); }
.text-sm { font-size: 0.875rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.font-bold { font-weight: 700; }
.font-normal { font-weight: 400; }
.text-green { color: #10b981; }

.relative { position: relative; }
.absolute { position: absolute; }
.top-0 { top: 0; }
.left-1\/2 { left: 50%; }
.transform { transform: translateX(-50%) translateY(-50%); }
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: var(--radius-md); }
.rounded { border-radius: var(--radius-sm); }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.bg-gradient { background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

.border-t { border-top: 1px solid var(--glass-border); }
.border-b { border-bottom: 1px solid var(--glass-border); }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
html[dir="rtl"] .border-l-4 { border-left: none; border-right-width: 4px; border-right-style: solid; }
.border-glass { border-color: var(--glass-border); }
.list-none { list-style: none; }
.hover-themed:hover { color: var(--primary-light); }

/* Grid Utils */
.grid { display: grid; gap: 2rem; }

/* Abstract Background Shapes */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.5;
    animation: float 20s infinite ease-in-out alternate;
}

.shape-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}

.shape-2 {
    bottom: 10%;
    right: -10%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    animation-delay: -5s;
}

.shape-3 {
    top: 40%;
    left: 20%;
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    animation-delay: -10s;
}

.light-mode .bg-shape { opacity: 0.3; filter: blur(100px); }

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, 10%) scale(1.1); }
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientShift 5s ease infinite;
}

.light-mode .gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
}

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

/* Glassmorphism Classes */
.glass-element {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light); /* FIXED: Removed hardcoded rgb opacity to fully align with theme */
    box-shadow: 0 10px 40px var(--glass-glow);
}

.glass-input {
    background: var(--input-bg) !important;
    border: 1px solid var(--glass-border) !important;
    color: var(--text-main) !important;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.glass-input:focus {
    outline: none;
    border-color: var(--primary-light) !important;
    box-shadow: 0 0 10px var(--glass-glow) !important;
}

/* Custom Select Dropdown text readability on light mode */
.custom-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 1rem center;
    background-size: 1em;
}
html[lang="en"] .custom-select {
    background-position: right 1rem center;
}
.custom-select option {
    background-color: var(--bg-dark);
    color: var(--text-main);
}

.glass-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    transition: var(--transition);
    text-decoration: none;
}
.glass-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    outline: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white !important;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--primary-light);
    color: var(--text-main);
}

.btn-whatsapp {
    background: #25D366;
    color: white !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
    background: transparent;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(4, 4, 6, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}
.light-mode .navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--secondary-light);
    transition: var(--transition);
}
html[dir="rtl"] .nav-link::after {
    right: 0;
    left: auto;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}
.nav-link:hover, .nav-link.active {
    color: var(--secondary-light);
}

/* Icon Buttons (Theme & Lang) */
.icon-toggle-btn, .lang-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    border-radius: 20px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.lang-btn {
    padding: 8px 16px;
    gap: 8px;
}
.icon-toggle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.lang-btn:hover, .icon-toggle-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}
html[lang="en"] .floating-whatsapp {
    right: 30px; left: auto; /* It's usually good to keep chat widgets bottom right globally, but we can stick to bottom right */
}
html[dir="rtl"] .floating-whatsapp {
    left: 30px;
    right: auto;
}
.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    background-color: #128C7E;
    color: white;
}

/* General Sections */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.dark-bg {
    background: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--primary-light);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.section-title span {
    color: var(--secondary-light);
    font-style: italic;
    font-weight: 400;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 3rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.stat-item h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 5px;
}
.stat-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-hero-card {
    width: 340px;
    text-align: center;
    z-index: 2;
    background: var(--bg-card);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--glass-glow) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}
.main-hero-card:hover .card-glow {
    opacity: 1;
}

.float-card-1 {
    position: absolute;
    top: 50px;
    right: 20px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    z-index: 3;
    animation: floating 4s ease-in-out infinite;
}
html[lang="en"] .float-card-1 { right: auto; left: 20px; }

.float-card-2 {
    position: absolute;
    bottom: 50px;
    left: 20px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    z-index: 3;
    animation: floating 5s ease-in-out infinite reverse;
}
html[lang="en"] .float-card-2 { left: auto; right: 20px; }

@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 1rem;
}
.image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.image-wrapper:hover img {
    transform: scale(1.03);
}

.overlay-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 5;
    background: var(--bg-card);
}
html[lang="en"] .overlay-badge { right: auto; left: -20px; }

.overlay-badge h4 { font-size: 1.1rem; }
.overlay-badge p { color: var(--text-muted); font-size: 0.9rem; }

.feature-list {
    list-style: none;
    margin-top: 2rem;
}
.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.service-card {
    padding: 2.5rem 2rem;
}
.service-card .icon-box {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}
.service-card:hover .icon-box {
    background: var(--glass-glow); /* FIXED: Standardized using CSS theme variable */
    transform: rotateY(15deg) rotateX(15deg);
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.port-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.port-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.portfolio-card:hover .port-image img {
    transform: scale(1.1);
}

.port-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}
html[lang="en"] .port-overlay { right: auto; left: 20px; }

.badge {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
}

.metrics {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    gap: 2rem;
}

/* Testimonials Section (FIXED: Restored missing styles) */
.testimonials-slider {
    margin-top: 3rem;
}

.testimonial-card {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-card .author img {
    border: 2px solid var(--primary-light);
    padding: 2px;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
    align-items: stretch;
}

.pricing-card {
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.pricing-card > .btn {
    margin-top: auto;
}
.pricing-card.popular-tier {
    transform: scale(1.05);
    border-color: var(--secondary-light); /* FIXED: Replaced static rgba logic */
    box-shadow: 0 10px 40px rgba(236, 72, 153, 0.15);
    z-index: 2;
}

.tier-features {
    list-style: none;
    text-align: right;
}
html[lang="en"] .tier-features { text-align: left; }

.tier-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-container {
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

/* Footer */
.footer-container {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}
.footer-links ul li a {
    transition: var(--transition);
    text-decoration: none;
}
.footer-links ul li a:hover {
    padding-right: 5px;
}
html[lang="en"] .footer-links ul li a:hover {
    padding-right: 0;
    padding-left: 5px;
}

/* Alert Boxes */
.alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    color: #10b981;
}
.alert-error {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #ef4444;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-buttons .icon-toggle-btn { display: none; }
    .mobile-theme { display: block; }
    
    .hero-container, .about-container, .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-title { font-size: 3rem; }
    .hero { text-align: center; padding-top: 150px; }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; flex-wrap: wrap; }
    .float-card-1, .float-card-2 { display: none; }
    
    .pricing-card.popular-tier { transform: scale(1); }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(4, 4, 6, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
        border-left: 1px solid var(--glass-border);
    }
    .light-mode .nav-links { background: rgba(255, 255, 255, 0.95); }
    
    html[lang="en"] .nav-links {
        right: auto;
        left: -100%;
        border-left: none;
        border-right: 1px solid var(--glass-border);
    }
    
    .nav-links.active { right: 0; }
    html[lang="en"] .nav-links.active { left: 0; }

    .mobile-toggle { display: block; }
    
    .hero-title { font-size: 2.25rem; }
    .section-title { font-size: 2rem; }
    
    .portfolio-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-links ul li a:hover { padding: 0; }
    .floating-whatsapp { bottom: 20px; left: 20px; width: 50px; height: 50px; font-size: 1.5rem; }
}

/* Dashboard Animations */
.chart-path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawPath 3s ease-out forwards;
}
.chart-fill {
    opacity: 0;
    animation: fadeInFill 3s ease-out forwards;
}
@keyframes drawPath {
    100% { stroke-dashoffset: 0; }
}
@keyframes fadeInFill {
    80% { opacity: 0; }
    100% { opacity: 1; }
}
.analytics-bars .bar {
    animation: pulseBar 2s infinite alternate ease-in-out;
    transform-origin: bottom;
}
.analytics-bars .bar:nth-child(even) { animation-delay: 0.5s; }
.analytics-bars .bar:nth-child(3n) { animation-delay: 1s; }
@keyframes pulseBar {
    0% { transform: scaleY(0.85); }
    100% { transform: scaleY(1.05); opacity: 0.8; }
}
