Science Subjects (Physics, Chemistry, Biology)

Science Subjects (Physics, Chemistry, Biology)

Our Science Courses cover Physics, Chemistry, and Biology, helping students explore the wonders of creation through modern science — all while staying mindful of the Creator’s design.

Students learn with experiments, demonstrations, and visual learning, gaining a deep understanding of scientific principles and their real-world applications. The course aligns with school and college curricula, preparing students for exams and higher studies.

Duration: 1 Academic Year / دورانیہ: 1 تعلیمی سال
🕒 Class Time: 1 Hour Daily / روزانہ 1 گھنٹہ
📅 Days: 5 Days a Week / ہفتے میں 5 دن

👉 Join today and turn curiosity into knowledge through an engaging study of science.

document.addEventListener('DOMContentLoaded', function(){ const gallery = document.querySelector('.my-prayer-gallery .gallery-track'); if (!gallery) return; const slides = gallery.querySelectorAll('.gallery-slide'); let currentIndex = 0; let startX = 0, endX = 0; gallery.addEventListener('touchstart', (e) => { startX = e.touches[0].clientX; }); gallery.addEventListener('touchmove', (e) => { endX = e.touches[0].clientX; }); gallery.addEventListener('touchend', () => { const diff = endX - startX; if (Math.abs(diff) > 50) { // swipe threshold if (diff < 0) { currentIndex = Math.min(currentIndex + 1, slides.length - 1); } else { currentIndex = Math.max(currentIndex - 1, 0); } gallery.style.transform = `translateX(-${currentIndex * 100}%)`; } startX = 0; endX = 0; }); });