Co-curricular Activities

school template activities img 2

Athletics

Our students are passionate about sports and athletics and have the freedom to choose the one they like and wish to take up. We also participate in inter-school, district, state and national level competitions.

In-house Publications

We have several writers who are encouraged to come up with creations that are regularly published in our in-house magazines. We host a book sale every 2 years to promote our writers and their work.

16110
1300

Performing Arts & Music

With professionals on board, we take pride in training our students in art forms like dance, drama, painting and more. We organize exhibitions, concerts and musical events to encourage our students to own their talent and flourish in those fields.

/* Popup Overlay Blackout Frame */ .popup-overlay-aesthetic { position: fixed; inset: 0; background: rgba(18, 18, 20, 0.6); /* Soft dark architectural overlay */ backdrop-filter: blur(8px); /* Modern blur effect */ z-index: 99999; /* Always on top of everything */ display: flex; align-items: center; justify-content: center; padding: 16px; opacity: 0; pointer-events: none; transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1); } /* Active Class triggered by JS */ .popup-overlay-aesthetic.is-active { opacity: 1; pointer-events: auto; } /* Centralizing Wrapper Box */ .popup-box-aesthetic { position: relative; width: 100%; max-width: 500px; transform: translateY(30px) scale(0.95); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); } .popup-overlay-aesthetic.is-active .popup-box-aesthetic { transform: translateY(0) scale(1); } /* Crisp Structural Close Icon Button */ .popup-close-btn { position: absolute; top: -40px; right: 0; background: none; border: none; color: #ffffff; font-size: 36px; line-height: 1; cursor: pointer; transition: transform 0.2s ease, color 0.2s ease; z-index: 4; } .popup-close-btn:hover { color: var(--accent-gold, #f5a623); transform: scale(1.1); } /* Mobile Alignment Fixes */ @media (max-width: 480px) { .popup-close-btn { top: 10px; right: 15px; color: var(--text-main, #121214); /* Moves inside the box if screen is too narrow */ font-size: 30px; } } document.addEventListener("DOMContentLoaded", function () { const popupOverlay = document.getElementById("aca-popup-overlay"); const popupClose = document.getElementById("aca-popup-close"); // 1. Website open hote hi 1.5 seconds ke delay ke baad automatic show hoga setTimeout(function () { if (popupOverlay) { popupOverlay.classList.add("is-active"); document.body.style.overflow = "hidden"; /* User piche scroll na kar paye kab tak popup open hai */ } }, 1500); // 1500 milliseconds = 1.5 Seconds // 2. Cross button click par band hone ke liye if (popupClose) { popupClose.addEventListener("click", function () { popupOverlay.classList.remove("is-active"); document.body.style.overflow = ""; /* Reset scroll structure */ }); } // 3. User agar outer transparent area par click kare tab bhi band ho jaye if (popupOverlay) { popupOverlay.addEventListener("click", function (e) { if (e.target === popupOverlay) { popupOverlay.classList.remove("is-active"); document.body.style.overflow = ""; } }); } });