This paper introduces Javidi, a novel deep learning optimizer that systematically integrates third-moment estimation with Nesterov accelerated momentum and AMSGrad stabilization. While existing adaptive optimizers primarily rely on first- and second-order gradient moments, they largely overlook informative higher-order statistics. Javidi addresses this limitation through three core innovations: (1) dynamic third-moment estimation to capture gradient distribution skewness, (2) a time-decaying weighting coefficient ( \(\lambda _t = \lambda _0 / \sqrt{t}\) ) that adaptively modulates the contribution of the third moment throughout training, and (3) Nesterov-style look-ahead momentum combined with AMSGrad’s maximum second-moment tracking to enhance convergence stability. Extensive empirical evaluation across five benchmark datasets spanning computer vision (MNIST, noisy MNIST, and noisy CIFAR-10) and natural language processing (SST-2 and AG News) demonstrates Javidi’s consistently strong performance compared to five state-of-the-art optimizers, namely Adam, AdamW, Lion, LAMB, and Sophia. All experiments were conducted over 7 independent runs with different random seeds. Results are reported as mean values with 95 \(\%\) bootstrap confidence intervals (percentile method, 5000 resamples). Statistical significance was assessed using pair-wise t-tests on accuracy values with Bonferroni correction for multiple comparisons. On vision benchmarks, Javidi achieves top-tier accuracy on MNIST (0.9919 [0.9916, 0.9922]) and noisy MNIST (0.9923 [0.9918, 0.9927]), performing statistically equivalently to Lion ( \(p = 0.4649\) and \(p = 0.8344\) , respectively) while significantly outperforming other baselines ( \(p < 0.01\) ). On the more challenging noisy CIFAR-10 dataset, Javidi ranks second (0.7882 [0.7828, 0.7928]) and significantly outperforms LAMB and Sophia ( \(p < 0.001\) ). For NLP tasks, Javidi delivers competitive results on SST-2 (0.9102 [0.9075, 0.9128]) and AG News (0.9101 [0.9092, 0.9107]), maintaining statistical equivalence to leading baselines on SST-2 while significantly outperforming most competitors on AG News ( \(p < 0.001\) ). Across all datasets, Javidi exhibits exceptional stability, with coefficients of variation not exceeding \(0.97\%\) , indicating low sensitivity to random initialization. The optimizer maintains competitive computational efficiency, incurring a modest overhead typically within 7– \(15\%\) relative to Adam, depending on the dataset, while achieving smoother convergence, lower final training losses, and notable robustness to hyperparameter variations. These results show that integrating higher-order gradient moments can significantly improve optimization performance with limited computational overhead. Code and supplementary materials are available at https://github.com/Aliyar4061/Javidiv2-Optimizer.