/* Modern Bootstrap Portfolio CSS - Furkan IŞIKAY */

/* Custom Properties & Color Overrides */
:root {
    --bs-primary: #6366f1;
    --bs-primary-rgb: 99, 102, 241;
    --bs-secondary: #64748b;
    --bs-success: #10b981;
    --bs-warning: #f59e0b;
    --bs-danger: #ef4444;
    --bs-info: #06b6d4;
    
    /* Custom gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    
    /* Theme-specific gradients */
    --gradient-dark: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    --gradient-light: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    
    /* Custom properties */
    --border-radius-xl: 1rem;
    --border-radius-2xl: 1.5rem;
    --shadow-custom: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-custom-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    /* Typography */
    --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-mono: 'JetBrains Mono', 'Fira Code', Consolas, monospace;
}

/* Base Styles */
body {
    font-family: var(--font-family-primary);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Particles Background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.3s ease;
}

/* Dark Theme Particles */
[data-bs-theme="dark"] #particles-js {
    background: var(--gradient-primary);
}

/* Light Theme Particles */
[data-bs-theme="light"] #particles-js {
    background: var(--gradient-light);
}

/* Custom Utilities */
.bg-primary-gradient {
    background: var(--gradient-primary) !important;
}

.bg-secondary-gradient {
    background: var(--gradient-secondary) !important;
}

.bg-success-gradient {
    background: var(--gradient-success) !important;
}

.bg-gradient {
    background: var(--gradient-primary) !important;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.border-radius-xl {
    border-radius: var(--border-radius-xl) !important;
}

.border-radius-2xl {
    border-radius: var(--border-radius-2xl) !important;
}

.shadow-custom {
    box-shadow: var(--shadow-custom) !important;
}

.shadow-custom-lg {
    box-shadow: var(--shadow-custom-lg) !important;
}

/* Navbar Customization */
.navbar {
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(var(--bs-dark-rgb), 0.95) !important;
}

[data-bs-theme="light"] .navbar.scrolled {
    background-color: rgba(248, 250, 252, 0.95) !important;
}

.navbar-brand {
    font-weight: 700;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--bs-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Hero Section */
.hero-section {
    background: transparent;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    padding-top: 100px;
}

/* Dark Theme Hero */
[data-bs-theme="dark"] .hero-section {
    color: white;
}

[data-bs-theme="dark"] .hero-section .text-primary {
    color: #818cf8 !important;
}

[data-bs-theme="dark"] .hero-section .btn-outline-primary {
    border-color: #818cf8;
    color: #818cf8;
}

[data-bs-theme="dark"] .hero-section .btn-outline-primary:hover {
    background-color: #818cf8;
    border-color: #818cf8;
    color: white;
}

/* Light Theme Hero */
[data-bs-theme="light"] .hero-section {
    color: #1e293b;
}

[data-bs-theme="light"] .hero-section .text-muted {
    color: #64748b !important;
}

[data-bs-theme="light"] .hero-section .btn-outline-light {
    border-color: #1e293b;
    color: #1e293b;
}

[data-bs-theme="light"] .hero-section .btn-outline-light:hover {
    background-color: #1e293b;
    color: white;
}

.hero-content .badge {
    border-radius: 50px;
    font-weight: 500;
    box-shadow: var(--shadow-custom);
}

.profile-placeholder {
    width: 300px;
    height: 300px;
    background: var(--gradient-secondary);
    position: relative;
}

.floating-card {
    animation: float 3s ease-in-out infinite;
    border-radius: var(--border-radius-xl);
}

.floating-card:nth-child(1) {
    animation-delay: 0s;
    z-index: 10;
}

.floating-card:nth-child(2) {
    animation-delay: 1s;
    z-index: 10;
}

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

.scroll-indicator {
    animation: bounce 2s infinite;
}

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

/* Card Hover Effects */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Timeline Styles */
.timeline {
    position: relative;
}

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

.timeline-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    box-shadow: var(--shadow-custom);
}

/* Project Cards */
.featured-project {
    background: var(--gradient-primary) !important;
    position: relative;
    overflow: hidden;
}

.featured-project::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="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: 0;
}

.featured-project .card-body {
    position: relative;
    z-index: 1;
}

.project-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
}

.project-icon-large {
    width: 120px;
    height: 120px;
    font-size: 3rem;
}

/* Contact Section */
.contact-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
}

/* Achievement Icons */
.achievement-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

/* Form Styling */
.form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.25);
}

.form-control.bg-dark {
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

[data-bs-theme="dark"] .form-control.bg-dark {
    background-color: #1e293b !important;
    border-color: #334155 !important;
    color: #e2e8f0 !important;
}

[data-bs-theme="light"] .form-control.bg-dark {
    background-color: #f8fafc !important;
    border-color: #e2e8f0 !important;
    color: #1e293b !important;
}

.form-control.bg-dark:focus {
    background-color: var(--bs-gray-800) !important;
}

[data-bs-theme="light"] .form-control.bg-dark:focus {
    background-color: #ffffff !important;
}

/* Button Customizations */
.btn {
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: var(--shadow-custom);
}

.btn-primary:hover {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-custom-lg);
}

.btn-lg {
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
}

.btn-sm {
    border-radius: 0.375rem;
}

/* Badge Styling */
.badge {
    border-radius: 0.5rem;
    font-weight: 500;
}

/* Progress Bar */
.progress {
    height: 8px;
    border-radius: 4px;
    background-color: rgba(var(--bs-primary-rgb), 0.1);
}

.progress-bar {
    border-radius: 4px;
    background: var(--gradient-primary);
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Theme Toggle */
#themeToggleDesktop {
    transition: all 0.3s ease;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1rem !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
}

#themeToggleDesktop:hover {
    transform: rotate(180deg) scale(1.1);
    background-color: rgba(255, 255, 255, 0.2) !important;
}

/* Light theme dark mode button */
[data-bs-theme="light"] #themeToggleDesktop {
    border-color: rgba(30, 41, 59, 0.3) !important;
    background-color: rgba(30, 41, 59, 0.1) !important;
    color: #1e293b !important;
}

[data-bs-theme="light"] #themeToggleDesktop:hover {
    background-color: rgba(30, 41, 59, 0.2) !important;
}

/* Dark Theme Styles */
[data-bs-theme="dark"] {
    --bs-body-bg: #0f172a;
    --bs-body-color: #e2e8f0;
}

[data-bs-theme="dark"] .bg-light {
    background-color: #1e293b !important;
    color: #e2e8f0 !important;
}

[data-bs-theme="dark"] .text-muted {
    color: #64748b !important;
}

[data-bs-theme="dark"] .card {
    background-color: #1e293b;
    border-color: #334155;
    color: #e2e8f0;
}

[data-bs-theme="dark"] .border-secondary {
    border-color: #475569 !important;
}

[data-bs-theme="dark"] .navbar-dark {
    background-color: rgba(15, 23, 42, 0.9) !important;
}

[data-bs-theme="dark"] .contact-item {
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

/* Light Theme Styles */
[data-bs-theme="light"] {
    --bs-body-bg: #ffffff;
    --bs-body-color: #1e293b;
}

[data-bs-theme="light"] .bg-light {
    background-color: #f8fafc !important;
    color: #1e293b !important;
}

[data-bs-theme="light"] .text-muted {
    color: #64748b !important;
}

[data-bs-theme="light"] .card {
    background-color: #ffffff;
    border-color: #e2e8f0;
    color: #1e293b;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

[data-bs-theme="light"] .border-secondary {
    border-color: #e2e8f0 !important;
}

[data-bs-theme="light"] .navbar-dark {
    background-color: rgba(248, 250, 252, 0.9) !important;
}

[data-bs-theme="light"] .navbar-dark .navbar-brand,
[data-bs-theme="light"] .navbar-dark .nav-link {
    color: #1e293b !important;
}

[data-bs-theme="light"] .navbar-dark .nav-link:hover {
    color: var(--bs-primary) !important;
}

/* Light theme navbar toggle and buttons */
[data-bs-theme="light"] .navbar-toggler {
    border-color: #1e293b !important;
}

[data-bs-theme="light"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2830, 41, 59, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

[data-bs-theme="light"] .btn-outline-light {
    border-color: #1e293b !important;
    color: #1e293b !important;
    background-color: transparent !important;
}

[data-bs-theme="light"] .btn-outline-light:hover,
[data-bs-theme="light"] .btn-outline-light:focus,
[data-bs-theme="light"] .btn-outline-light:active {
    background-color: #1e293b !important;
    border-color: #1e293b !important;
    color: #ffffff !important;
}

[data-bs-theme="light"] .contact-item {
    border-bottom-color: rgba(30, 41, 59, 0.1) !important;
}

[data-bs-theme="light"] .bg-dark {
    background-color: #f8fafc !important;
    color: #1e293b !important;
}

[data-bs-theme="light"] .text-white {
    color: #1e293b !important;
}

/* Light theme contact section adjustments */
[data-bs-theme="light"] #contact.bg-dark {
    background-color: #f8fafc !important;
    color: #1e293b !important;
}

[data-bs-theme="light"] #contact.bg-dark .text-muted {
    color: #64748b !important;
}

[data-bs-theme="light"] #contact.bg-dark .card.bg-dark {
    background-color: #ffffff !important;
    border-color: #e2e8f0 !important;
    color: #1e293b !important;
}

[data-bs-theme="light"] #contact.bg-dark .contact-item {
    border-bottom-color: rgba(30, 41, 59, 0.1) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline::before {
        display: none !important;
    }
    
    .timeline-icon {
        position: static !important;
        transform: none !important;
        margin-bottom: 1rem;
        margin-left: 0 !important;
        left: auto !important;
        display: block;
        text-align: center;
    }
    
    .timeline-item .card-body {
        text-align: left !important;
    }
    
    .timeline-item .card-body .timeline-icon {
        display: inline-flex !important;
        margin-bottom: 1rem;
        margin-right: 1rem;
        vertical-align: top;
    }
    
    .timeline-item {
        margin-bottom: 2rem !important;
    }
    
    .timeline .card {
        margin-left: 0 !important;
        margin-bottom: 2rem !important;
    }
    
    .timeline-item .row {
        flex-direction: column !important;
    }
    
    .timeline-item .col-md-6 {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
    }
    
    .timeline-item .offset-md-6 {
        margin-left: 0 !important;
    }
    
    .profile-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .floating-card {
        position: static !important;
        margin: 1rem 0;
        display: inline-block;
    }
    
    .hero-content .display-4 {
        font-size: 2.5rem;
    }
    
    .project-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    /* Mobile Hero Section Fixes */
    .hero-section {
        padding-top: 140px;
        padding-bottom: 50px;
    }
    
    .hero-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .hero-content .badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-content .lead {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .hero-image .profile-placeholder {
        margin: 0 auto 2rem;
    }
}

@media (max-width: 576px) {
    .timeline::before {
        display: none !important;
    }
    
    .timeline-icon {
        position: static !important;
        transform: none !important;
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 1rem;
        margin-left: 0 !important;
        left: auto !important;
    }
    
    .timeline-item {
        margin-bottom: 2rem !important;
    }
    
    .timeline .card {
        margin-left: 0 !important;
        margin-bottom: 2rem !important;
    }
    
    .hero-content .display-4 {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Small Mobile Hero Section Fixes */
    .hero-section {
        padding-top: 120px;
        min-height: auto;
    }
    
    .hero-content .badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-content h1.display-4 {
        font-size: 1.8rem !important;
        line-height: 1.2;
        margin-bottom: 1rem !important;
    }
    
    .hero-content h2.h4 {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-content .lead {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-content .d-flex.gap-3 {
        flex-direction: column;
        gap: 0.75rem !important;
    }
    
    .hero-content .btn-lg {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .profile-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-indicator,
    #particles-js {
        display: none !important;
    }
    
    .hero-section {
        background: none !important;
        color: black !important;
        padding: 1rem 0 !important;
    }
    
    .card {
        border: 1px solid #dee2e6 !important;
        box-shadow: none !important;
    }
}

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

::-webkit-scrollbar-track {
    background: var(--bs-gray-100);
}

[data-bs-theme="dark"] ::-webkit-scrollbar-track {
    background: #1e293b;
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--bs-primary);
}

/* Selection */
::selection {
    background: rgba(var(--bs-primary-rgb), 0.3);
    color: var(--bs-primary);
}

/* Focus Styles */
:focus-visible {
    outline: 2px solid var(--bs-primary);
    outline-offset: 2px;
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Performance Optimizations */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Progress Bar Animations */
.progress-bar {
    transition: width 1.5s ease-in-out;
}

.progress {
    overflow: hidden;
    background-color: rgba(var(--bs-gray-300-rgb), 0.3);
}

[data-bs-theme="dark"] .progress {
    background-color: rgba(255, 255, 255, 0.1);
}

.card, .btn, .badge {
    will-change: transform;
}

/* Typed Text Styling */
#typed-text {
    font-weight: 600;
    font-size: inherit;
    transition: color 0.3s ease;
}

/* Light Theme Typed Text */
[data-bs-theme="light"] #typed-text {
    color: #1e293b;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Dark Theme Typed Text */
[data-bs-theme="dark"] #typed-text {
    color: #f8fafc;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Typed.js cursor styling */
.typed-cursor {
    opacity: 1;
    animation: typedjsBlink 0.7s infinite;
    font-weight: 300;
}

@keyframes typedjsBlink {
    50% { opacity: 0; }
}

/* Enhanced cursor for dark theme */
[data-bs-theme="dark"] .typed-cursor {
    color: #60a5fa;
    text-shadow: 0 0 5px rgba(96, 165, 250, 0.5);
}

/* Enhanced cursor for light theme */
[data-bs-theme="light"] .typed-cursor {
    color: #3b82f6;
    text-shadow: 0 0 5px rgba(59, 130, 246, 0.3);
}

/* Text Muted Improvements for Dark Theme */
[data-bs-theme="dark"] .text-muted {
    color: #cbd5e1 !important;
    opacity: 0.9;
}

/* Professional Experience Description Enhancement */
#experience .lead.text-muted {
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.7;
}

[data-bs-theme="dark"] #experience .lead.text-muted {
    color: #e2e8f0 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

[data-bs-theme="light"] #experience .lead.text-muted {
    color: #475569 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Selection Colors for Dark Theme */
[data-bs-theme="dark"] ::selection {
    background-color: #3b82f6;
    color: #ffffff;
}

[data-bs-theme="dark"] ::-moz-selection {
    background-color: #3b82f6;
    color: #ffffff;
}

/* Selection Colors for Light Theme */
[data-bs-theme="light"] ::selection {
    background-color: #3b82f6;
    color: #ffffff;
}

[data-bs-theme="light"] ::-moz-selection {
    background-color: #3b82f6;
    color: #ffffff;
}

/* General text contrast improvements for dark theme */
[data-bs-theme="dark"] .lead {
    color: #f1f5f9;
}

[data-bs-theme="dark"] p {
    color: #e2e8f0;
}

[data-bs-theme="dark"] .card-text {
    color: #cbd5e1;
}

/* Dark Mode Contrast Improvements for Key Elements */

/* 1. Furkan Text Enhancement */
[data-bs-theme="dark"] .text-primary {
    color: #60a5fa !important;
    text-shadow: 0 2px 4px rgba(96, 165, 250, 0.4);
    font-weight: 700;
}

[data-bs-theme="light"] .text-primary {
    color: #2563eb !important;
}

/* 2. Professional Experience Icon Enhancement */
[data-bs-theme="dark"] .bi-briefcase.text-primary {
    color: #34d399 !important;
    text-shadow: 0 0 8px rgba(52, 211, 153, 0.6);
    font-size: 1.1em;
}

[data-bs-theme="light"] .bi-briefcase.text-primary {
    color: #059669 !important;
}

/* 3. Download CV Button Enhancement */
[data-bs-theme="dark"] .btn-outline-primary {
    color: #60a5fa;
    border-color: #60a5fa;
    background: rgba(96, 165, 250, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

[data-bs-theme="dark"] .btn-outline-primary:hover {
    color: #ffffff;
    border-color: #3b82f6;
    background: #3b82f6;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

[data-bs-theme="light"] .btn-outline-primary {
    color: #2563eb;
    border-color: #2563eb;
}

[data-bs-theme="light"] .btn-outline-primary:hover {
    color: #ffffff;
    border-color: #1d4ed8;
    background: #1d4ed8;
}

/* Additional Icon Enhancements */
[data-bs-theme="dark"] .navbar-brand .bi,
[data-bs-theme="dark"] .display-5 .bi {
    color: #fbbf24 !important;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* Hero Section Icons Enhancement */
[data-bs-theme="dark"] .floating-card .bi {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* General Icon Visibility Improvement */
[data-bs-theme="dark"] .text-warning {
    color: #fbbf24 !important;
    text-shadow: 0 1px 3px rgba(251, 191, 36, 0.4);
}

[data-bs-theme="dark"] .text-success {
    color: #34d399 !important;
    text-shadow: 0 1px 3px rgba(52, 211, 153, 0.4);
}

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