Eng. Salah Essam

M.SC | ENGINEER | EDUCATOR

With a master’s degree from Ain shams University and over 500 hours of tailored video content, I’ve helped students achieve a 70% A-grade success rate through clear, no-fluff teaching. My goal? Make complex math simple, practical, and unforgettable.
Grade Guarantee: Get an A or your money back
Ready to level up? Join a free trial and see the difference.

Eng. Salah Essam

M.SC | ENGINEER | EDUCATOR

With a master’s degree from ain shams university and over 500 hours of tailored video content, I’ve helped students achieve a 70% A-grade success rate through clear, no-fluff teaching. My goal? Make complex math simple, practical, and unforgettable.
Grade Guarantee: Get an A or your money back
Ready to level up? Join a free trial and see the difference.

Edexcel Orientation Sessions


Cie Orientation Sessions

Intro sessions will explain

● What is required to get an A● How to explain your answers effectively.● How each sub-subject is divided and structured.

Edexcel Orientation Sessions


Cie Orientation Sessions

Intro sessions will explain

● What is required to get an A● How to explain your answers effectively.● How each sub-subject is divided and structured.



The 3-Tick Rule

The 3-Tick Rule

To keep the standard high and the guarantee valid, every student follows the 3-Tick Rule:-Miss a session without a valid excuse → 1 Tick-Miss a homework deadline →1 Tick-Score less than an A in a quiz or mock →1 Tick

Get 3 ticks→ you're out.

No exceptions. No shortcuts. Just results

To keep the standard high and the guarantee valid, every student follows the 3-Tick Rule:-Miss a session without a valid excuse → 1 Tick-Miss a homework deadline →1 Tick-Score less than an A in a quiz or mock →1 Tick

Get 3 ticks→ you're out.

No exceptions. No shortcuts. Just results

guarantee

guarantee

EDEXCEL STUDENT

Got A or A* in O-level

100% Gets an A in the As

IF NOT

Repeats Course For Free

Cambridge STUDENT

Got A or A* in O-level

100% Gets an A in the As

IF NOT

FULL REFUND OF PAYEMNT

EDEXCEL STUDENT

Got A or A* in O-level

100% Gets an A in the As

IF NOT

Repeats Course For Free

Cambridge STUDENT

Got A or A* in O-level

100% Gets an A in the As

IF NOT

FULL REFUND OF PAYEMNT


As Edexcel

P1 → 8,000 EGP
P2 → 8,000 EGP
M1 / S1 → 8,000 EGP
As Full Course → 20,000 EGP (discounted)

A2 Edexcel

P3 → 8,000 EGP
P4 → 8,000 EGP
M1 / S1 → 8,000 EGP
A2 Full Course → 20,000 EGP (discounted)

AS Cambridge

P1 → 11,500 EGP
M1 / S1 → 11,500 EGP
AS Full Course → 20,000 EGP (discounted)

A2 Cambridge

P3 → 11,500 EGP
M1 / S1 /S2 → 11,500 EGP
A2 Full Course → 20,000 EGP (discounted)

As Edexcel

P1 → 8,000 EGP
P2 → 8,000 EGP
M1 / S1 → 8,000 EGP
As Full Course → 20,000 EGP (discounted)

A2 Edexcel

P3 → 8,000 EGP
P4 → 8,000 EGP
M1 / S1 → 8,000 EGP
A2 Full Course → 20,000 EGP (discounted)

AS Cambridge

P1 → 11,500 EGP
M1 / S1 → 11,500 EGP
AS Full Course → 20,000 EGP (discounted)

A2 Cambridge

P3 → 11,500 EGP
M1 / S1 /S2 → 11,500 EGP
A2 Full Course → 20,000 EGP (discounted)

Whether you're joining privately or through any center
The price stays the same.
No changes. No added fees. No center markups.

Whether you're joining privately or through any center
The price stays the same.
No changes. No added fees. No center markups.



AS Edexcel

A2 Edexcel

AS Cambridge

A2 Cambridge

Total: 0 EGP

const checkboxes = document.querySelectorAll('.course'); const totalSpan = document.getElementById('total'); const proceedBtn = document.getElementById('proceedBtn'); const paymentMethods = document.getElementById('paymentMethods'); checkboxes.forEach(cb => { cb.addEventListener('change', () => { let total = 0; checkboxes.forEach(c => { if (c.checked) total += parseInt(c.value); }); totalSpan.textContent = total; }); }); proceedBtn.addEventListener('click', (e) => { e.preventDefault(); paymentMethods.style.display = 'block'; proceedBtn.style.display = 'none'; }); const buttons = document.querySelectorAll('button'); buttons.forEach(button => { button.addEventListener('click', function(e) { const ripple = this.querySelector('span:last-child'); const rect = this.getBoundingClientRect(); const size = Math.max(rect.width, rect.height); const x = e.clientX - rect.left - size / 2; const y = e.clientY - rect.top - size / 2; ripple.style.width = `${size}px`; ripple.style.height = `${size}px`; ripple.style.left = `${x}px`; ripple.style.top = `${y}px`; setTimeout(() => { ripple.style.width = '0'; ripple.style.height = '0'; }, 600); }); button.addEventListener('mouseover', function() { this.style.transform = 'scale(1.05)'; this.style.boxShadow = '0 10px 25px rgba(255,215,0,0.25)'; }); button.addEventListener('mouseout', function() { this.style.transform = 'scale(1)'; this.style.boxShadow = '0 8px 20px rgba(13,110,253,0.6)'; }); }); function sendWhatsApp(method) { let total = totalSpan.textContent; let selectedCourses = []; checkboxes.forEach(c => { if (c.checked) selectedCourses.push(c.parentElement.innerText.trim()); }); let message = `Hello, I want to proceed with payment.\n\nSelected Courses:\n${selectedCourses.join("\n")}\n\nTotal: ${total} EGP\nPayment Method: ${method}`; let url = "https://wa.me/201550831233?text=" + encodeURIComponent(message); window.open(url, "_blank"); }
Course Selector

Choose courses — Tap to select

AS Edexcel

A2 Edexcel

AS Cambridge

A2 Cambridge

Total
0 EGP
const checkboxes = document.querySelectorAll('.course'); const totalEl = document.getElementById('total'); const proceedBtn = document.getElementById('proceedBtn'); const paymentMethods = document.getElementById('paymentMethods'); function updateTotal(){ let total = 0; checkboxes.forEach(c=>{ if(c.checked) total += parseInt(c.value,10)}); totalEl.textContent = total.toLocaleString('en-US') + ' EGP'; } checkboxes.forEach(cb=> cb.addEventListener('change', updateTotal)); proceedBtn.addEventListener('click', (e)=>{ e.preventDefault(); paymentMethods.style.display = 'block'; paymentMethods.setAttribute('aria-hidden','false'); proceedBtn.style.display = 'none'; setTimeout(()=> paymentMethods.scrollIntoView({behavior:'smooth',block:'center'}),300); }); function sendWhatsApp(method){ let totalText = totalEl.textContent; let selected = []; checkboxes.forEach(c=>{ if(c.checked) selected.push(c.closest('label').innerText.trim()) }); if(selected.length === 0){ alert('Please select at least one course before proceeding.'); return; } let message = `Hello, I want to proceed with payment.%0A%0ASelected Courses:%0A${encodeURIComponent(selected.join('%0A'))}%0A%0ATotal: ${encodeURIComponent(totalText)}%0APayment Method: ${encodeURIComponent(method)}`; let url = `https://wa.me/201550831233?text=${message}`; window.open(url,'_blank'); }

Thank you

You’re now part of the team! Stick to the rules, stay focused, and success is yours.