Excellence & Recognition

Academic & Co-curricular Achievements

At Saraswati Gyan Mandir Inter College, we take pride in the outstanding accomplishments of our students and faculty across various domains. Our commitment to excellence has resulted in numerous accolades and achievements throughout our illustrious history.

Academic

Board exam toppers & scholarships

Sports

District & state level champions

Cultural

Dance, music & drama awards

Competitions

Science, math & literary events

95%
Pass Percentage in Board Exams
120+
Sports Medals Won
75+
District/State Toppers
50+
Science Exhibition Awards
2023

UP Board Examination Excellence

Our students achieved outstanding results with 15 students scoring above 90% and three students ranking in the district top 10.

Academic Board Results
2023

District Sports Championship

Our school's cricket team won the district championship, and athletics team secured 12 medals in various track and field events.

Sports Cricket Athletics
2022

National Science Olympiad

Five students qualified for the National Level Science Olympiad, with two securing medals and certificates of excellence.

Academic Science Olympiad
2022

Cultural Excellence Award

Our school received the Cultural Excellence Award at the Inter-School Cultural Festival for outstanding performances in dance, music, and drama.

Cultural Dance Music
2021

District Level Science Exhibition

Our students won first prize for their innovative project on renewable energy at the District Level Science Exhibition.

Academic Science Innovation
2021

State Mathematics Competition

Three students secured top positions in the State Mathematics Competition, demonstrating exceptional problem-solving skills.

Academic Mathematics
// Animate stats counter const stats = document.querySelectorAll('.stat-number'); function animateStats() { stats.forEach(stat => { const target = stat.getAttribute('data-count'); const hasPercentage = stat.textContent.includes('%'); let count = 0; const duration = 2000; // 2 seconds const interval = Math.floor(duration / target); const counter = setInterval(() => { count += 1; if (hasPercentage) { stat.textContent = count + '%'; } else { stat.textContent = count + '+'; } if (count >= target) { clearInterval(counter); } }, interval); }); } // Trigger animation when element is in viewport function isInViewport(element) { const rect = element.getBoundingClientRect(); return ( rect.top >= 0 && rect.left >= 0 && rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) && rect.right <= (window.innerWidth || document.documentElement.clientWidth) ); } // Check if stats are in viewport and trigger animation function checkScrollPosition() { if (stats.length > 0 && isInViewport(stats[0])) { animateStats(); window.removeEventListener('scroll', checkScrollPosition); } } // Add scroll event listener window.addEventListener('scroll', checkScrollPosition); // Check on page load as well checkScrollPosition();