* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Outfit', 'Inter', sans-serif;
    line-height: 1.7;
    color: #1e293b;
    background: #f8fafc;
}
[dir="rtl"] body {
    font-family: 'Traditional Arabic', 'Outfit', 'Inter', sans-serif;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
}
.logo {
    font-size: 1.35rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.02em;
}
.nav-links {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    transition: all 0.2s;
}
.nav-links a:hover {
    color: #4f46e5;
    background: rgba(79,70,229,0.06);
}
.nav-links a.active {
    color: #4f46e5;
    background: rgba(79,70,229,0.1);
    font-weight: 600;
}
.lang-switch {
    background: linear-gradient(135deg, #4f46e5, #7c3aed) !important;
    color: white !important;
    border: none;
    padding: 0.45rem 0.9rem !important;
    border-radius: 8px !important;
    cursor: pointer;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s !important;
    margin-left: 0.5rem;
}
.lang-switch:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79,70,229,0.4);
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #1e293b;
}
header .mobile-menu {
    display: none;
}

/* Sections */
section {
    padding: 5rem 0;
}
.section-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}
.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 2px;
    margin: 0.75rem auto 0;
}

/* Hero Section */
#home {
    text-align: center;
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 50%, #f5f3ff 100%);
    position: relative;
    overflow: hidden;
}
#home::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79,70,229,0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}
#home::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
    border-radius: 50%;
}
#home h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e293b;
    letter-spacing: -0.03em;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}
#home p {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* About Section */
#about {
    background: white;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #475569;
}
.about-text p {
    margin-bottom: 1.5rem;
}
.about-image {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    transition: transform 0.4s;
}
.about-image:hover {
    transform: scale(1.02);
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.06);
    border-color: rgba(79,70,229,0.1);
}
.card:hover::before {
    transform: scaleX(1);
}
.card h3 {
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}
.card p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}
.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
[dir="rtl"] .blog-meta {
    flex-direction: row-reverse;
}
.card a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s;
}
.card a:hover {
    gap: 0.6rem;
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.product-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border-color: rgba(79,70,229,0.1);
}
.product-card:hover::before {
    transform: scaleX(1);
}
.product-card h3 {
    color: #1e293b;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.price {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.75rem 0;
}
.product-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.btn {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79,70,229,0.35);
}

/* Contact */
.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.contact-content p {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 500px;
    margin: 0 auto;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    color: #1e293b;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form .btn {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
}
[dir="rtl"] .form-group input,
[dir="rtl"] .form-group textarea {
    text-align: right;
    direction: rtl;
}
.location-section {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.04);
}
.map-container {
    height: 400px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.location-info {
    padding: 2.5rem;
    text-align: center;
}
.location-info h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}
.location-info p {
    color: #64748b;
    line-height: 1.8;
}

/* Video */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background: #0f172a;
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed, #a855f7);
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.06);
}
.social-icon:hover {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(79,70,229,0.4);
    border-color: transparent;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: white;
}
.footer-text {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}
.footer-text a {
    color: #818cf8;
    text-decoration: none;
}
.footer-text a:hover {
    color: #a5b4fc;
}

/* Arrow icon inline */
.arrow-icon {
    display: inline-block;
    transition: transform 0.2s;
}
.card a:hover .arrow-icon,
.product-card a:hover .arrow-icon {
    transform: translateX(3px);
}

/* 404 Page */
.error-page {
    text-align: center;
    padding: 8rem 0;
}
.error-code {
    font-size: 8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}
.error-page h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
}
.error-page p {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Article Images */
.featured-image {
    width: 100%;
    max-width: 750px;
    border-radius: 12px;
    margin: 1.5rem auto;
    display: block;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.article p {
    line-height: 1.8;
    margin-bottom: 1.25rem;
}
.image-caption {
    color: #64748b;
    font-size: 0.85rem;
    text-align: center;
    margin-top: -0.5rem;
    margin-bottom: 2rem;
    font-style: italic;
}
.blog-article img {
    max-width: 100%;
    height: auto;
}
.image-compare {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}
.image-compare figure {
    flex: 1;
    margin: 0;
}
.image-compare img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.image-compare figcaption {
    color: #64748b;
    font-size: 0.85rem;
    text-align: center;
    margin-top: 0.5rem;
    font-style: italic;
}
@media (max-width: 640px) {
    .image-compare {
        flex-direction: column;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .mobile-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid rgba(0,0,0,0.05);
        padding: 0.5rem 1rem 1rem;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    .mobile-menu.active {
        display: block;
    }
    .mobile-menu a {
        display: block;
        padding: 0.75rem 0.5rem;
        text-decoration: none;
        color: #64748b;
        font-weight: 500;
        border-bottom: 1px solid #f1f5f9;
        border-radius: 6px;
        transition: all 0.2s;
    }
    .mobile-menu a:hover {
        background: rgba(79,70,229,0.06);
        color: #4f46e5;
    }
    .mobile-menu a:last-child {
        border-bottom: none;
    }
    #home {
        padding: 5rem 0 4rem;
    }
    #home h1 {
        font-size: 2.2rem;
    }
    #home p {
        font-size: 1.1rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .about-image {
        margin: 0 auto;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .map-container {
        height: 280px;
    }
    .error-code {
        font-size: 5rem;
    }
}

/* Dropdown */
.nav-item-dropdown {
    position: relative;
}
.dropdown-trigger {
    cursor: pointer;
}
.dropdown-trigger::after {
    content: ' ▾';
    font-size: 0.7em;
    margin-left: 2px;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    min-width: 150px;
    padding: 0.4rem;
    z-index: 200;
    border: 1px solid rgba(0,0,0,0.04);
}
.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
    display: block;
}
.dropdown-menu a {
    display: block;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    white-space: nowrap;
    color: #64748b;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}
.dropdown-menu a:hover {
    color: #4f46e5;
    background: rgba(79,70,229,0.06);
}
[data-theme="dark"] .dropdown-menu {
    background: #1e293b;
    border-color: rgba(255,255,255,0.06);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
[data-theme="dark"] .dropdown-menu a {
    color: #94a3b8;
}
[data-theme="dark"] .dropdown-menu a:hover {
    color: #818cf8;
    background: rgba(129,140,248,0.08);
}

/* Theme toggle */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.15rem;
    border-radius: 8px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: #64748b;
}
.theme-toggle:hover {
    color: #4f46e5;
    background: rgba(79,70,229,0.06);
}

/* Visitor section */
.visitor-section {
    padding: 2rem 0 4rem;
    text-align: center;
}
.visitor-map {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}
.visitor-map img {
    width: 100%;
    display: block;
}
[data-theme="dark"] .visitor-map {
    border-color: rgba(255,255,255,0.06);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Dark theme */
[data-theme="dark"] body {
    background: #0f172a;
    color: #e2e8f0;
}
[data-theme="dark"] header {
    background: rgba(15,23,42,0.92);
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
[data-theme="dark"] .nav-links a {
    color: #94a3b8;
}
[data-theme="dark"] .nav-links a:hover {
    color: #818cf8;
    background: rgba(129,140,248,0.08);
}
[data-theme="dark"] .nav-links a.active {
    color: #818cf8;
    background: rgba(129,140,248,0.12);
}
[data-theme="dark"] .theme-toggle {
    color: #94a3b8;
}
[data-theme="dark"] .theme-toggle:hover {
    color: #818cf8;
    background: rgba(129,140,248,0.08);
}
[data-theme="dark"] .mobile-menu-btn {
    color: #e2e8f0;
}
[data-theme="dark"] .mobile-menu {
    background: rgba(15,23,42,0.98);
    border-top-color: rgba(255,255,255,0.06);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
[data-theme="dark"] .mobile-menu a {
    color: #94a3b8;
    border-bottom-color: #1e293b;
}
[data-theme="dark"] .mobile-menu a:hover {
    background: rgba(129,140,248,0.08);
    color: #818cf8;
}
[data-theme="dark"] .card {
    background: #1e293b;
    border-color: rgba(255,255,255,0.06);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
[data-theme="dark"] .card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
[data-theme="dark"] .card h3 {
    color: #e2e8f0;
}
[data-theme="dark"] .card p {
    color: #94a3b8;
}
[data-theme="dark"] .blog-meta {
    color: #64748b;
}
[data-theme="dark"] .product-card {
    background: #1e293b;
    border-color: rgba(255,255,255,0.06);
}
[data-theme="dark"] .product-card h3 {
    color: #e2e8f0;
}
[data-theme="dark"] .product-card p {
    color: #94a3b8;
}
[data-theme="dark"] #home {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
}
[data-theme="dark"] #home h1 {
    color: #e2e8f0;
}
[data-theme="dark"] #home p {
    color: #94a3b8;
}
[data-theme="dark"] #about {
    background: #1e293b;
}
[data-theme="dark"] .about-text {
    color: #94a3b8;
}
[data-theme="dark"] .section-title {
    color: #e2e8f0;
}
[data-theme="dark"] .contact-content p {
    color: #94a3b8;
}
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
    background: #1e293b;
    border-color: #334155;
    color: #e2e8f0;
}
[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus {
    border-color: #3b82f6;
}
[data-theme="dark"] .location-section {
    background: #1e293b;
    border-color: rgba(255,255,255,0.06);
}
[data-theme="dark"] .location-info h3 {
    color: #e2e8f0;
}
[data-theme="dark"] .location-info p {
    color: #94a3b8;
}

/* BizMapper-style article */
.blog-article {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.04);
    margin-bottom: 3rem;
}
.article-header {
    padding: 50px 30px;
    text-align: center;
}
.article-header .category-badge {
    display: inline-block;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: rgba(255,255,255,0.2);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.article-content {
    padding: 2rem;
}
.article-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.article-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.article-meta {
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    color: #64748b;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
[dir="rtl"] .article-meta {
    flex-direction: row-reverse;
}
.article-title {
    font-size: 1.6rem;
    color: #1e293b;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}
.article-content .featured-image {
    border-radius: 12px;
    margin: 1.5rem auto;
    max-width: 750px;
    display: block;
}
.article-content p {
    line-height: 1.8;
    margin-bottom: 1.25rem;
}
.article-content ul,
.article-content ol {
    line-height: 1.8;
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}
[dir="rtl"] .article-content ul,
[dir="rtl"] .article-content ol {
    padding-right: 1.5rem;
    padding-left: 0;
}
.article-content .image-caption {
    margin-bottom: 1.5rem;
}
.article-content .highlight-box {
    margin: 1.5rem 0;
}
.article-content .video-container {
    margin: 1.5rem 0;
}
.article-read-more {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
}
[data-theme="dark"] .blog-article {
    background: #1e293b;
    border-color: rgba(255,255,255,0.06);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
[data-theme="dark"] .article-title {
    color: #e2e8f0;
}
[data-theme="dark"] .article-meta {
    color: #94a3b8;
}
[data-theme="dark"] .error-page h2 {
    color: #e2e8f0;
}
[data-theme="dark"] .error-page p {
    color: #94a3b8;
}
[data-theme="dark"] .about-image {
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
[data-theme="dark"] .featured-image {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
[data-theme="dark"] .image-caption {
    color: #94a3b8;
}
