<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>the most student-friendly institution in Habiganj.</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
<style
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', sans-serif;
}
body {
background: #ffffff;
color: #1e293b;
}
/* NAVBAR */
nav {
display: flex;
justify-content: space-between;
padding: 15px 60px;
border-bottom: 1px solid #eee;
}
nav h2 {
color: #2563eb;
}
nav a {
margin-left: 25px;
text-decoration: none;
color: #333;
font-weight: 500;
}
/* HERO */
.hero {
display: grid;
grid-template-columns: 1fr 1fr;
padding: 80px 60px;
align-items: center;
gap: 40px;
}
.hero h1 {
font-size: 42px;
margin-bottom: 20px;
}
.hero p {
margin-bottom: 20px;
color: #555;
}
.btn {
padding: 12px 25px;
border-radius: 6px;
border: none;
cursor: pointer;
margin-right: 10px;
}
.primary {
background: #2563eb;
color: white;
}
.secondary {
background: #e2e8f0;
}
.hero img {
width: 100%;
border-radius: 10px;
}
/* SECTION */
section {
padding: 80px 60px;
}
h2 {
text-align: center;
margin-bottom: 40px;
}
/* GRID */
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
gap: 20px;
}
.card {
border: 1px solid #eee;
padding: 20px;
border-radius: 8px;
transition: 0.3s;
}
.card:hover {
box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
/* FORM */
.form-box {
background: #f8fafc;
padding: 30px;
border-radius: 10px;
}
input, select {
width: 100%;
padding: 12px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
}
/* CTA */
.cta {
text-align: center;
background: #2563eb;
color: white;
padding: 60px;
}
/* FOOTER */
footer {
text-align: center;
padding: 20px;
background: #f1f5f9;
}
</style>
</head>
<body>
<!-- NAV -->
<nav>
<h2>Aimers Habiganj</h2>
<div>
<a href="#">Courses</a>
<a href="#">About</a>
<a href="#">Contact</a>
</div>
</nav>
<!-- HERO -->
<div class="hero">
<div>
<h1>Prepare for IELTS with Confidence</h1>
<p>Structured training, expert mentors, and real exam practice to help you achieve your target band score.</p>
<button class="btn primary">Book Free Demo</button>
<button class="btn secondary">Explore Courses</button>
</div>
<div class="form-box">
<h3>Book Free Consultation</h3>
<input type="text" placeholder="Your Name">
<input type="text" placeholder="Phone Number">
<select>
<option>Select Course</option>
<option>IELTS Academic</option>
<option>IELTS General</option>
</select>
<button class="btn primary" style="width:100%;">Submit</button>
</div>
</div>
<!-- COURSES -->
<section>
<h2>IELTS Courses</h2>
<div class="grid">
<div class="card">
<h3>IELTS Academic</h3>
<p>For higher education abroad.</p>
</div>
<div class="card">
<h3>IELTS General</h3>
<p>For migration & work.</p>
</div>
<div class="card">
<h3>Crash Course</h3>
<p>Fast-track preparation.</p>
</div>
</div>
</section>
<!-- FEATURES -->
<section>
<h2>Why Aimers?</h2>
<div class="grid">
<div class="card">✔ Expert Trainers</div>
<div class="card">✔ Weekly Mock Tests</div>
<div class="card">✔ Personalized Feedback</div>
<div class="card">✔ Small Batches</div>
</div>
</section>
<!-- CTA -->
<div class="cta">
<h2>Start Your IELTS Journey Today</h2>
<button class="btn secondary">Enroll Now</button>
</div>
<footer>
<p>© 2026 Aimers Habiganj IELTS Coaching</p>
</footer>
</body>
</html>