{"id":93,"date":"2023-12-05T05:49:29","date_gmt":"2023-12-05T05:49:29","guid":{"rendered":"http:\/\/localhost:8080\/novacraft\/?page_id=89"},"modified":"2025-11-04T22:04:03","modified_gmt":"2025-11-04T22:04:03","slug":"school-management-system","status":"publish","type":"page","link":"https:\/\/novacraftsystems.com\/index.php\/school-management-system\/","title":{"rendered":"School Management System"},"content":{"rendered":"\n<!DOCTYPE html><html lang=\"en\"><head><meta charset=\"UTF-8\"><meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"><title>School Management System | Novacraft Systems<\/title><style> :root { --primary-color: #3773fe; --primary-dark: #2a5fd8; --primary-light: #5d8eff; --text-dark: #222; --text-light: #555; --text-lighter: #777; --bg-light: #f8f9fa; --bg-white: #ffffff; --shadow: 0 4px 20px rgba(0, 0, 0, 0.08); --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.12); --border-radius: 12px; --transition: all 0.3s ease; } .school-management-page { font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: var(--text-dark); line-height: 1.6; overflow-x: hidden; } .school-management-page .container { max-width: 1200px; margin: 0 auto; } .school-management-page h1, .school-management-page h2, .school-management-page h3 { font-weight: 700; line-height: 1.2; margin-bottom: 15px; } .school-management-page p { margin-bottom: 15px; color: var(--text-light); } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } @keyframes slideLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } } @keyframes slideRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } } @keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } } .animate-fade-in { opacity: 0; animation: fadeIn 1s ease forwards; } .animate-slide-up { opacity: 0; animation: slideUp 0.8s ease forwards; } .animate-slide-left { opacity: 0; animation: slideLeft 0.8s ease forwards; } .animate-slide-right { opacity: 0; animation: slideRight 0.8s ease forwards; } .animate-float { animation: float 6s ease-in-out infinite; } .section-header { text-align: center; max-width: 800px; margin: 0 auto 60px; } .section-header h2 { font-size: 2.5rem; margin-bottom: 20px; color: var(--text-dark); } .section-header p { font-size: 1.1rem; color: var(--text-light); } .school-hero { padding: 120px 0 80px; background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); position: relative; overflow: hidden; } .school-hero .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; } .hero-content { flex: 1; max-width: 600px; } .hero-badge { display: inline-block; background: rgba(55, 115, 254, 0.1); color: var(--primary-color); padding: 8px 16px; border-radius: 50px; font-size: 0.9rem; font-weight: 600; margin-bottom: 20px; border: 1px solid rgba(55, 115, 254, 0.2); } .hero-content h1 { font-size: 3.2rem; margin-bottom: 20px; color: var(--text-dark); } .gradient-text { background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .hero-content p { font-size: 1.2rem; margin-bottom: 30px; color: var(--text-light); } .hero-actions { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 40px; } .cta-button { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--border-radius); text-decoration: none; font-weight: 600; transition: var(--transition); border: none; cursor: pointer; font-size: 1rem; } .cta-button.primary { background-color: var(--primary-color); color: white; box-shadow: 0 4px 14px rgba(55, 115, 254, 0.4); } .cta-button.primary:hover { background-color: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(55, 115, 254, 0.5); } .cta-button.secondary { background-color: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); } .cta-button.secondary:hover { background-color: rgba(55, 115, 254, 0.05); transform: translateY(-3px); } .hero-stats { display: flex; gap: 40px; } .stat { text-align: center; } .stat .number { display: block; font-size: 2rem; font-weight: 700; color: var(--primary-color); margin-bottom: 5px; } .stat .label { font-size: 0.9rem; color: var(--text-light); font-weight: 500; } .hero-visual { flex: 1; display: flex; justify-content: center; align-items: center; } .school-illustration { width: 500px; height: 400px; position: relative; } .illustration-container { width: 100%; height: 100%; position: relative; } .school-scene { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 300px; height: 200px; background: white; border-radius: var(--border-radius); box-shadow: var(--shadow); display: flex; align-items: center; justify-content: space-around; padding: 20px; } .school-building { width: 80px; height: 60px; background: var(--primary-color); border-radius: 8px; position: relative; } .school-building:before { content: ''; position: absolute; top: 10px; left: 10px; width: 20px; height: 20px; background: white; border-radius: 4px; } .school-building:after { content: ''; position: absolute; top: 10px; right: 10px; width: 20px; height: 20px; background: white; border-radius: 4px; } .classroom { width: 100px; height: 80px; background: #f8f9fa; border-radius: 8px; border: 2px solid #ddd; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 10px; } .classroom-content { text-align: center; } .classroom-item { font-size: 0.7rem; font-weight: 600; color: var(--text-dark); margin: 2px 0; } .floating-elements { position: absolute; width: 100%; height: 100%; } .element { position: absolute; width: 50px; height: 50px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: var(--shadow); animation: float 4s ease-in-out infinite; } .element-1 { top: 10%; left: 10%; animation-delay: 0s; } .element-2 { top: 20%; right: 15%; animation-delay: 1s; } .element-3 { bottom: 30%; left: 5%; animation-delay: 2s; } .element-4 { bottom: 10%; right: 20%; animation-delay: 3s; } .modules-section { padding: 100px 0; background-color: var(--bg-white); } .modules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; } .module-card { background: var(--bg-white); border-radius: var(--border-radius); padding: 40px 30px; box-shadow: var(--shadow); transition: var(--transition); position: relative; overflow: hidden; } .module-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); } .module-card:before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%); } .module-icon { width: 80px; height: 80px; background-color: rgba(55, 115, 254, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; } .module-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--text-dark); } .module-card p { margin-bottom: 20px; color: var(--text-light); } .module-card ul { margin: 0 0 25px 0; padding: 0; list-style: none; } .module-card li { margin-bottom: 8px; padding-left: 20px; position: relative; } .module-card li:before { content: \"\u2713\"; position: absolute; left: 0; color: var(--primary-color); font-weight: bold; } .module-benefits { display: flex; flex-wrap: wrap; gap: 8px; } .benefit-tag { background: rgba(55, 115, 254, 0.1); color: var(--primary-color); padding: 6px 12px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; } .benefits-section { padding: 100px 0; background-color: var(--bg-light); } .benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; } .benefit-item { text-align: center; padding: 40px 30px; background: white; border-radius: var(--border-radius); box-shadow: var(--shadow); transition: var(--transition); } .benefit-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); } .benefit-icon { width: 70px; height: 70px; background-color: rgba(55, 115, 254, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; } .benefit-item h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--text-dark); } .benefit-item p { color: var(--text-light); } .workflow-section { padding: 100px 0; background-color: var(--bg-white); } .workflow-timeline { max-width: 800px; margin: 0 auto; position: relative; } .workflow-timeline:before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: rgba(55, 115, 254, 0.2); transform: translateX(-50%); } .workflow-item { display: flex; margin-bottom: 60px; position: relative; } .workflow-item:nth-child(odd) { flex-direction: row; } .workflow-item:nth-child(even) { flex-direction: row-reverse; } .workflow-number { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1.2rem; flex-shrink: 0; z-index: 2; box-shadow: 0 4px 10px rgba(55, 115, 254, 0.3); } .workflow-content { flex: 1; padding: 0 40px; } .workflow-item:nth-child(odd) .workflow-content { text-align: right; } .workflow-content h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--text-dark); } .workflow-content p { color: var(--text-light); } .testimonials-section { padding: 100px 0; background-color: var(--bg-light); } .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .testimonial-card { background: var(--bg-white); border-radius: var(--border-radius); padding: 40px 30px; box-shadow: var(--shadow); transition: var(--transition); position: relative; } .testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); } .testimonial-content { margin-bottom: 25px; font-style: italic; color: var(--text-light); position: relative; } .testimonial-content:before { content: '\"'; font-size: 4rem; color: rgba(55, 115, 254, 0.1); position: absolute; top: -20px; left: -10px; line-height: 1; } .testimonial-author { display: flex; align-items: center; gap: 15px; } .author-avatar { width: 50px; height: 50px; background: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1.2rem; } .author-info h4 { margin: 0; font-size: 1.1rem; color: var(--text-dark); } .author-info p { margin: 0; font-size: 0.9rem; color: var(--text-light); } .school-cta { padding: 100px 0; background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%); color: white; text-align: center; position: relative; overflow: hidden; } .school-cta:before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url(\"data:image\/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'\/%3E%3C\/svg%3E\"); } .cta-content h2 { color: white; font-size: 2.5rem; margin-bottom: 20px; } .cta-content p { color: rgba(255, 255, 255, 0.9); font-size: 1.2rem; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; } .cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; } .school-cta .cta-button.primary { background-color: white; color: var(--primary-color); } .school-cta .cta-button.primary:hover { background-color: rgba(255, 255, 255, 0.9); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3); } .school-cta .cta-button.secondary { border: 2px solid white; color: white; } .school-cta .cta-button.secondary:hover { background-color: rgba(255, 255, 255, 0.1); transform: translateY(-3px); } @media (max-width: 992px) { .school-hero .container { flex-direction: column; text-align: center; } .hero-content, .hero-visual { flex: none; width: 100%; } .school-illustration { margin-top: 50px; width: 100%; max-width: 500px; } .workflow-timeline:before { left: 30px; } .workflow-item { flex-direction: row !important; } .workflow-item .workflow-content { text-align: left !important; padding-left: 70px; padding-right: 0; } } @media (max-width: 768px) { .hero-content h1 { font-size: 2.5rem; } .section-header h2 { font-size: 2rem; } .modules-grid { grid-template-columns: 1fr; } .hero-stats { flex-direction: column; gap: 30px; } .cta-buttons { flex-direction: column; align-items: center; } .cta-button { width: 100%; max-width: 300px; justify-content: center; } .benefits-grid { grid-template-columns: 1fr; } } @media (max-width: 480px) { .school-hero, .modules-section, .benefits-section, .workflow-section, .testimonials-section, .school-cta { padding: 60px 0; } .hero-content h1 { font-size: 2rem; } .section-header h2 { font-size: 1.8rem; } .module-benefits { justify-content: center; } .school-scene { transform: translate(-50%, -50%) scale(0.8); } } <\/style><\/head><body><div class=\"school-management-page\"><section class=\"school-hero\"><div class=\"container\"><div class=\"hero-content\"><div class=\"hero-badge animate-fade-in\"><span>Transform Education Management<\/span><\/div><h1 class=\"animate-slide-up\" style=\"animation-delay: 0.2s\">Comprehensive <span class=\"gradient-text\">School Management System<\/span><\/h1><p class=\"animate-slide-up\" style=\"animation-delay: 0.4s\">Streamline academic operations, enhance communication, and improve educational outcomes with our all-in-one school management platform designed for modern educational institutions.<\/p><div class=\"hero-actions animate-slide-up\" style=\"animation-delay: 0.6s\"><a href=\"#modules\" class=\"cta-button primary\"><span>Explore Features<\/span><svg width=\"18\" height=\"18\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M5 12H19M19 12L12 5M19 12L12 19\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/><\/svg><\/a><a href=\"#contact\" class=\"cta-button secondary\"><span>Request Demo<\/span><\/a><\/div><div class=\"hero-stats animate-fade-in\" style=\"animation-delay: 0.8s\"><div class=\"stat\"><span class=\"number\">150+<\/span><span class=\"label\">Schools Using Our System<\/span><\/div><div class=\"stat\"><span class=\"number\">95%<\/span><span class=\"label\">Teacher Satisfaction<\/span><\/div><div class=\"stat\"><span class=\"number\">50%<\/span><span class=\"label\">Time Saved on Admin Tasks<\/span><\/div><\/div><\/div><div class=\"hero-visual\"><div class=\"school-illustration animate-float\"><div class=\"illustration-container\"><div class=\"school-scene\"><div class=\"school-building\"><\/div><div class=\"classroom\"><div class=\"classroom-content\"><div class=\"classroom-item\">Grade 7 Science<\/div><div class=\"classroom-item\">Attendance: 28\/30<\/div><div class=\"classroom-item\">Next: Mathematics<\/div><\/div><\/div><\/div><div class=\"floating-elements\"><div class=\"element element-1\">\ud83d\udcda<\/div><div class=\"element element-2\">\ud83d\udcca<\/div><div class=\"element element-3\">\ud83d\udc68\u200d\ud83c\udfeb<\/div><div class=\"element element-4\">\ud83d\udcf1<\/div><\/div><\/div><\/div><\/div><\/div><\/section><section class=\"modules-section\" id=\"modules\"><div class=\"container\"><div class=\"section-header animate-fade-in\"><h2>Comprehensive School Management Modules<\/h2><p>Our system provides all the tools needed to efficiently manage every aspect of your educational institution<\/p><\/div><div class=\"modules-grid\"><div class=\"module-card animate-slide-up\"><div class=\"module-icon\"><svg width=\"48\" height=\"48\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M12 14l9-5-9-5-9 5 9 5z\" stroke=\"#3773fe\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/><path d=\"M12 14l9-5-9-5-9 5 9 5z\" stroke=\"#3773fe\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" transform=\"translate(0 7)\"\/><path d=\"M12 14l9-5-9-5-9 5 9 5z\" stroke=\"#3773fe\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" transform=\"translate(0 14)\"\/><path d=\"M4 10h16\" stroke=\"#3773fe\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/><path d=\"M4 17h16\" stroke=\"#3773fe\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/><\/svg><\/div><h3>Academic Management<\/h3><p>Comprehensive tools for managing curriculum, classes, timetables, and academic progress tracking.<\/p><ul><li>Class and subject management<\/li><li>Timetable scheduling<\/li><li>Lesson planning tools<\/li><li>Curriculum mapping<\/li><li>Academic calendar management<\/li><\/ul><div class=\"module-benefits\"><div class=\"benefit-tag\">Curriculum Management<\/div><div class=\"benefit-tag\">Timetable Scheduling<\/div><div class=\"benefit-tag\">Progress Tracking<\/div><\/div><\/div><div class=\"module-card animate-slide-up\" style=\"animation-delay: 0.1s\"><div class=\"module-icon\"><svg width=\"48\" height=\"48\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M17 21V19C17 17.9391 16.5786 16.9217 15.8284 16.1716C15.0783 15.4214 14.0609 15 13 15H5C3.93913 15 2.92172 15.4214 2.17157 16.1716C1.42143 16.9217 1 17.9391 1 19V21M23 21V19C22.9949 17.9084 22.6979 16.8383 22.145 15.9093C21.5921 14.9803 20.8066 14.2291 19.88 13.74M16 3.13C16.8604 3.35031 17.623 3.85071 18.1676 4.55232C18.7122 5.25392 19.0078 6.11683 19.0078 7.005C19.0078 7.89318 18.7122 8.75608 18.1676 9.45769C17.623 10.1593 16.8604 10.6597 16 10.88M13 7C13 9.20914 11.2091 11 9 11C6.79086 11 5 9.20914 5 7C5 4.79086 6.79086 3 9 3C11.2091 3 13 4.79086 13 7Z\" stroke=\"#3773fe\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/><\/svg><\/div><h3>Student Information System<\/h3><p>Complete student database with profiles, attendance, performance tracking, and behavior management.<\/p><ul><li>Student profiles and demographics<\/li><li>Attendance tracking and reporting<\/li><li>Gradebook and report cards<\/li><li>Behavior and discipline tracking<\/li><li>Health records management<\/li><\/ul><div class=\"module-benefits\"><div class=\"benefit-tag\">Student Profiles<\/div><div class=\"benefit-tag\">Attendance Tracking<\/div><div class=\"benefit-tag\">Performance Analytics<\/div><\/div><\/div><div class=\"module-card animate-slide-up\" style=\"animation-delay: 0.2s\"><div class=\"module-icon\"><svg width=\"48\" height=\"48\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M12 1V23M17 5H9C7.89543 5 7 5.89543 7 7V19C7 20.1046 7.89543 21 9 21H15C16.1046 21 17 20.1046 17 19V7C17 5.89543 16.1046 5 15 5H9Z\" stroke=\"#3773fe\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/><\/svg><\/div><h3>Financial Management<\/h3><p>Streamline fee collection, expense tracking, payroll, and financial reporting for your institution.<\/p><ul><li>Fee structure and collection<\/li><li>Expense tracking and budgeting<\/li><li>Payroll management<\/li><li>Financial reporting<\/li><li>Scholarship and discount management<\/li><\/ul><div class=\"module-benefits\"><div class=\"benefit-tag\">Fee Management<\/div><div class=\"benefit-tag\">Expense Tracking<\/div><div class=\"benefit-tag\">Financial Reporting<\/div><\/div><\/div><div class=\"module-card animate-slide-up\" style=\"animation-delay: 0.3s\"><div class=\"module-icon\"><svg width=\"48\" height=\"48\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15Z\" stroke=\"#3773fe\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/><path d=\"M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z\" stroke=\"#3773fe\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/><\/svg><\/div><h3>Communication Portal<\/h3><p>Facilitate seamless communication between administrators, teachers, students, and parents.<\/p><ul><li>Parent and teacher messaging<\/li><li>Announcements and notifications<\/li><li>Event calendar and reminders<\/li><li>Mobile app for parents and students<\/li><li>Homework and assignment alerts<\/li><\/ul><div class=\"module-benefits\"><div class=\"benefit-tag\">Parent Communication<\/div><div class=\"benefit-tag\">Event Management<\/div><div class=\"benefit-tag\">Mobile Access<\/div><\/div><\/div><div class=\"module-card animate-slide-up\" style=\"animation-delay: 0.4s\"><div class=\"module-icon\"><svg width=\"48\" height=\"48\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M9 12L11 14L15 10M12 3C13.1819 3 14.3522 3.23279 15.4442 3.68508C16.5361 4.13738 17.5282 4.80031 18.364 5.63604C19.1997 6.47177 19.8626 7.46392 20.3149 8.55585C20.7672 9.64778 21 10.8181 21 12C21 13.1819 20.7672 14.3522 20.3149 15.4442C19.8626 16.5361 19.1997 17.5282 18.364 18.364C17.5282 19.1997 16.5361 19.8626 15.4442 20.3149C14.3522 20.7672 13.1819 21 12 21C10.8181 21 9.64778 20.7672 8.55585 20.3149C7.46392 19.8626 6.47177 19.1997 5.63604 18.364C4.80031 17.5282 4.13738 16.5361 3.68508 15.4442C3.23279 14.3522 3 13.1819 3 12C3 9.61305 3.94821 7.32387 5.63604 5.63604C7.32387 3.94821 9.61305 3 12 3Z\" stroke=\"#3773fe\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/><\/svg><\/div><h3>Library Management<\/h3><p>Digital library system for managing books, resources, and tracking borrowing activities.<\/p><ul><li>Digital catalog and inventory<\/li><li>Book issuance and return tracking<\/li><li>Fine calculation and management<\/li><li>Resource reservation system<\/li><li>Reading analytics and reports<\/li><\/ul><div class=\"module-benefits\"><div class=\"benefit-tag\">Digital Catalog<\/div><div class=\"benefit-tag\">Borrowing Management<\/div><div class=\"benefit-tag\">Resource Tracking<\/div><\/div><\/div><div class=\"module-card animate-slide-up\" style=\"animation-delay: 0.5s\"><div class=\"module-icon\"><svg width=\"48\" height=\"48\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M2 12H4M12 2V4M20 12H22M12 20V22M6.34315 6.34315L7.75736 7.75736M17.6569 17.6569L16.2426 16.2426M6.34315 17.6569L7.75736 16.2426M17.6569 6.34315L16.2426 7.75736\" stroke=\"#3773fe\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/><path d=\"M12 16C14.2091 16 16 14.2091 16 12C16 9.79086 14.2091 8 12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16Z\" stroke=\"#3773fe\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/><\/svg><\/div><h3>Examination &#038; Assessment<\/h3><p>Comprehensive tools for creating, administering, and analyzing examinations and assessments.<\/p><ul><li>Exam scheduling and room allocation<\/li><li>Question bank management<\/li><li>Automated grading system<\/li><li>Result analysis and reports<\/li><li>Progress tracking and analytics<\/li><\/ul><div class=\"module-benefits\"><div class=\"benefit-tag\">Exam Management<\/div><div class=\"benefit-tag\">Automated Grading<\/div><div class=\"benefit-tag\">Progress Analytics<\/div><\/div><\/div><\/div><\/div><\/section><section class=\"benefits-section\"><div class=\"container\"><div class=\"section-header animate-fade-in\"><h2>Benefits of Our School Management System<\/h2><p>Discover how our solution transforms educational administration and improves learning outcomes<\/p><\/div><div class=\"benefits-grid\"><div class=\"benefit-item animate-slide-up\"><div class=\"benefit-icon\"><svg width=\"40\" height=\"40\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15Z\" stroke=\"#3773fe\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/><path d=\"M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z\" stroke=\"#3773fe\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/><\/svg><\/div><h3>Increased Efficiency<\/h3><p>Automate administrative tasks, reduce paperwork, and streamline operations across all departments.<\/p><\/div><div class=\"benefit-item animate-slide-up\" style=\"animation-delay: 0.1s\"><div class=\"benefit-icon\"><svg width=\"40\" height=\"40\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M12 1V23M17 5H9C7.89543 5 7 5.89543 7 7V19C7 20.1046 7.89543 21 9 21H15C16.1046 21 17 20.1046 17 19V7C17 5.89543 16.1046 5 15 5H9Z\" stroke=\"#3773fe\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/><\/svg><\/div><h3>Better Financial Control<\/h3><p>Track fees, expenses, and budgets with precision, ensuring financial health and transparency.<\/p><\/div><div class=\"benefit-item animate-slide-up\" style=\"animation-delay: 0.2s\"><div class=\"benefit-icon\"><svg width=\"40\" height=\"40\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M9 12L11 14L15 10M12 3C13.1819 3 14.3522 3.23279 15.4442 3.68508C16.5361 4.13738 17.5282 4.80031 18.364 5.63604C19.1997 6.47177 19.8626 7.46392 20.3149 8.55585C20.7672 9.64778 21 10.8181 21 12C21 13.1819 20.7672 14.3522 20.3149 15.4442C19.8626 16.5361 19.1997 17.5282 18.364 18.364C17.5282 19.1997 16.5361 19.8626 15.4442 20.3149C14.3522 20.7672 13.1819 21 12 21C10.8181 21 9.64778 20.7672 8.55585 20.3149C7.46392 19.8626 6.47177 19.1997 5.63604 18.364C4.80031 17.5282 4.13738 16.5361 3.68508 15.4442C3.23279 14.3522 3 13.1819 3 12C3 9.61305 3.94821 7.32387 5.63604 5.63604C7.32387 3.94821 9.61305 3 12 3Z\" stroke=\"#3773fe\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/><\/svg><\/div><h3>Enhanced Communication<\/h3><p>Connect teachers, parents, and students seamlessly with real-time updates and notifications.<\/p><\/div><div class=\"benefit-item animate-slide-up\" style=\"animation-delay: 0.3s\"><div class=\"benefit-icon\"><svg width=\"40\" height=\"40\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M2 12H4M12 2V4M20 12H22M12 20V22M6.34315 6.34315L7.75736 7.75736M17.6569 17.6569L16.2426 16.2426M6.34315 17.6569L7.75736 16.2426M17.6569 6.34315L16.2426 7.75736\" stroke=\"#3773fe\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/><path d=\"M12 16C14.2091 16 16 14.2091 16 12C16 9.79086 14.2091 8 12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16Z\" stroke=\"#3773fe\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/><\/svg><\/div><h3>Data-Driven Insights<\/h3><p>Make informed decisions with comprehensive analytics on student performance and institutional metrics.<\/p><\/div><\/div><\/div><\/section><section class=\"workflow-section\"><div class=\"container\"><div class=\"section-header animate-fade-in\"><h2>Streamlined School Management Workflow<\/h2><p>Our system transforms complex educational administration into simple, efficient processes<\/p><\/div><div class=\"workflow-timeline\"><div class=\"workflow-item animate-slide-left\"><div class=\"workflow-number\">01<\/div><div class=\"workflow-content\"><h3>Student Admission &#038; Enrollment<\/h3><p>Streamline the entire admission process from application to enrollment with our digital onboarding system.<\/p><\/div><\/div><div class=\"workflow-item animate-slide-right\" style=\"animation-delay: 0.2s\"><div class=\"workflow-number\">02<\/div><div class=\"workflow-content\"><h3>Academic Planning &#038; Scheduling<\/h3><p>Create optimized timetables, assign teachers, and manage curriculum with our intelligent scheduling tools.<\/p><\/div><\/div><div class=\"workflow-item animate-slide-left\" style=\"animation-delay: 0.4s\"><div class=\"workflow-number\">03<\/div><div class=\"workflow-content\"><h3>Teaching &#038; Learning Management<\/h3><p>Facilitate effective teaching with lesson planning, assignment management, and progress tracking features.<\/p><\/div><\/div><div class=\"workflow-item animate-slide-right\" style=\"animation-delay: 0.6s\"><div class=\"workflow-number\">04<\/div><div class=\"workflow-content\"><h3>Assessment &#038; Reporting<\/h3><p>Conduct examinations, generate report cards, and provide comprehensive performance analytics.<\/p><\/div><\/div><\/div><\/div><\/section><section class=\"testimonials-section\"><div class=\"container\"><div class=\"section-header animate-fade-in\"><h2>What School Administrators Say<\/h2><p>Discover how educational institutions are transforming their operations with our system<\/p><\/div><div class=\"testimonials-grid\"><div class=\"testimonial-card animate-slide-up\"><div class=\"testimonial-content\"> &#8220;Implementing Novacraft&#8217;s School Management System has revolutionized how we operate. Administrative tasks that used to take days now happen in hours. The parent communication portal has dramatically improved engagement.&#8221; <\/div><div class=\"testimonial-author\"><div class=\"author-avatar\">DM<\/div><div class=\"author-info\"><h4>Dr. Mary Wanjiku<\/h4><p>Principal, Nairobi High School<\/p><\/div><\/div><\/div><div class=\"testimonial-card animate-slide-up\" style=\"animation-delay: 0.1s\"><div class=\"testimonial-content\"> &#8220;The financial management module has given us complete control over our school&#8217;s finances. We can now track fee collections, manage expenses, and generate financial reports with ease. It&#8217;s been a game-changer for our institution.&#8221; <\/div><div class=\"testimonial-author\"><div class=\"author-avatar\">JO<\/div><div class=\"author-info\"><h4>James Omondi<\/h4><p>Bursar, Mombasa Academy<\/p><\/div><\/div><\/div><div class=\"testimonial-card animate-slide-up\" style=\"animation-delay: 0.2s\"><div class=\"testimonial-content\"> &#8220;As a teacher, the gradebook and attendance features have saved me countless hours. The mobile app keeps parents informed about their children&#8217;s progress, which has improved parent-teacher collaboration significantly.&#8221; <\/div><div class=\"testimonial-author\"><div class=\"author-avatar\">SM<\/div><div class=\"author-info\"><h4>Susan Mwangi<\/h4><p>Head Teacher, Kisumu Primary<\/p><\/div><\/div><\/div><\/div><\/div><\/section><section class=\"school-cta\" id=\"contact\"><div class=\"container\"><div class=\"cta-content animate-fade-in\"><h2>Ready to Transform Your School Management?<\/h2><p>Join hundreds of educational institutions that have streamlined their operations with our comprehensive School Management System.<\/p><div class=\"cta-buttons\"><a href=\"tel:+254700000000\" class=\"cta-button primary\"><span>Schedule a Demo<\/span><svg width=\"18\" height=\"18\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M5 4H9L11 9L8.5 10.5C9.57096 12.6715 11.3285 14.429 13.5 15.5L15 13L20 15V19C20 19.5304 19.7893 20.0391 19.4142 20.4142C19.0391 20.7893 18.5304 21 18 21C14.0993 20.763 10.4202 19.1065 7.65683 16.3432C4.8935 13.5798 3.23705 9.90074 3 6C3 5.46957 3.21071 4.96086 3.58579 4.58579C3.96086 4.21071 4.46957 4 5 4Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/><\/svg><\/a><a href=\"mailto:info@novacraft.com\" class=\"cta-button secondary\"><span>Contact Our Team<\/span><\/a><\/div><\/div><\/div><\/section><\/div><script> document.addEventListener('DOMContentLoaded', function() { const animatedElements = document.querySelectorAll('.animate-slide-up, .animate-slide-left, .animate-slide-right, .animate-fade-in'); const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { entry.target.style.animationPlayState = 'running'; observer.unobserve(entry.target); } }); }, { threshold: 0.1 }); animatedElements.forEach(el => { const rect = el.getBoundingClientRect(); if (rect.top > window.innerHeight) { observer.observe(el); } }); }); <\/script><\/body><\/html>\n","protected":false},"excerpt":{"rendered":"<p>School Management System | Novacraft Systems Transform Education Management Comprehensive School Management System Streamline academic operations, enhance communication, and improve educational outcomes with our all-in-one school management platform designed for modern educational institutions. Explore FeaturesRequest Demo 150+Schools Using Our System 95%Teacher Satisfaction 50%Time Saved on Admin Tasks Grade 7 Science Attendance: 28\/30 Next: Mathematics \ud83d\udcda [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-93","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/novacraftsystems.com\/index.php\/wp-json\/wp\/v2\/pages\/93","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/novacraftsystems.com\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/novacraftsystems.com\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/novacraftsystems.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/novacraftsystems.com\/index.php\/wp-json\/wp\/v2\/comments?post=93"}],"version-history":[{"count":1,"href":"https:\/\/novacraftsystems.com\/index.php\/wp-json\/wp\/v2\/pages\/93\/revisions"}],"predecessor-version":[{"id":892,"href":"https:\/\/novacraftsystems.com\/index.php\/wp-json\/wp\/v2\/pages\/93\/revisions\/892"}],"wp:attachment":[{"href":"https:\/\/novacraftsystems.com\/index.php\/wp-json\/wp\/v2\/media?parent=93"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}