/* DESKTOP STYLES (Overrides) */
@media (min-width: 1024px) {
    /* Glass Effect (Advanced for Desktop) */
    .glass-card {
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 10px 40px -5px rgba(31, 38, 135, 0.08);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .glass-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 60px -10px rgba(255, 107, 0, 0.15);
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(255, 107, 0, 0.2);
    }

    /* 3D Shadows for Desktop */
    .soft-3d {
        box-shadow: 12px 12px 24px #d1d1d1, -12px -12px 24px #ffffff;
    }

    .inner-3d {
        box-shadow: inset 6px 6px 12px #d1d1d1, inset -6px -6px 12px #ffffff;
    }

    /* Desktop Navigation */
    .nav-link {
        position: relative;
        overflow: hidden;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
        width: 100%;
    }

    /* Hero Section Desktop */
    .hero-title {
        font-size: 5rem;
        line-height: 1.1;
        letter-spacing: -2px;
    }
    
    /* Stats Section Layout */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 10px;
    }
    ::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    ::-webkit-scrollbar-thumb {
        background: #ff6b00;
        border-radius: 5px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #e65a00;
    }
}
