Get a specific surah by ID
Surah? getSurah(int surahId) { try { return surahs.firstWhere((surah) => surah.id == surahId); } catch (e) { return null; } }