{"id":239018,"date":"2026-01-23T08:41:35","date_gmt":"2026-01-23T08:41:35","guid":{"rendered":"https:\/\/appletechconsultants.com\/2026\/?page_id=239018"},"modified":"2026-04-16T05:09:53","modified_gmt":"2026-04-16T05:09:53","slug":"education","status":"publish","type":"page","link":"https:\/\/appletechconsultants.com\/2026\/education\/","title":{"rendered":"Education"},"content":{"rendered":"<div class=\"et_pb_section_0 et_pb_section et_section_regular et_flex_section\">\n<div class=\"et_pb_row_0 et_pb_row et_flex_row\">\n<div class=\"et_pb_column_0 et_pb_column et_flex_column et_pb_css_mix_blend_mode_passthrough et_flex_column_12_24 et_flex_column_12_24_tablet et_flex_column_24_24_phone\">\n<div class=\"et_pb_text_0 et_pb_text et_pb_bg_layout_light et_animated et_pb_module et_flex_module\"><div class=\"et_pb_text_inner\"><h1 class=\"at-no-padding-bottom\">Education<\/h1>\n<\/div><\/div>\n\n<div class=\"et_pb_text_1 et_pb_text et_pb_bg_layout_light et_animated et_pb_module et_flex_module\"><div class=\"et_pb_text_inner\"><p>From implementing remote learning models to building different learning architectures, we help disrupt the education business domain with full force and gain competitive advantage.<\/p>\n<p>Boring classrooms of schools and universities are being replaced by Massive Open Online Courses (MOOCs) and huge textbooks give their way to mobile devices.<\/p>\n<\/div><\/div>\n<\/div>\n\n<div class=\"et_pb_column_1 et_pb_column et-last-child et_flex_column et_pb_css_mix_blend_mode_passthrough et_flex_column_12_24 et_flex_column_12_24_tablet et_flex_column_24_24_phone\">\n<div class=\"et_pb_code_0 et_pb_code et_animated et_pb_module\"><div class=\"et_pb_code_inner\"><!DOCTYPE html>\n<html lang=\"en\">\n<head>\n<meta charset=\"UTF-8\">\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n<title>Education Learning Platform<\/title>\n<style>\n#edu-banner {\n  --edu-red:       #e8001a;\n  --edu-red-a12:   rgba(232,0,26,0.12);\n  --edu-red-a22:   rgba(232,0,26,0.22);\n  --edu-red-a35:   rgba(232,0,26,0.35);\n  --edu-red-a55:   rgba(232,0,26,0.55);\n  --edu-bg:        #ffffff;\n  --edu-surface:   #ffffff;\n  --edu-text:      #111111;\n  --edu-mono:      'Share Tech Mono', monospace;\n  --edu-sans:      'Rajdhani', sans-serif;\n\n  box-sizing: border-box;\n  font-family: var(--edu-sans);\n  color: var(--edu-text);\n  background: var(--edu-bg);\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  padding: 0px 10px;\n  width: 100%;\n  overflow: hidden;\n  position: relative;\n  line-height: normal;\n}\n\n#edu-banner .edu-scene {\n  position: relative;\n  width: 760px;\n  max-width: 100%;\n  height: 400px;\n  flex-shrink: 0;\n  box-shadow: 0px 0px 5px 1px rgba(249, 14, 19, 0.05);\n    margin: 10px 0;\n}\n\n#edu-banner #edu-canvas {\n  position: absolute;\n  inset: 0;\n  width: 100%;\n  height: 100%;\n  border-radius: 6px;\n  display: block;\n}\n\n#edu-banner .edu-card {\n  position: absolute;\n  inset: 0;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  gap: 14px;\n  opacity: 0;\n  transition: opacity 0.5s ease;\n  pointer-events: none;\n}\n#edu-banner .edu-card.edu-active { opacity: 1; }\n\n#edu-banner .edu-icon-wrap {\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  gap: 28px;\n  filter: drop-shadow(0 2px 8px rgba(232,0,26,0.15));\n}\n#edu-banner .edu-icon-wrap.edu-top { align-items: flex-start; }\n\n#edu-banner .edu-card-label {\n  font-family: var(--edu-mono);\n  font-size: 10px;\n  letter-spacing: 4px;\n  text-transform: uppercase;\n  color: var(--edu-red);\n  line-height: 1.4;\n}\n#edu-banner .edu-card-title {\n  font-family: var(--edu-sans);\n  font-size: 20px;\n  font-weight: 700;\n  letter-spacing: 1px;\n  color: var(--edu-text);\n  line-height: 1.2;\n}\n\n@keyframes edu-build-in {\n  from { stroke-dashoffset: var(--dash-len); opacity: 0; }\n  to   { stroke-dashoffset: 0; opacity: 1; }\n}\n@keyframes edu-blink {\n  0%,100% { opacity:1; } 50% { opacity:0.3; }\n}\n@keyframes edu-float {\n  0%,100% { transform: rotateX(16deg) rotateY(-8deg) translateY(0px); }\n  50%      { transform: rotateX(16deg) rotateY(-8deg) translateY(-7px); }\n}\n@keyframes edu-bubble-in {\n  from { opacity:0; transform:scale(0.88) translateY(4px); }\n  to   { opacity:1; transform:scale(1) translateY(0); }\n}\n@keyframes edu-cursor {\n  0%,100%{ opacity:1; } 50%{ opacity:0; }\n}\n\n#edu-banner .edu-status-bar {\n  position: absolute;\n  bottom: 0; left: 0; right: 0;\n  height: 26px;\n  background: rgba(232,0,26,0.04);\n  border-top: 1px solid rgba(232,0,26,0.1);\n  display: flex;\n  align-items: center;\n  padding: 0 12px;\n  font-family: var(--edu-mono);\n  font-size: 9.5px;\n  color: var(--edu-red-a55);\n  gap: 8px;\n  border-radius: 0 0 6px 6px;\n  line-height: 1;\n}\n#edu-banner .edu-sdot {\n  width: 5px; height: 5px; border-radius: 50%;\n  background: var(--edu-red);\n  animation: edu-blink 1s infinite;\n  flex-shrink: 0;\n}\n\n#edu-banner .edu-progress {\n  position: absolute;\n  bottom: 26px; left: 0;\n  height: 2px;\n  background: var(--edu-red);\n  box-shadow: 0 0 6px rgba(232,0,26,0.35);\n  transition: width 1.9s linear;\n  width: 0%;\n}\n\n#edu-banner .edu-chat-wrap {\n  perspective: 600px;\n}\n#edu-banner .edu-chat-box {\n  width: 260px;\n  background: #ffffff;\n  border: 1.5px solid var(--edu-red-a22);\n  border-radius: 12px;\n  padding: 13px;\n  box-shadow: 4px 8px 0 rgba(232,0,26,0.08), 8px 16px 0 rgba(232,0,26,0.05), 0 24px 40px rgba(232,0,26,0.08);\n  transform: rotateX(16deg) rotateY(-8deg);\n  animation: edu-float 3.2s ease-in-out infinite;\n}\n#edu-banner .edu-ch-head {\n  display: flex; align-items: center; gap: 8px;\n  padding-bottom: 9px;\n  border-bottom: 1px solid rgba(232,0,26,0.1);\n  margin-bottom: 9px;\n}\n#edu-banner .edu-ch-av {\n  width: 28px; height: 28px; border-radius: 50%;\n  background: linear-gradient(135deg, #e8001a, #ff6b6b);\n  display: flex; align-items: center; justify-content: center;\n  font-size: 12px; color: #fff; font-weight: 700;\n  flex-shrink: 0;\n}\n#edu-banner .edu-ch-name {\n  font-family: var(--edu-mono); font-size: 8.5px;\n  color: var(--edu-red); letter-spacing: 2px;\n}\n#edu-banner .edu-ch-sub {\n  font-family: var(--edu-mono); font-size: 6.5px; color: #888;\n}\n#edu-banner .edu-ch-live {\n  width: 6px; height: 6px; border-radius: 50%;\n  background: #00c853; margin-left: auto;\n  animation: edu-blink 2s infinite;\n}\n#edu-banner .edu-bbl {\n  border-radius: 10px;\n  padding: 6px 9px;\n  font-family: var(--edu-mono);\n  font-size: 8.5px;\n  margin-bottom: 5px;\n  line-height: 1.45;\n  display: block;\n}\n#edu-banner .edu-bbl.edu-user {\n  background: rgba(232,0,26,0.07);\n  color: #333; text-align: right;\n  margin-left: 24px;\n  border-bottom-right-radius: 2px;\n}\n#edu-banner .edu-bbl.edu-ai {\n  background: rgba(232,0,26,0.05);\n  color: #111;\n  border: 1px solid rgba(232,0,26,0.1);\n  margin-right: 24px;\n  border-bottom-left-radius: 2px;\n}\n#edu-banner .edu-bbl.edu-typing {\n  display: flex !important;\n  gap: 4px; align-items: center; padding: 10px;\n  margin-right: 24px;\n  border-bottom-left-radius: 2px;\n}\n#edu-banner .edu-tdot {\n  width: 5px; height: 5px; border-radius: 50%;\n  background: var(--edu-red);\n  animation: edu-blink 1.2s infinite;\n  display: inline-block;\n}\n#edu-banner .edu-tdot:nth-child(2) { animation-delay: .2s; }\n#edu-banner .edu-tdot:nth-child(3) { animation-delay: .4s; }\n#edu-banner .edu-ch-inp {\n  display: flex; align-items: center; gap: 6px;\n  border: 1px solid rgba(232,0,26,0.18);\n  border-radius: 6px; padding: 5px 8px; margin-top: 5px;\n  font-family: var(--edu-mono); font-size: 8px; color: #aaa;\n}\n#edu-banner .edu-ch-inp .edu-cur {\n  animation: edu-cursor 1s infinite;\n  color: var(--edu-red);\n}\n\n#edu-banner svg text {\n  font-family: 'Share Tech Mono', monospace;\n}\n\n@media (max-width: 800px) {\n  #edu-banner .edu-scene {\n    \/* height: 340px; *\/\n    width: 100%;\n  }\n}\n\n.animation_svg_card_0_1 {width:220px; height:auto;}\n.animation_svg_card_0_2 {width:180px; height:auto;}\n.animation_svg_card_1_2 {width:120px; height:auto;}\n.animation_svg_card_2, .animation_svg_card_3 {width:320px; height:auto;}\n.animation_svg_card_4_1, .animation_svg_card_4_2 {width:180px; height:auto;}\n\n@media (min-width:501px) and (max-width:1100px) {\n  .animation_svg_card_0_1 {width:180px;}\n  .animation_svg_card_0_2 {width:150px;}\n  #edu-banner .edu-chat-box {width:200px;height:225px;}\n  .animation_svg_card_1_2 {width:120px;}\n  .animation_svg_card_2, .animation_svg_card_3 {width:320px;}\n  .animation_svg_card_4_1, .animation_svg_card_4_2 {width:160px;}\n}\n\n@media (max-width:500px) {\n  .animation_svg_card_0_1, .animation_svg_card_0_2 {width:33vw;}\n  #edu-banner .edu-chat-box {width:140px;height:200px;}\n  #edu-banner .edu-bbl.edu-ai, #edu-banner .edu-bbl.edu-user {font-size:5px;}\n  .animation_svg_card_1_2 {width:70px;}\n  .animation_svg_card_2, .animation_svg_card_3 {width:70vw;}\n  .animation_svg_card_4_1, .animation_svg_card_4_2 {width:30vw;}\n  #edu-banner .edu-scene {\n    \/* height: 340px; *\/\n    width: 100%;\n  }\n  #edu-banner .edu-card-title {font-size:3vw;}\n}\n\n<\/style>\n<\/head>\n<body>\n\n<div id=\"edu-banner\">\n  <div class=\"edu-scene\">\n    <canvas id=\"edu-canvas\" width=\"760\" height=\"400\"><\/canvas>\n    <div class=\"edu-progress\" id=\"edu-progress\"><\/div>\n\n    <!-- CARD 0: Lesson Grid -->\n    <div class=\"edu-card\" id=\"edu-card-0\">\n      <div class=\"edu-card-label\">\u2014 Interactive Hub<\/div>\n      <div class=\"edu-card-title\">Live Lesson Sessions<\/div>\n      <div class=\"edu-icon-wrap\">\n        <svg class=\"animation_svg_card_0_1\" viewBox=\"0 0 220 160\" fill=\"none\">\n          <rect class=\"edu-build\" x=\"10\" y=\"10\" width=\"200\" height=\"140\" rx=\"8\" stroke=\"#e8001a\" stroke-width=\"2\" style=\"--dash-len:680\"\/>\n          <rect x=\"18\" y=\"18\" width=\"50\" height=\"50\" rx=\"4\" fill=\"rgba(232,0,26,0.08)\" stroke=\"#e8001a\" stroke-width=\"1.5\" class=\"edu-build\" style=\"--dash-len:196;animation-delay:0.1s\"\/>\n          <circle cx=\"43\" cy=\"43\" r=\"12\" fill=\"rgba(232,0,26,0.25)\" class=\"edu-build\" style=\"--dash-len:80;animation-delay:0.2s\"\/>\n          <text x=\"18\" y=\"78\" fill=\"#e8001a\" font-size=\"6.5\" font-family=\"Share Tech Mono\">MATH<\/text>\n          <rect x=\"80\" y=\"18\" width=\"50\" height=\"50\" rx=\"4\" fill=\"rgba(232,0,26,0.08)\" stroke=\"#e8001a\" stroke-width=\"1.5\" class=\"edu-build\" style=\"--dash-len:196;animation-delay:0.15s\"\/>\n          <path d=\"M95 30 L105 30 L105 56 L95 56 Z M100 33 L100 40 M97 40 L103 40\" stroke=\"#e8001a\" stroke-width=\"1.5\" fill=\"none\" class=\"edu-build\" style=\"--dash-len:60;animation-delay:0.25s\"\/>\n          <text x=\"80\" y=\"78\" fill=\"#e8001a\" font-size=\"6.5\" font-family=\"Share Tech Mono\">SCIENCE<\/text>\n          <rect x=\"142\" y=\"18\" width=\"50\" height=\"50\" rx=\"4\" fill=\"rgba(232,0,26,0.08)\" stroke=\"#e8001a\" stroke-width=\"1.5\" class=\"edu-build\" style=\"--dash-len:196;animation-delay:0.2s\"\/>\n          <text x=\"155\" y=\"40\" fill=\"#e8001a\" font-size=\"20\" font-family=\"Share Tech Mono\">\u03a3<\/text>\n          <text x=\"142\" y=\"78\" fill=\"#e8001a\" font-size=\"6.5\" font-family=\"Share Tech Mono\">STATS<\/text>\n          <rect x=\"18\" y=\"100\" width=\"174\" height=\"40\" rx=\"4\" fill=\"rgba(232,0,26,0.03)\" stroke=\"rgba(232,0,26,0.2)\" stroke-width=\"1\" class=\"edu-build\" style=\"--dash-len:428;animation-delay:0.3s\"\/>\n          <text x=\"28\" y=\"115\" fill=\"#e8001a\" font-size=\"7\" font-family=\"Share Tech Mono\">LEVEL: 70%<\/text>\n          <rect x=\"28\" y=\"120\" width=\"150\" height=\"8\" rx=\"4\" fill=\"rgba(232,0,26,0.1)\" class=\"edu-build\" style=\"--dash-len:300;animation-delay:0.35s\"\/>\n          <rect x=\"28\" y=\"120\" width=\"105\" height=\"8\" rx=\"4\" fill=\"#e8001a\" class=\"edu-build\" style=\"--dash-len:210;animation-delay:0.4s\"\/>\n        <\/svg>\n        <svg class=\"animation_svg_card_0_2\" viewBox=\"0 0 180 160\" fill=\"none\">\n          <rect class=\"edu-build\" x=\"8\" y=\"8\" width=\"164\" height=\"144\" rx=\"6\" stroke=\"#e8001a\" stroke-width=\"2\" fill=\"rgba(232,0,26,0.02)\" style=\"--dash-len:616\"\/>\n          <circle cx=\"90\" cy=\"40\" r=\"18\" fill=\"rgba(232,0,26,0.12)\" stroke=\"#e8001a\" stroke-width=\"2\" class=\"edu-build\" style=\"--dash-len:120;animation-delay:0.15s\"\/>\n          <text x=\"85\" y=\"45\" fill=\"#e8001a\" font-size=\"16\" font-family=\"Share Tech Mono\">\ud83d\udc64<\/text>\n          <text x=\"20\" y=\"72\" fill=\"#e8001a\" font-size=\"7\" font-family=\"Share Tech Mono\">STUDENT ID<\/text>\n          <text x=\"20\" y=\"81\" fill=\"#111\" font-size=\"8\" font-family=\"Share Tech Mono\" class=\"edu-build\" style=\"--dash-len:80;animation-delay:0.25s\">EDU-2024-0156<\/text>\n          <line x1=\"20\" y1=\"88\" x2=\"160\" y2=\"88\" stroke=\"rgba(232,0,26,0.15)\" stroke-width=\"0.8\" class=\"edu-build\" style=\"--dash-len:140;animation-delay:0.3s\"\/>\n          <text x=\"20\" y=\"105\" fill=\"#e8001a\" font-size=\"6\" font-family=\"Share Tech Mono\">ACHIEVEMENTS<\/text>\n          <circle cx=\"30\" cy=\"120\" r=\"6\" fill=\"rgba(232,0,26,0.3)\" stroke=\"#e8001a\" stroke-width=\"1\" class=\"edu-build\" style=\"--dash-len:40;animation-delay:0.35s\"\/>\n          <circle cx=\"50\" cy=\"120\" r=\"6\" fill=\"rgba(232,0,26,0.3)\" stroke=\"#e8001a\" stroke-width=\"1\" class=\"edu-build\" style=\"--dash-len:40;animation-delay:0.4s\"\/>\n          <circle cx=\"70\" cy=\"120\" r=\"6\" fill=\"rgba(232,0,26,0.3)\" stroke=\"#e8001a\" stroke-width=\"1\" class=\"edu-build\" style=\"--dash-len:40;animation-delay:0.45s\"\/>\n          <text x=\"20\" y=\"145\" fill=\"rgba(232,0,26,0.5)\" font-size=\"6\" font-family=\"Share Tech Mono\">STREAK: 12 DAYS<\/text>\n        <\/svg>\n      <\/div>\n    <\/div>\n\n    <!-- CARD 1: AI Tutor Chat -->\n    <div class=\"edu-card\" id=\"edu-card-1\">\n      <div class=\"edu-card-label\">\u2014 Adaptive Learning<\/div>\n      <div class=\"edu-card-title\">Smart Question-Answer System<\/div>\n      <div class=\"edu-icon-wrap edu-top\" style=\"gap:22px\">\n        <div class=\"edu-chat-wrap\">\n          <div class=\"edu-chat-box\">\n            <div class=\"edu-ch-head\">\n              <div class=\"edu-ch-av\">AI<\/div>\n              <div>\n                <div class=\"edu-ch-name\">SMART TUTOR<\/div>\n                <div class=\"edu-ch-sub\">adaptive \u00b7 interactive<\/div>\n              <\/div>\n              <div class=\"edu-ch-live\"><\/div>\n            <\/div>\n            <div class=\"edu-bbl edu-user\" id=\"edu-b1\" style=\"opacity:0\">What's photosynthesis?<\/div>\n            <div class=\"edu-bbl edu-ai\" id=\"edu-b2\" style=\"opacity:0\">Plants convert light to chemical energy...<\/div>\n            <div class=\"edu-bbl edu-user\" id=\"edu-b3\" style=\"opacity:0\">Explain simply<\/div>\n            <div class=\"edu-bbl edu-typing\" id=\"edu-b4\" style=\"opacity:0\">\n              <div class=\"edu-tdot\"><\/div>\n              <div class=\"edu-tdot\"><\/div>\n              <div class=\"edu-tdot\"><\/div>\n            <\/div>\n            <div class=\"edu-ch-inp\">\n              <span style=\"flex:1;color:#ccc\">Ask me anything...<\/span>\n              <span class=\"edu-cur\">|<\/span>\n            <\/div>\n          <\/div>\n        <\/div>\n        <svg class=\"animation_svg_card_1_2\" viewBox=\"0 0 120 200\" fill=\"none\">\n          <rect class=\"edu-build\" x=\"4\" y=\"8\" width=\"112\" height=\"50\" rx=\"4\" fill=\"rgba(232,0,26,0.04)\" stroke=\"#e8001a\" stroke-width=\"1.5\" style=\"--dash-len:340\"\/>\n          <text x=\"12\" y=\"22\" fill=\"#e8001a\" font-size=\"8\" font-family=\"Share Tech Mono\">QUESTION TYPE<\/text>\n          <circle cx=\"20\" cy=\"42\" r=\"4\" fill=\"#e8001a\" class=\"edu-build\" style=\"--dash-len:28;animation-delay:0.25s\"\/>\n          <text x=\"28\" y=\"45\" fill=\"#111\" font-size=\"6\" font-family=\"Share Tech Mono\">Multiple Choice<\/text>\n          <rect class=\"edu-build\" x=\"4\" y=\"65\" width=\"112\" height=\"50\" rx=\"4\" fill=\"rgba(232,0,26,0.04)\" stroke=\"#e8001a\" stroke-width=\"1.5\" style=\"--dash-len:340;animation-delay:0.1s\"\/>\n          <text x=\"12\" y=\"79\" fill=\"#e8001a\" font-size=\"8\" font-family=\"Share Tech Mono\">DIFFICULTY<\/text>\n          <rect x=\"12\" y=\"92\" width=\"84\" height=\"6\" rx=\"3\" fill=\"rgba(232,0,26,0.1)\" class=\"edu-build\" style=\"--dash-len:180;animation-delay:0.35s\"\/>\n          <rect x=\"12\" y=\"92\" width=\"48\" height=\"6\" rx=\"3\" fill=\"#e8001a\" class=\"edu-build\" style=\"--dash-len:96;animation-delay:0.4s\"\/>\n          <text x=\"100\" y=\"97\" fill=\"#e8001a\" font-size=\"6\" font-family=\"Share Tech Mono\">M<\/text>\n          <rect class=\"edu-build\" x=\"4\" y=\"122\" width=\"112\" height=\"50\" rx=\"4\" fill=\"rgba(232,0,26,0.04)\" stroke=\"#e8001a\" stroke-width=\"1.5\" style=\"--dash-len:340;animation-delay:0.2s\"\/>\n          <text x=\"12\" y=\"136\" fill=\"#e8001a\" font-size=\"8\" font-family=\"Share Tech Mono\">YOUR ANSWER<\/text>\n          <rect x=\"16\" y=\"150\" width=\"88\" height=\"10\" rx=\"3\" fill=\"rgba(232,0,26,0.08)\" class=\"edu-build\" style=\"--dash-len:196;animation-delay:0.45s\"\/>\n          <text x=\"20\" y=\"158\" fill=\"rgba(232,0,26,0.6)\" font-size=\"6\" font-family=\"Share Tech Mono\">B) Correct! +10pts<\/text>\n        <\/svg>\n      <\/div>\n    <\/div>\n\n    <!-- CARD 2: Performance Tracker -->\n    <div class=\"edu-card\" id=\"edu-card-2\">\n      <div class=\"edu-card-label\">\u2014 Performance Hub<\/div>\n      <div class=\"edu-card-title\">Real-Time Learning Analytics<\/div>\n      <div class=\"edu-icon-wrap\">\n        <svg class=\"animation_svg_card_2\" viewBox=\"0 0 320 176\" fill=\"none\">\n          <rect class=\"edu-build\" x=\"6\" y=\"10\" width=\"95\" height=\"150\" rx=\"4\" fill=\"rgba(232,0,26,0.03)\" stroke=\"#e8001a\" stroke-width=\"2\" style=\"--dash-len:510\"\/>\n          <text x=\"14\" y=\"28\" fill=\"#e8001a\" font-size=\"7.5\" font-family=\"Share Tech Mono\">TIME SPENT<\/text>\n          <polyline points=\"16,135 24,125 32,130 40,115 48,120 56,105 64,110 72,95 80,100\" stroke=\"#e8001a\" stroke-width=\"2\" fill=\"none\" class=\"edu-build\" style=\"--dash-len:200;animation-delay:0.3s\"\/>\n          <circle cx=\"16\" cy=\"135\" r=\"2.5\" fill=\"#e8001a\" class=\"edu-build\" style=\"--dash-len:20;animation-delay:0.4s\"\/>\n          <circle cx=\"80\" cy=\"100\" r=\"2.5\" fill=\"#e8001a\" class=\"edu-build\" style=\"--dash-len:20;animation-delay:0.5s\"\/>\n          <text x=\"14\" y=\"153\" fill=\"rgba(232,0,26,0.5)\" font-size=\"6\" font-family=\"Share Tech Mono\">Hours<\/text>\n          <g class=\"edu-build\" style=\"--dash-len:200;animation-delay:0.35s\">\n            <circle cx=\"170\" cy=\"85\" r=\"35\" fill=\"none\" stroke=\"rgba(232,0,26,0.15)\" stroke-width=\"1\"\/>\n            <circle cx=\"170\" cy=\"85\" r=\"25\" fill=\"none\" stroke=\"rgba(232,0,26,0.25)\" stroke-width=\"1\"\/>\n            <line x1=\"170\" y1=\"50\" x2=\"170\" y2=\"120\" stroke=\"rgba(232,0,26,0.1)\" stroke-width=\"0.8\"\/>\n            <line x1=\"135\" y1=\"85\" x2=\"205\" y2=\"85\" stroke=\"rgba(232,0,26,0.1)\" stroke-width=\"0.8\"\/>\n            <circle cx=\"170\" cy=\"55\" r=\"3.5\" fill=\"#e8001a\" class=\"edu-build\" style=\"--dash-len:25;animation-delay:0.5s\"\/>\n            <circle cx=\"195\" cy=\"100\" r=\"3\" fill=\"rgba(232,0,26,0.5)\" class=\"edu-build\" style=\"--dash-len:20;animation-delay:0.55s\"\/>\n            <circle cx=\"145\" cy=\"100\" r=\"3\" fill=\"rgba(232,0,26,0.4)\" class=\"edu-build\" style=\"--dash-len:20;animation-delay:0.6s\"\/>\n            <text x=\"165\" y=\"42\" fill=\"#e8001a\" font-size=\"5.5\" font-family=\"Share Tech Mono\">MATH<\/text>\n            <text x=\"198\" y=\"105\" fill=\"#e8001a\" font-size=\"5.5\" font-family=\"Share Tech Mono\">SCIENCE<\/text>\n            <text x=\"128\" y=\"105\" fill=\"#e8001a\" font-size=\"5.5\" font-family=\"Share Tech Mono\">ENGLISH<\/text>\n          <\/g>\n          <text x=\"155\" y=\"88\" fill=\"#e8001a\" font-size=\"7\" font-family=\"Share Tech Mono\">FOCUS<\/text>\n          <rect class=\"edu-build\" x=\"218\" y=\"10\" width=\"96\" height=\"150\" rx=\"4\" fill=\"rgba(232,0,26,0.03)\" stroke=\"#e8001a\" stroke-width=\"2\" style=\"--dash-len:510;animation-delay:0.15s\"\/>\n          <text x=\"226\" y=\"28\" fill=\"#e8001a\" font-size=\"7.5\" font-family=\"Share Tech Mono\">SKILL LEVEL<\/text>\n          <text x=\"226\" y=\"52\" fill=\"#e8001a\" font-size=\"6\" font-family=\"Share Tech Mono\">READING<\/text>\n          <rect x=\"226\" y=\"56\" width=\"80\" height=\"5\" rx=\"2\" fill=\"rgba(232,0,26,0.1)\" class=\"edu-build\" style=\"--dash-len:160;animation-delay:0.25s\"\/>\n          <rect x=\"226\" y=\"56\" width=\"56\" height=\"5\" rx=\"2\" fill=\"#e8001a\" class=\"edu-build\" style=\"--dash-len:112;animation-delay:0.3s\"\/>\n          <text x=\"310\" y=\"60\" fill=\"#e8001a\" font-size=\"5\" font-family=\"Share Tech Mono\">70%<\/text>\n          <text x=\"226\" y=\"78\" fill=\"#e8001a\" font-size=\"6\" font-family=\"Share Tech Mono\">WRITING<\/text>\n          <rect x=\"226\" y=\"82\" width=\"80\" height=\"5\" rx=\"2\" fill=\"rgba(232,0,26,0.1)\" class=\"edu-build\" style=\"--dash-len:160;animation-delay:0.35s\"\/>\n          <rect x=\"226\" y=\"82\" width=\"72\" height=\"5\" rx=\"2\" fill=\"#e8001a\" class=\"edu-build\" style=\"--dash-len:144;animation-delay:0.4s\"\/>\n          <text x=\"310\" y=\"86\" fill=\"#e8001a\" font-size=\"5\" font-family=\"Share Tech Mono\">90%<\/text>\n          <text x=\"226\" y=\"104\" fill=\"#e8001a\" font-size=\"6\" font-family=\"Share Tech Mono\">LOGIC<\/text>\n          <rect x=\"226\" y=\"108\" width=\"80\" height=\"5\" rx=\"2\" fill=\"rgba(232,0,26,0.1)\" class=\"edu-build\" style=\"--dash-len:160;animation-delay:0.45s\"\/>\n          <rect x=\"226\" y=\"108\" width=\"48\" height=\"5\" rx=\"2\" fill=\"#e8001a\" class=\"edu-build\" style=\"--dash-len:96;animation-delay:0.5s\"\/>\n          <text x=\"310\" y=\"112\" fill=\"#e8001a\" font-size=\"5\" font-family=\"Share Tech Mono\">60%<\/text>\n          <text x=\"226\" y=\"130\" fill=\"#e8001a\" font-size=\"6\" font-family=\"Share Tech Mono\">SPEED<\/text>\n          <rect x=\"226\" y=\"134\" width=\"80\" height=\"5\" rx=\"2\" fill=\"rgba(232,0,26,0.1)\" class=\"edu-build\" style=\"--dash-len:160;animation-delay:0.55s\"\/>\n          <rect x=\"226\" y=\"134\" width=\"64\" height=\"5\" rx=\"2\" fill=\"#e8001a\" class=\"edu-build\" style=\"--dash-len:128;animation-delay:0.6s\"\/>\n          <text x=\"310\" y=\"138\" fill=\"#e8001a\" font-size=\"5\" font-family=\"Share Tech Mono\">80%<\/text>\n        <\/svg>\n      <\/div>\n    <\/div>\n\n    <!-- CARD 3: Course Library -->\n    <div class=\"edu-card\" id=\"edu-card-3\">\n      <div class=\"edu-card-label\">\u2014 Content Library<\/div>\n      <div class=\"edu-card-title\">Interactive Course Modules<\/div>\n      <div class=\"edu-icon-wrap\">\n        <svg class=\"animation_svg_card_3\" viewBox=\"0 0 350 162\" fill=\"none\">\n          <rect class=\"edu-build\" x=\"8\" y=\"20\" width=\"80\" height=\"120\" rx=\"5\" fill=\"rgba(232,0,26,0.04)\" stroke=\"#e8001a\" stroke-width=\"2\" style=\"--dash-len:440\"\/>\n          <text x=\"16\" y=\"40\" fill=\"#e8001a\" font-size=\"8\" font-family=\"Share Tech Mono\">VIDEO<\/text>\n          <text x=\"16\" y=\"48\" fill=\"#e8001a\" font-size=\"8\" font-family=\"Share Tech Mono\">LESSONS<\/text>\n          <rect x=\"20\" y=\"58\" width=\"64\" height=\"8\" rx=\"3\" fill=\"rgba(232,0,26,0.1)\" class=\"edu-build\" style=\"--dash-len:150;animation-delay:0.15s\"\/>\n          <rect x=\"20\" y=\"58\" width=\"44\" height=\"8\" rx=\"3\" fill=\"#e8001a\" class=\"edu-build\" style=\"--dash-len:100;animation-delay:0.2s\"\/>\n          <text x=\"20\" y=\"80\" fill=\"rgba(232,0,26,0.6)\" font-size=\"6\" font-family=\"Share Tech Mono\">12 Videos<\/text>\n          <text x=\"20\" y=\"88\" fill=\"rgba(232,0,26,0.4)\" font-size=\"5\" font-family=\"Share Tech Mono\">4.5 hrs total<\/text>\n          <circle cx=\"52\" cy=\"110\" r=\"5\" fill=\"rgba(232,0,26,0.3)\" stroke=\"#e8001a\" stroke-width=\"1.5\" class=\"edu-build\" style=\"--dash-len:35;animation-delay:0.3s\"\/>\n          <text x=\"50\" y=\"113\" fill=\"#e8001a\" font-size=\"6\" font-family=\"Share Tech Mono\">\u25b6<\/text>\n          \n          <rect class=\"edu-build\" x=\"100\" y=\"20\" width=\"80\" height=\"120\" rx=\"5\" fill=\"rgba(232,0,26,0.04)\" stroke=\"#e8001a\" stroke-width=\"2\" style=\"--dash-len:440;animation-delay:0.08s\"\/>\n          <text x=\"108\" y=\"40\" fill=\"#e8001a\" font-size=\"8\" font-family=\"Share Tech Mono\">PRACTICE<\/text>\n          <text x=\"108\" y=\"48\" fill=\"#e8001a\" font-size=\"8\" font-family=\"Share Tech Mono\">TESTS<\/text>\n          <rect x=\"112\" y=\"58\" width=\"64\" height=\"8\" rx=\"3\" fill=\"rgba(232,0,26,0.1)\" class=\"edu-build\" style=\"--dash-len:150;animation-delay:0.25s\"\/>\n          <rect x=\"112\" y=\"58\" width=\"52\" height=\"8\" rx=\"3\" fill=\"#e8001a\" class=\"edu-build\" style=\"--dash-len:120;animation-delay:0.3s\"\/>\n          <text x=\"112\" y=\"80\" fill=\"rgba(232,0,26,0.6)\" font-size=\"6\" font-family=\"Share Tech Mono\">8 Tests<\/text>\n          <text x=\"112\" y=\"88\" fill=\"rgba(232,0,26,0.4)\" font-size=\"5\" font-family=\"Share Tech Mono\">Score: 85%<\/text>\n          <circle cx=\"144\" cy=\"110\" r=\"5\" fill=\"rgba(232,0,26,0.3)\" stroke=\"#e8001a\" stroke-width=\"1.5\" class=\"edu-build\" style=\"--dash-len:35;animation-delay:0.4s\"\/>\n          <text x=\"141\" y=\"113\" fill=\"#e8001a\" font-size=\"7\" font-family=\"Share Tech Mono\">\u2713<\/text>\n          \n          <rect class=\"edu-build\" x=\"192\" y=\"20\" width=\"80\" height=\"120\" rx=\"5\" fill=\"rgba(232,0,26,0.04)\" stroke=\"#e8001a\" stroke-width=\"2\" style=\"--dash-len:440;animation-delay:0.16s\"\/>\n          <text x=\"200\" y=\"40\" fill=\"#e8001a\" font-size=\"8\" font-family=\"Share Tech Mono\">READING<\/text>\n          <text x=\"200\" y=\"48\" fill=\"#e8001a\" font-size=\"8\" font-family=\"Share Tech Mono\">MATERIALS<\/text>\n          <rect x=\"204\" y=\"58\" width=\"64\" height=\"8\" rx=\"3\" fill=\"rgba(232,0,26,0.1)\" class=\"edu-build\" style=\"--dash-len:150;animation-delay:0.35s\"\/>\n          <rect x=\"204\" y=\"58\" width=\"32\" height=\"8\" rx=\"3\" fill=\"#e8001a\" class=\"edu-build\" style=\"--dash-len:70;animation-delay:0.4s\"\/>\n          <text x=\"204\" y=\"80\" fill=\"rgba(232,0,26,0.6)\" font-size=\"6\" font-family=\"Share Tech Mono\">24 Pages<\/text>\n          <text x=\"204\" y=\"88\" fill=\"rgba(232,0,26,0.4)\" font-size=\"5\" font-family=\"Share Tech Mono\">10 Completed<\/text>\n          <rect x=\"224\" y=\"105\" width=\"32\" height=\"12\" rx=\"4\" fill=\"rgba(232,0,26,0.12)\" stroke=\"#e8001a\" stroke-width=\"1\" class=\"edu-build\" style=\"--dash-len:88;animation-delay:0.45s\"\/>\n          <text x=\"228\" y=\"114\" fill=\"#e8001a\" font-size=\"6\" font-family=\"Share Tech Mono\">Download<\/text>\n          \n          <rect class=\"edu-build\" x=\"284\" y=\"20\" width=\"58\" height=\"120\" rx=\"5\" fill=\"rgba(232,0,26,0.04)\" stroke=\"#e8001a\" stroke-width=\"2\" style=\"--dash-len:380;animation-delay:0.24s\"\/>\n          <text x=\"295\" y=\"45\" fill=\"#e8001a\" font-size=\"12\" font-family=\"Share Tech Mono\">\ud83c\udf93<\/text>\n          <text x=\"291\" y=\"75\" fill=\"#e8001a\" font-size=\"8\" font-family=\"Share Tech Mono\">CERT<\/text>\n          <circle cx=\"313\" cy=\"110\" r=\"8\" fill=\"rgba(232,0,26,0.2)\" stroke=\"#e8001a\" stroke-width=\"2\" class=\"edu-build\" style=\"--dash-len:55;animation-delay:0.5s\"\/>\n          <text x=\"310\" y=\"115\" fill=\"#e8001a\" font-size=\"8\" font-family=\"Share Tech Mono\">!<\/text>\n        <\/svg>\n      <\/div>\n    <\/div>\n\n    <!-- CARD 4: Gamification -->\n    <div class=\"edu-card\" id=\"edu-card-4\">\n      <div class=\"edu-card-label\">\u2014 Engagement<\/div>\n      <div class=\"edu-card-title\">Rewards & Achievements<\/div>\n      <div class=\"edu-icon-wrap edu-top\" style=\"gap:30px\">\n        <svg class=\"animation_svg_card_4_1\" viewBox=\"0 0 180 190\" fill=\"none\">\n          <rect class=\"edu-build\" x=\"6\" y=\"6\" width=\"168\" height=\"60\" rx=\"5\" stroke=\"#e8001a\" stroke-width=\"2\" fill=\"rgba(232,0,26,0.02)\" style=\"--dash-len:456\"\/>\n          <text x=\"16\" y=\"22\" fill=\"#e8001a\" font-size=\"8\" font-family=\"Share Tech Mono\">DAILY QUEST<\/text>\n          <circle cx=\"28\" cy=\"46\" r=\"6\" fill=\"rgba(232,0,26,0.3)\" stroke=\"#e8001a\" stroke-width=\"1.5\" class=\"edu-build\" style=\"--dash-len:42;animation-delay:0.2s\"\/>\n          <text x=\"25\" y=\"50\" fill=\"#e8001a\" font-size=\"7\" font-family=\"Share Tech Mono\">\u2713<\/text>\n          <rect x=\"42\" y=\"36\" width=\"120\" height=\"20\" rx=\"3\" fill=\"rgba(232,0,26,0.06)\" stroke=\"rgba(232,0,26,0.2)\" stroke-width=\"0.8\" class=\"edu-build\" style=\"--dash-len:280;animation-delay:0.25s\"\/>\n          <text x=\"50\" y=\"49\" fill=\"#e8001a\" font-size=\"7\" font-family=\"Share Tech Mono\">Complete 5 questions<\/text>\n          \n          <rect class=\"edu-build\" x=\"6\" y=\"72\" width=\"168\" height=\"50\" rx=\"5\" stroke=\"#e8001a\" stroke-width=\"2\" fill=\"rgba(232,0,26,0.02)\" style=\"--dash-len:436;animation-delay:0.1s\"\/>\n          <text x=\"16\" y=\"88\" fill=\"#e8001a\" font-size=\"8\" font-family=\"Share Tech Mono\">LEVEL PROGRESS<\/text>\n          <rect x=\"16\" y=\"98\" width=\"148\" height=\"10\" rx=\"5\" fill=\"rgba(232,0,26,0.1)\" class=\"edu-build\" style=\"--dash-len:304;animation-delay:0.2s\"\/>\n          <rect x=\"16\" y=\"98\" width=\"104\" height=\"10\" rx=\"5\" fill=\"#e8001a\" class=\"edu-build\" style=\"--dash-len:212;animation-delay:0.25s\"\/>\n          <text x=\"168\" y=\"107\" fill=\"#e8001a\" font-size=\"6\" font-family=\"Share Tech Mono\">70%<\/text>\n          \n          <rect class=\"edu-build\" x=\"6\" y=\"128\" width=\"168\" height=\"56\" rx=\"5\" stroke=\"#e8001a\" stroke-width=\"2\" fill=\"rgba(232,0,26,0.02)\" style=\"--dash-len:468;animation-delay:0.2s\"\/>\n          <text x=\"16\" y=\"144\" fill=\"#e8001a\" font-size=\"8\" font-family=\"Share Tech Mono\">ACHIEVEMENTS<\/text>\n          <circle cx=\"30\" cy=\"165\" r=\"8\" fill=\"rgba(232,0,26,0.25)\" stroke=\"#e8001a\" stroke-width=\"1.5\" class=\"edu-build\" style=\"--dash-len:55;animation-delay:0.35s\"\/>\n          <text x=\"27\" y=\"170\" fill=\"#e8001a\" font-size=\"10\" font-family=\"Share Tech Mono\">\u2b50<\/text>\n          <circle cx=\"65\" cy=\"165\" r=\"8\" fill=\"rgba(232,0,26,0.25)\" stroke=\"#e8001a\" stroke-width=\"1.5\" class=\"edu-build\" style=\"--dash-len:55;animation-delay:0.4s\"\/>\n          <text x=\"62\" y=\"170\" fill=\"#e8001a\" font-size=\"10\" font-family=\"Share Tech Mono\">\ud83c\udfaf<\/text>\n          <circle cx=\"100\" cy=\"165\" r=\"8\" fill=\"rgba(232,0,26,0.25)\" stroke=\"#e8001a\" stroke-width=\"1.5\" class=\"edu-build\" style=\"--dash-len:55;animation-delay:0.45s\"\/>\n          <text x=\"97\" y=\"170\" fill=\"#e8001a\" font-size=\"10\" font-family=\"Share Tech Mono\">\ud83c\udfc6<\/text>\n          <circle cx=\"135\" cy=\"165\" r=\"8\" fill=\"rgba(232,0,26,0.2)\" stroke=\"rgba(232,0,26,0.3)\" stroke-width=\"1.5\" class=\"edu-build\" style=\"--dash-len:55;animation-delay:0.5s\"\/>\n          <text x=\"132\" y=\"168\" fill=\"rgba(232,0,26,0.4)\" font-size=\"8\" font-family=\"Share Tech Mono\">?<\/text>\n        <\/svg>\n        \n        <svg class=\"animation_svg_card_4_2\" viewBox=\"0 0 200 190\" fill=\"none\">\n          <rect class=\"edu-build\" x=\"12\" y=\"8\" width=\"176\" height=\"40\" rx=\"5\" stroke=\"#e8001a\" stroke-width=\"2\" fill=\"rgba(232,0,26,0.02)\" style=\"--dash-len:432\"\/>\n          <text x=\"24\" y=\"24\" fill=\"#e8001a\" font-size=\"9\" font-family=\"Share Tech Mono\">TOP LEADERBOARD<\/text>\n          <text x=\"24\" y=\"40\" fill=\"rgba(232,0,26,0.5)\" font-size=\"7\" font-family=\"Share Tech Mono\">Your Rank #3<\/text>\n          \n          <rect class=\"edu-build\" x=\"12\" y=\"54\" width=\"176\" height=\"70\" rx=\"5\" stroke=\"#e8001a\" stroke-width=\"2\" fill=\"rgba(232,0,26,0.02)\" style=\"--dash-len:492;animation-delay:0.1s\"\/>\n          <text x=\"24\" y=\"72\" fill=\"#e8001a\" font-size=\"8\" font-family=\"Share Tech Mono\">1. Alex Chen       3500 pts<\/text>\n          <text x=\"24\" y=\"88\" fill=\"#e8001a\" font-size=\"8\" font-family=\"Share Tech Mono\">2. Sarah Kim      3250 pts<\/text>\n          <rect x=\"24\" y=\"100\" width=\"160\" height=\"14\" rx=\"3\" fill=\"rgba(232,0,26,0.1)\" class=\"edu-build\" style=\"--dash-len:340;animation-delay:0.2s\"\/>\n          <rect x=\"24\" y=\"100\" width=\"160\" height=\"14\" rx=\"3\" fill=\"rgba(232,0,26,0.2)\" class=\"edu-build\" style=\"--dash-len:340;animation-delay:0.22s\"\/>\n          <text x=\"28\" y=\"111\" fill=\"#e8001a\" font-size=\"8\" font-family=\"Share Tech Mono\">3. YOU            2850 pts<\/text>\n          \n          <rect class=\"edu-build\" x=\"12\" y=\"130\" width=\"176\" height=\"52\" rx=\"5\" stroke=\"#e8001a\" stroke-width=\"2\" fill=\"rgba(232,0,26,0.02)\" style=\"--dash-len:464;animation-delay:0.2s\"\/>\n          <text x=\"24\" y=\"148\" fill=\"#e8001a\" font-size=\"8\" font-family=\"Share Tech Mono\">NEXT MILESTONE<\/text>\n          <rect x=\"24\" y=\"158\" width=\"144\" height=\"8\" rx=\"4\" fill=\"rgba(232,0,26,0.1)\" class=\"edu-build\" style=\"--dash-len:288;animation-delay:0.3s\"\/>\n          <rect x=\"24\" y=\"158\" width=\"85\" height=\"8\" rx=\"4\" fill=\"#e8001a\" class=\"edu-build\" style=\"--dash-len:170;animation-delay:0.35s\"\/>\n          <text x=\"172\" y=\"163\" fill=\"#e8001a\" font-size=\"6\" font-family=\"Share Tech Mono\">Level 15<\/text>\n        <\/svg>\n      <\/div>\n    <\/div>\n\n    <div class=\"edu-status-bar\">\n      <div class=\"edu-sdot\"><\/div>\n      <span id=\"edu-status\">INITIALIZING EDUCATION PLATFORM...<\/span>\n    <\/div>\n  <\/div>\n<\/div>\n\n<script>\n(function() {\n  'use strict';\n\n  const canvas = document.getElementById('edu-canvas');\n  if (!canvas) return;\n  const ctx = canvas.getContext('2d');\n  const W = canvas.width, H = canvas.height;\n\n  const nodes = Array.from({length: 40}, () => ({\n    x: Math.random() * W, y: Math.random() * H,\n    vx: (Math.random() - 0.5) * 0.32,\n    vy: (Math.random() - 0.5) * 0.32,\n    r: Math.random() * 1.8 + 1.1,\n    pulse: Math.random() * Math.PI * 2\n  }));\n\n  const packets = Array.from({length: 10}, () => ({\n    from: Math.floor(Math.random() * nodes.length),\n    to:   Math.floor(Math.random() * nodes.length),\n    t: Math.random(),\n    speed: 0.003 + Math.random() * 0.005\n  }));\n\n  function drawNeural() {\n    ctx.clearRect(0, 0, W, H);\n    for (let i = 0; i < nodes.length; i++) {\n      for (let j = i + 1; j < nodes.length; j++) {\n        const dx = nodes[j].x - nodes[i].x;\n        const dy = nodes[j].y - nodes[i].y;\n        const d  = Math.sqrt(dx*dx + dy*dy);\n        if (d < 115) {\n          ctx.beginPath();\n          ctx.moveTo(nodes[i].x, nodes[i].y);\n          ctx.lineTo(nodes[j].x, nodes[j].y);\n          ctx.strokeStyle = `rgba(232,0,26,${(1 - d\/115) * 0.12})`;\n          ctx.lineWidth = 0.7;\n          ctx.stroke();\n        }\n      }\n    }\n    nodes.forEach(n => {\n      n.pulse += 0.017;\n      ctx.beginPath();\n      ctx.arc(n.x, n.y, n.r + Math.sin(n.pulse) * 0.6, 0, Math.PI * 2);\n      ctx.fillStyle = 'rgba(232,0,26,0.5)';\n      ctx.fill();\n      n.x += n.vx; n.y += n.vy;\n      if (n.x < 0 || n.x > W) n.vx *= -1;\n      if (n.y < 0 || n.y > H) n.vy *= -1;\n    });\n    packets.forEach(p => {\n      p.t += p.speed;\n      if (p.t > 1) {\n        p.t = 0; p.from = p.to;\n        p.to = Math.floor(Math.random() * nodes.length);\n      }\n      const f = nodes[p.from], t = nodes[p.to];\n      ctx.beginPath();\n      ctx.arc(f.x + (t.x - f.x) * p.t, f.y + (t.y - f.y) * p.t, 2, 0, Math.PI * 2);\n      ctx.fillStyle = 'rgba(232,0,26,0.65)';\n      ctx.fill();\n    });\n  }\n  (function loop() { drawNeural(); requestAnimationFrame(loop); })();\n\n  function animateChat() {\n    ['edu-b1','edu-b2','edu-b3','edu-b4'].forEach(id => {\n      const el = document.getElementById(id);\n      if (el) { el.style.opacity = '0'; el.style.animation = 'none'; }\n    });\n    [['edu-b1', 350], ['edu-b2', 950], ['edu-b3', 1600], ['edu-b4', 2050]].forEach(([id, delay]) => {\n      setTimeout(() => {\n        const el = document.getElementById(id);\n        if (el) el.style.animation = 'edu-bubble-in 0.35s ease forwards';\n      }, delay);\n    });\n  }\n\n  const cards = document.querySelectorAll('.edu-card');\n  const TOTAL = cards.length;\n  const statusBar = document.getElementById('edu-status');\n  const progressEl = document.getElementById('edu-progress');\n  let current = 0;\n\n  const statusTexts = [\n    'LOADING COURSE DASHBOARD...',\n    'ACTIVATING AI TUTOR...',\n    'ANALYZING PERFORMANCE...',\n    'BUILDING CONTENT LIBRARY...',\n    'ENGAGING GAMIFICATION...'\n  ];\n\n  function activateBuilds(card) {\n    card.querySelectorAll('.edu-build').forEach(el => {\n      const m1 = el.style.cssText.match(\/--dash-len\\s*:\\s*([\\d.]+)\/);\n      const m2 = el.style.cssText.match(\/animation-delay\\s*:\\s*([\\d.]+)s\/);\n      const dashLen = m1 ? m1[1] : 500;\n      const delay   = m2 ? parseFloat(m2[1]) : 0;\n      el.style.strokeDasharray = dashLen;\n      el.style.strokeDashoffset = dashLen;\n      el.style.opacity = '0';\n      void el.offsetWidth;\n      el.style.animation = 'none';\n      void el.offsetWidth;\n      el.style.animation = `edu-build-in 0.65s ease ${delay}s forwards`;\n    });\n  }\n\n  function goTo(idx) {\n    cards[current].classList.remove('edu-active');\n    current = idx;\n    cards[current].classList.add('edu-active');\n    activateBuilds(cards[current]);\n    if (idx === 1) animateChat();\n    if (statusBar) statusBar.textContent = statusTexts[current];\n    if (progressEl) {\n      progressEl.style.transition = 'none';\n      progressEl.style.width = '0%';\n      requestAnimationFrame(() => {\n        progressEl.style.transition = 'width 1.9s linear';\n        progressEl.style.width = '100%';\n      });\n    }\n  }\n\n  goTo(0);\n  setInterval(() => goTo((current + 1) % TOTAL), 2400);\n\n})();\n<\/script>\n<\/body>\n<\/html>\n<\/div><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_section_1 et_pb_section et_section_regular et_flex_section\">\n<div class=\"et_pb_row_1 et_pb_row et_flex_row\">\n<div class=\"et_pb_column_2 et_pb_column et-last-child et_flex_column et_pb_css_mix_blend_mode_passthrough et_flex_column_16_24 et_flex_column_24_24_tablet et_flex_column_24_24_phone\">\n<div class=\"et_pb_text_2 et_pb_text et_pb_bg_layout_light et_pb_module et_flex_module\"><div class=\"et_pb_text_inner\"><p>We provide full-cycle development of educational platforms, LMS, virtual classrooms, and learning apps, featured with leading technologies and lean design. We turn ideas into commercially successful products, delivering high-quality solutions in the shortest possible time.<\/p>\n<\/div><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_section_2 et_pb_section et_section_regular et_flex_section\">\n<div class=\"et_pb_row_2 et_pb_row et_flex_row\">\n<div class=\"et_pb_column_3 et_pb_column et_flex_column et_pb_css_mix_blend_mode_passthrough et_flex_column_2_5 et_flex_column_2_5_tablet et_flex_column_24_24_phone\">\n<div class=\"et_pb_image_0 et_pb_image et_pb_image_sticky et_pb_module et_flex_module\"><span class=\"et_pb_image_wrap\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/appletechconsultants.com\/2026\/wp-content\/uploads\/2026\/01\/education-1.webp\" alt=\"Education\" title=\"Education\" width=\"1282\" height=\"1156\" srcset=\"https:\/\/appletechconsultants.com\/2026\/wp-content\/uploads\/2026\/01\/education-1.webp 1282w, https:\/\/appletechconsultants.com\/2026\/wp-content\/uploads\/2026\/01\/education-1-1280x1154.webp 1280w, https:\/\/appletechconsultants.com\/2026\/wp-content\/uploads\/2026\/01\/education-1-980x884.webp 980w, https:\/\/appletechconsultants.com\/2026\/wp-content\/uploads\/2026\/01\/education-1-480x433.webp 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 1282px, 100vw\" class=\"wp-image-239180\" \/><\/span><\/div>\n<\/div>\n\n<div class=\"et_pb_column_4 et_pb_column et-last-child et_flex_column et_pb_css_mix_blend_mode_passthrough et_flex_column_3_5 et_flex_column_3_5_tablet et_flex_column_24_24_phone\">\n<div class=\"et_pb_text_3 et_pb_text et_pb_bg_layout_light et_pb_module et_flex_module\"><div class=\"et_pb_text_inner\"><p>Our team handles all the surrounding activities of e-learning software development that comprise of deep business analysis, fast development, and design supervision from scratch to release, ensuring the protection of your data and compliance with global security regulations.<\/p>\n<\/div><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_section_3 et_pb_section et_section_regular et_flex_section\">\n<div class=\"et_pb_row_3 et_pb_row et_flex_row\">\n<div class=\"et_pb_column_5 et_pb_column et_flex_column et_pb_css_mix_blend_mode_passthrough et_flex_column_12_24 et_flex_column_12_24_tablet et_flex_column_24_24_phone\">\n<div class=\"et_pb_text_4 et_pb_text et_pb_bg_layout_light et_pb_module et_flex_module\"><div class=\"et_pb_text_inner\"><p>From educational content, administration, software management to documentation, course design, tracking, and managing training and development programs, we help build a fully integrated learning management system.<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_text_5 et_pb_text et_pb_bg_layout_light et_pb_module et_flex_module\"><div class=\"et_pb_text_inner\"><p>Custom school management and administration software with personalized student information systems that include built-in functions for full visibility and control over scheduling, attendance, and academic results.<\/p>\n<p>Right from education data capturing, storing, managing, and to delivery, educators can rely on our cloud services to reach and deliver educational content to the students\u2019 smart devices, as and when they demand.<\/p>\n<\/div><\/div>\n<\/div>\n\n<div class=\"et_pb_column_6 et_pb_column et-last-child et_flex_column et_pb_css_mix_blend_mode_passthrough et_flex_column_12_24 et_flex_column_12_24_tablet et_flex_column_24_24_phone\">\n<div class=\"et_pb_image_1 et_pb_image et_pb_module et_flex_module\"><span class=\"et_pb_image_wrap\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/appletechconsultants.com\/2026\/wp-content\/uploads\/2026\/01\/Learning-Management-System.webp\" alt=\"Learning Management System\" title=\"Learning Management System\" width=\"1417\" height=\"1054\" srcset=\"https:\/\/appletechconsultants.com\/2026\/wp-content\/uploads\/2026\/01\/Learning-Management-System.webp 1417w, https:\/\/appletechconsultants.com\/2026\/wp-content\/uploads\/2026\/01\/Learning-Management-System-1280x952.webp 1280w, https:\/\/appletechconsultants.com\/2026\/wp-content\/uploads\/2026\/01\/Learning-Management-System-980x729.webp 980w, https:\/\/appletechconsultants.com\/2026\/wp-content\/uploads\/2026\/01\/Learning-Management-System-480x357.webp 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) and (max-width: 1280px) 1280px, (min-width: 1281px) 1417px, 100vw\" class=\"wp-image-239124\" \/><\/span><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_section_4 et_pb_section et_section_regular et_flex_section\">\n<div class=\"et_pb_row_4 et_pb_row et_flex_row\">\n<div class=\"et_pb_column_7 et_pb_column et_flex_column et_pb_css_mix_blend_mode_passthrough et_flex_column_12_24 et_flex_column_12_24_tablet et_flex_column_24_24_phone\">\n<div class=\"et_pb_image_2 et_pb_image et_pb_module et_flex_module\"><span class=\"et_pb_image_wrap\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/appletechconsultants.com\/2026\/wp-content\/uploads\/2026\/01\/Education-Solutions.webp\" alt=\"Education Solutions\" title=\"Education Solutions\" width=\"1128\" height=\"904\" srcset=\"https:\/\/appletechconsultants.com\/2026\/wp-content\/uploads\/2026\/01\/Education-Solutions.webp 1128w, https:\/\/appletechconsultants.com\/2026\/wp-content\/uploads\/2026\/01\/Education-Solutions-980x785.webp 980w, https:\/\/appletechconsultants.com\/2026\/wp-content\/uploads\/2026\/01\/Education-Solutions-480x385.webp 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1128px, 100vw\" class=\"wp-image-239123\" \/><\/span><\/div>\n<\/div>\n\n<div class=\"et_pb_column_8 et_pb_column et-last-child et_flex_column et_pb_css_mix_blend_mode_passthrough et_flex_column_12_24 et_flex_column_12_24_tablet et_flex_column_24_24_phone\">\n<div class=\"et_pb_text_6 et_pb_text et_pb_bg_layout_light et_pb_module et_flex_module\"><div class=\"et_pb_text_inner\"><h2 class=\"at-no-padding-bottom\">Education Solutions on <span class=\"at-header-color\"> Latest Technology<\/span><\/h2>\n<\/div><\/div>\n\n<div class=\"et_pb_text_7 et_pb_text et_pb_bg_layout_light et_pb_module et_flex_module\"><div class=\"et_pb_text_inner\"><p>AppleTech brings together a great mix of experience, technical prowess and diligent support services to help institutions redefine learning outcomes. Our clients have leveraged our solutions to impart education to both traditional and non-traditional students such as company employees willing to upgrade their market-ready skills or even knowledge seekers constantly seeking to learn new concepts.<\/p>\n<p>No matter what the end-goal is, AppleTech has risen to deliver solutions that are easy-to-use, flexible to both instructors and learners, captivating and versatile enough for effective teaching.<\/p>\n<\/div><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_section_5 et_pb_section et_section_regular et_flex_section\">\n<div class=\"et_pb_row_5 et_pb_row et_flex_row\">\n<div class=\"et_pb_column_9 et_pb_column et-last-child et_flex_column et_pb_css_mix_blend_mode_passthrough et_flex_column_24_24 et_flex_column_24_24_tablet et_flex_column_24_24_phone\">\n<div class=\"et_pb_text_8 et_pb_text et_pb_bg_layout_light et_pb_module et_flex_module\"><div class=\"et_pb_text_inner\"><h2 class=\"at-no-padding-bottom\">FAQs: Education and <span class=\"at-header-color\"> E-Learning Solutions<\/span><\/h2>\n<\/div><\/div>\n\n<div class=\"et_pb_accordion_0 et_pb_accordion et_pb_module et_flex_module\">\n<div class=\"et_pb_accordion_item_0 et_pb_accordion_item et_pb_toggle et_pb_module et_pb_toggle_open et_flex_module\"><h4 class=\"et_pb_toggle_title\">What types of educational institutions do you work with?<\/h4><div class=\"et_pb_toggle_content et_flex_module\"><p>We work with a wide range of educational institutions, including K-12 schools, colleges, universities, training centers, and e-learning platforms. Our solutions are customized to meet the unique needs of each type of institution.<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_accordion_item_1 et_pb_accordion_item et_pb_toggle et_pb_module et_pb_toggle_close et_flex_module\"><h4 class=\"et_pb_toggle_title\">How can your education solutions improve learning outcomes?<\/h4><div class=\"et_pb_toggle_content et_flex_module\"><p>Our solutions leverage data analytics, custom software, and digital tools to enhance student engagement, streamline administrative processes, and provide real-time insights for informed decision-making\u2014all of which contribute to better learning outcomes.<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_accordion_item_2 et_pb_accordion_item et_pb_toggle et_pb_module et_pb_toggle_close et_flex_module\"><h4 class=\"et_pb_toggle_title\">Do you offer integration with existing Learning Management Systems (LMS)?<\/h4><div class=\"et_pb_toggle_content et_flex_module\"><p>Yes, we offer seamless integration with popular LMS platforms such as Moodle, Canvas, Blackboard, and Google Classroom, ensuring a smooth transition and centralized learning environment.<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_accordion_item_3 et_pb_accordion_item et_pb_toggle et_pb_module et_pb_toggle_close et_flex_module\"><h4 class=\"et_pb_toggle_title\">Can your solutions support remote or hybrid learning models?<\/h4><div class=\"et_pb_toggle_content et_flex_module\"><p>Absolutely. We design digital platforms and mobile apps that support remote, hybrid, and blended learning, enabling students and educators to connect anytime, anywhere.<\/p>\n<\/div><\/div>\n\n<div class=\"et_pb_accordion_item_4 et_pb_accordion_item et_pb_toggle et_pb_module et_pb_toggle_close et_flex_module\"><h4 class=\"et_pb_toggle_title\">Is your educational software scalable for growing institutions?<\/h4><div class=\"et_pb_toggle_content et_flex_module\"><p>Yes, our solutions are designed to be scalable, so they grow with your institution\u2019s needs\u2014whether you\u2019re expanding your student base, adding new programs, or implementing new technologies.<\/p>\n<\/div><\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-239018","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/appletechconsultants.com\/2026\/wp-json\/wp\/v2\/pages\/239018","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/appletechconsultants.com\/2026\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/appletechconsultants.com\/2026\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/appletechconsultants.com\/2026\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/appletechconsultants.com\/2026\/wp-json\/wp\/v2\/comments?post=239018"}],"version-history":[{"count":51,"href":"https:\/\/appletechconsultants.com\/2026\/wp-json\/wp\/v2\/pages\/239018\/revisions"}],"predecessor-version":[{"id":23859219,"href":"https:\/\/appletechconsultants.com\/2026\/wp-json\/wp\/v2\/pages\/239018\/revisions\/23859219"}],"wp:attachment":[{"href":"https:\/\/appletechconsultants.com\/2026\/wp-json\/wp\/v2\/media?parent=239018"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}