```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Elimuhub Education Consultants</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f9f9f9;
margin: 0;
padding: 20px;
}
header {
background-color: #007bff;
color: white;
padding: 15px 0;
text-align: center;
}
header img {
max-width: 150px; /* Adjust size as needed */
height: auto;
margin-bottom: 10px; /* Space below the logo */
}
nav ul {
list-style: none;
padding: 0;
display: flex;
justify-content: center;
}
nav ul li {
margin: 0 20px;
}
nav ul li a {
text-decoration: none;
color: white;
font-weight: bold;
}
h1, h2, h3 {
color: #333;
margin-bottom: 10px;
}
p {
margin-bottom: 20px;
line-height: 1.6;
}
.services-list {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.service-box {
background-color: #fff;
border: 1px solid #ddd;
border-radius: 5px;
padding: 20px;
margin: 10px;
flex: 1 1 30%;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
animation: fadeIn 0.5s ease-in-out;
transition: transform 0.3s;
}
.service-box:hover {
transform: translateY(-5px);
}
@keyframes fadeIn {
0% {
opacity: 0;
transform: translateY(20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.services-title {
background-color: #28a745;
color: white;
padding: 10px;
text-align: center;
border-radius: 5px;
margin-bottom: 20px;
}
.call-to-action {
background-color: #28a745;
color: #fff;
padding: 15px 25px;
border: none;
border-radius: 5px;
cursor: pointer;
text-decoration: none;
display: inline-block;
font-weight: bold;
text-align: center;
transition: background-color 0.3s;
}
.call-to-action:hover {
background-color: #218838;
}
.contact-us {
background-color: #fff;
padding: 15px;
border: 1px solid #ddd;
margin-top: 30px;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
footer {
background-color: #007bff;
color: white;
text-align: center;
padding: 20px 0;
margin-top: 30px;
}
@media (max-width: 600px) {
.service-box {
flex: 1 1 100%;
}
}
</style>
</head>
<body>
<header>
<img src="https://i.postimg.cc/brTjvRpY/Elimuhub-Education-Consultants-Logo.png" alt="Elimuhub Education Consultants Logo">
<h1>Elimuhub Education Consultants</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<h2>About Us</h2>
<h3>History</h3>
<p>Elimuhub Education Consultants was founded to bridge the educational gap for students and parents seeking personalized learning solutions. Over time, we have expanded our services to include special education and homeschooling, addressing diverse student needs.</p>
<h3>Mission</h3>
<p>Our mission is to enhance educational outcomes by providing comprehensive support, fostering a love for learning, and advocating for students with disabilities. We strive to create an inclusive environment where every student can thrive academically and personally.</p>
<h3>Team</h3>
<p>Led by experienced professionals in education, our team is dedicated to nurturing students' potential and guiding families throughout their educational journey. Their expertise ensures tailored support for unique circumstances.</p>
<h2>Our Services</h2>
<div class="services-title">
<h3>Muslim Schools Placement</h3>
</div>
<div class="services-list">
<div class="service-box">Tailored school recommendations based on individual student needs</div>
<div class="service-box">Comprehensive assistance with applications and admissions</div>
<div class="service-box">Continuous support throughout the entire placement process</div>
<div class="service-box">Affordable service fees with flexible payment plans</div>
</div>
<h2>Get Started Today</h2>
<p>Ready to find the perfect school for your child? Contact us via WhatsApp at <a href="https://wa.me/+254731838387">+254731838387</a> or visit our website at <a href="https://elimuhub.simdif.com">elimuhub.simdif.com</a>.</p>
<p class="call-to-action">Don't delay - let Elimuhub Education Consultants help secure your child's future in a nurturing Muslim school. Reach out to us today!</p>
<div class="contact-us">
<h3>Contact Us</h3>
<p>Have questions? We’re here to help! Get in touch to learn more about our services and how we can support your child's educational journey.</p>
<a href="https://wa.me/+254731838387" class="call-to-action">WhatsApp us</a>
</div>
</main>
<footer>
<p>© 2023 Elimuhub Education Consultants. All rights reserved.</p>
</footer>
<script>
document.querySelectorAll('a[href="https://wa.me/+254731838387"]').forEach(link => {
link.addEventListener('click', function(event) {
event.preventDefault();
window.open('https://wa.me/+254731838387', '_blank');
});
});
</script>
</body>
</html>