<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Amit Ranjan - Knowledge & Poetry | Exam Preparation & Hindi Poetry</title>
<meta name="description" content="Complete exam preparation strategies for government and private exams, plus beautiful Hindi and English poetry by Amit Ranjan">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
line-height: 1.6;
color: #333;
overflow-x: hidden;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Header */
header {
background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
color: white;
padding: 1rem 0;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 1.5rem;
font-weight: 700;
background: linear-gradient(45deg, #fbbf24, #f59e0b);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.nav-links {
display: flex;
list-style: none;
gap: 2rem;
}
.nav-links a {
color: white;
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}
.nav-links a:hover {
color: #fbbf24;
}
.mobile-menu {
display: none;
font-size: 1.5rem;
cursor: pointer;
}
/* Hero Section */
.hero {
background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
color: white;
padding: 120px 0 80px;
text-align: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
opacity: 0.3;
}
.hero-content {
position: relative;
z-index: 2;
}
.hero h1 {
font-size: 3.5rem;
font-weight: 800;
margin-bottom: 1rem;
line-height: 1.1;
}
.hero p {
font-size: 1.2rem;
margin-bottom: 2rem;
opacity: 0.9;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.cta-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}
.btn {
padding: 15px 30px;
border: none;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
}
.btn-primary {
background: linear-gradient(45deg, #fbbf24, #f59e0b);
color: #1e3a8a;
box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}
.btn-secondary {
background: transparent;
color: white;
border: 2px solid rgba(255,255,255,0.3);
}
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}
/* Strategy Generator Tool */
.strategy-generator {
padding: 80px 0;
background: #f8fafc;
}
.section-title {
text-align: center;
font-size: 2.5rem;
font-weight: 700;
color: #1e3a8a;
margin-bottom: 1rem;
}
.section-subtitle {
text-align: center;
font-size: 1.1rem;
color: #64748b;
margin-bottom: 3rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.generator-form {
background: white;
padding: 40px;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0,0,0,0.1);
max-width: 800px;
margin: 0 auto;
}
.form-row {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-bottom: 20px;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 600;
color: #1e3a8a;
}
.form-control {
width: 100%;
padding: 12px 16px;
border: 2px solid #e2e8f0;
border-radius: 10px;
font-size: 1rem;
transition: border-color 0.3s ease;
}
.form-control:focus {
outline: none;
border-color: #fbbf24;
}
.radio-group {
display: flex;
gap: 20px;
flex-wrap: wrap;
}
.radio-option {
display: flex;
align-items: center;
gap: 8px;
}
.radio-option input[type="radio"] {
width: 18px;
height: 18px;
accent-color: #fbbf24;
}
/* Exam Updates Section */
.exam-updates {
padding: 80px 0;
background: white;
}
.updates-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 40px;
}
.update-card {
background: white;
padding: 30px;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
border-left: 4px solid #fbbf24;
}
.update-card:hover {
transform: translateY(-5px);
}
.update-card h3 {
color: #1e3a8a;
margin-bottom: 15px;
font-size: 1.3rem;
}
.update-date {
color: #f59e0b;
font-size: 0.9rem;
font-weight: 600;
margin-bottom: 10px;
}
/* Free Course CTA */
.free-course {
padding: 80px 0;
background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
color: white;
}
.course-content {
text-align: center;
}
.course-form {
background: rgba(255,255,255,0.1);
padding: 40px;
border-radius: 20px;
max-width: 500px;
margin: 0 auto;
backdrop-filter: blur(10px);
}
/* Poetry Section */
.poetry-section {
padding: 80px 0;
background: #f8fafc;
}
.poetry-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
margin-top: 40px;
}
.poem-card {
background: white;
padding: 30px;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}
.poem-card:hover {
transform: translateY(-5px);
}
.poem-title {
color: #1e3a8a;
font-size: 1.4rem;
font-weight: 600;
margin-bottom: 15px;
}
.poem-excerpt {
color: #64748b;
font-style: italic;
margin-bottom: 20px;
line-height: 1.8;
}
.poem-language {
display: inline-block;
background: #fbbf24;
color: #1e3a8a;
padding: 4px 12px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
margin-bottom: 15px;
}
/* About Section */
.about-section {
padding: 80px 0;
background: white;
}
.about-content {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 50px;
align-items: center;
}
.about-image {
text-align: center;
}
.profile-img {
width: 300px;
height: 300px;
border-radius: 50%;
object-fit: cover;
border: 8px solid #fbbf24;
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.stats-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-top: 30px;
}
.stat-item {
text-align: center;
padding: 20px;
background: #f8fafc;
border-radius: 15px;
}
.stat-number {
font-size: 2rem;
font-weight: 700;
color: #fbbf24;
}
.stat-label {
color: #64748b;
font-size: 0.9rem;
margin-top: 5px;
}
/* Contact Section */
.contact-section {
padding: 80px 0;
background: #f8fafc;
}
.contact-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
}
.contact-info h3 {
color: #1e3a8a;
margin-bottom: 20px;
}
.contact-item {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 20px;
}
.contact-icon {
width: 40px;
height: 40px;
background: linear-gradient(45deg, #fbbf24, #f59e0b);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
}
/* Footer */
footer {
background: #1e3a8a;
color: white;
padding: 50px 0 20px;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 30px;
}
.footer-section h3 {
margin-bottom: 20px;
color: #fbbf24;
}
.footer-section a {
color: rgba(255,255,255,0.8);
text-decoration: none;
display: block;
margin-bottom: 10px;
transition: color 0.3s ease;
}
.footer-section a:hover {
color: #fbbf24;
}
.social-icons {
display: flex;
gap: 15px;
margin-top: 20px;
}
.social-icon {
width: 40px;
height: 40px;
background: rgba(255,255,255,0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.2rem;
transition: background 0.3s ease;
}
.social-icon:hover {
background: #fbbf24;
}
.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(255,255,255,0.1);
color: rgba(255,255,255,0.6);
}
/* Strategy Results */
.strategy-results {
margin-top: 30px;
padding: 30px;
background: #f8fafc;
border-radius: 15px;
display: none;
}
.results-section {
margin-bottom: 25px;
}
.results-section h4 {
color: #1e3a8a;
margin-bottom: 15px;
font-size: 1.2rem;
}
.study-schedule {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 15px;
margin-top: 15px;
}
.schedule-item {
background: white;
padding: 15px;
border-radius: 10px;
border-left: 4px solid #fbbf24;
}
/* Newsletter Popup */
.newsletter-popup {
position: fixed;
bottom: 30px;
right: 30px;
background: linear-gradient(135deg, #1e3a8a, #3b82f6);
color: white;
padding: 25px;
border-radius: 15px;
box-shadow: 0 20px 40px rgba(0,0,0,0.2);
max-width: 350px;
z-index: 1000;
transform: translateX(400px);
transition: transform 0.3s ease;
}
.newsletter-popup.show {
transform: translateX(0);
}
.popup-close {
position: absolute;
top: 10px;
right: 15px;
background: none;
border: none;
color: white;
font-size: 1.2rem;
cursor: pointer;
}
/* Responsive Design */
@media (max-width: 768px) {
.nav-links {
display: none;
}
.mobile-menu {
display: block;
}
.hero h1 {
font-size: 2.5rem;
}
.cta-buttons {
flex-direction: column;
align-items: center;
}
.about-content {
grid-template-columns: 1fr;
text-align: center;
}
.contact-content {
grid-template-columns: 1fr;
}
.stats-grid {
grid-template-columns: 1fr;
}
.newsletter-popup {
bottom: 20px;
right: 20px;
left: 20px;
max-width: none;
transform: translateY(400px);
}
.newsletter-popup.show {
transform: translateY(0);
}
}
</style>
</head>
<body>
<!-- Header -->
<header>
<nav class="container">
<div class="logo">अमित रंजन | Amit Ranjan</div>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#strategy">Strategy Tool</a></li>
<li><a href="#poetry">Poetry</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<div class="mobile-menu">
<i class="fas fa-bars"></i>
</div>
</nav>
</header>
<!-- Hero Section -->
<section id="home" class="hero">
<div class="container">
<div class="hero-content">
<h1>सफलता की राह | Path to Success</h1>
<p>Complete exam preparation strategies for government & private exams, plus heartfelt poetry that inspires millions. Get your personalized study plan in Hindi or English.</p>
<div class="cta-buttons">
<a href="#strategy" class="btn btn-primary">
<i class="fas fa-graduation-cap"></i> Generate Exam Strategy
</a>
<a href="#poetry" class="btn btn-secondary">
<i class="fas fa-feather-alt"></i> Explore Poetry
</a>
</div>
</div>
</div>
</section>
<!-- Strategy Generator Tool -->
<section id="strategy" class="strategy-generator">
<div class="container">
<h2 class="section-title">Exam Strategy Generator</h2>
<p class="section-subtitle">Get a complete preparation roadmap tailored to your exam, timeline, and language preference. Used by 50,000+ students across India.</p>
<form class="generator-form" id="strategyForm">
<div class="form-row">
<div class="form-group">
<label for="examType">Select Exam Category</label>
<select class="form-control" id="examType" required>
<option value="">Choose Exam Category</option>
<option value="government">Government Exams</option>
<option value="private">Private Sector Exams</option>
</select>
</div>
<div class="form-group">
<label for="specificExam">Specific Exam</label>
<select class="form-control" id="specificExam" required>
<option value="">First select category</option>
</select>
</div>
</div>
<div class="form-row">
<div class="form-group">
<label for="duration">Preparation Duration</label>
<select class="form-control" id="duration" required>
<option value="">Select Duration</option>
<option value="1month">1 Month (Crash Course)</option>
<option value="3months">3 Months (Intensive)</option>
<option value="6months">6 Months (Comprehensive)</option>
<option value="1year">1 Year (Complete Preparation)</option>
</select>
</div>
<div class="form-group">
<label>Preferred Language</label>
<div class="radio-group">
<div class="radio-option">
<input type="radio" id="hindi" name="language" value="hindi" required>
<label for="hindi">Hindi (हिंदी)</label>
</div>
<div class="radio-option">
<input type="radio" id="english" name="language" value="english" required>
<label for="english">English</label>
</div>
</div>
</div>
</div>
<button type="submit" class="btn btn-primary" style="width: 100%; margin-top: 20px;">
<i class="fas fa-magic"></i> Generate My Strategy Plan
</button>
</form>
<!-- Strategy Results (Hidden by default) -->
<div class="strategy-results" id="strategyResults">
<h3>Your Personalized Strategy Plan</h3>
<div id="strategyContent">
<!-- Dynamic content will be inserted here -->
</div>
<div style="text-align: center; margin-top: 30px;">
<button class="btn btn-primary" onclick="downloadStrategy()">
<i class="fas fa-download"></i> Download as PDF
</button>
<button class="btn btn-secondary" onclick="shareStrategy()">
<i class="fas fa-share-alt"></i> Share Strategy
</button>
</div>
</div>
</div>
</section>
<!-- Exam Updates Section -->
<section class="exam-updates">
<div class="container">
<h2 class="section-title">Latest Exam Updates & Guidance</h2>
<div class="updates-grid">
<div class="update-card">
<div class="update-date">15 Sep 2025</div>
<h3>SSC CGL 2025 Notification Released</h3>
<p>Complete details about SSC CGL 2025 exam pattern, important dates, and application process. Start your preparation now with our updated strategy.</p>
<a href="#" class="btn btn-primary" style="padding: 8px 16px; font-size: 0.9rem;">Read More</a>
</div>
<div class="update-card">
<div class="update-date">12 Sep 2025</div>
<h3>Bank PO Exam Strategy 2025</h3>
<p>Latest updates on IBPS PO, SBI PO, and other banking exams. Updated syllabus, previous year analysis, and preparation tips.</p>
<a href="#" class="btn btn-primary" style="padding: 8px 16px; font-size: 0.9rem;">Read More</a>
</div>
<div class="update-card">
<div class="update-date">10 Sep 2025</div>
<h3>UPSC CSE 2026 Preparation Guide</h3>
<p>Complete roadmap for UPSC Civil Services Examination 2026. Subject-wise strategy, optional selection, and current affairs approach.</p>
<a href="#" class="btn btn-primary" style="padding: 8px 16px; font-size: 0.9rem;">Read More</a>
</div>
</div>
</div>
</section>
<!-- Free Course CTA -->
<section class="free-course">
<div class="container">
<div class="course-content">
<h2 class="section-title" style="color: white;">Free Preparation Course</h2>
<p class="section-subtitle" style="color: rgba(255,255,255,0.9);">Join 25,000+ students in our comprehensive free course covering all major government exams</p>
<form class="course-form" id="courseForm">
<div class="form-group">
<input type="text" class="form-control" placeholder="Full Name" required>
</div>
<div class="form-group">
<input type="email" class="form-control" placeholder="Email Address" required>
</div>
<div class="form-group">
<input type="tel" class="form-control" placeholder="Phone Number" required>
</div>
<div class="form-group">
<select class="form-control" required>
<option value="">Select Target Exam</option>
<option value="ssc">SSC (CGL, CHSL, MTS)</option>
<option value="banking">Banking (SBI, IBPS)</option>
<option value="railway">Railway (RRB NTPC, Group D)</option>
<option value="upsc">UPSC (Prelims + Mains)</option>
<option value="state">State Government Exams</option>
</select>
</div>
<button type="submit" class="btn btn-primary" style="width: 100%;">
<i class="fas fa-rocket"></i> Enroll Free Now
</button>
</form>
</div>
</div>
</section>
<!-- Poetry Section -->
<section id="poetry" class="poetry-section">
<div class="container">
<h2 class="section-title">Poetry Collection | काव्य संग्रह</h2>
<p class="section-subtitle">Heartfelt verses that inspire, motivate, and touch the soul. Read beautiful Hindi and English poetry.</p>
<div class="poetry-grid">
<div class="poem-card">
<div class="poem-language">Hindi</div>
<h3 class="poem-title">सपनों की उड़ान</h3>
<div class="poem-excerpt">
"जब अंधेरा घिरे चारों ओर,<br>
तब भी मत छोड़ना हौसला...<br>
क्योंकि सुबह का सूरज निकलेगा,<br>
तेरे सपनों को लेकर उजाला..."
</div>
<a href="#" class="btn btn-primary" style="padding: 8px 16px;">Read Full Poem</a>
</div>
<div class="poem-card">
<div class="poem-language">English</div>
<h3 class="poem-title">Rise Above</h3>
<div class="poem-excerpt">
"When the world seems against you,<br>
And dreams feel far away,<br>
Remember that eagles soar highest<br>
When fighting the strongest winds..."
</div>
<a href="#" class="btn btn-primary" style="padding: 8px 16px;">Read Full Poem</a>
</div>
<div class="poem-card">
<div class="poem-language">Hindi</div>
<h3 class="poem-title">मेहनत का फल</h3>
<div class="poem-excerpt">
"कड़ी मेहनत कभी बेकार नहीं जाती,<br>
मंजिल मिलती है उसी को<br>
जो ठोकरों को भी<br>
अपनी मंजिल का पत्थर बनाता है..."
</div>
<a href="#" class="btn btn-primary" style="padding: 8px 16px;">Read Full Poem</a>
</div>
<div class="poem-card">
<div class="poem-language">English</div>
<h3 class="poem-title">The Student's Journey</h3>
<div class="poem-excerpt">
"Books are companions, dreams are fuel,<br>
Every page turned is a step ahead,<br>
In this journey of knowledge and growth,<br>
Success awaits those who never quit..."
</div>
<a href="#" class="btn btn-primary" style="padding: 8px 16px;">Read Full Poem</a>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="about-section">
<div class="container">
<div class="about-content">
<div class="about-image">
<div class="profile-img" style="background: linear-gradient(135deg, #1e3a8a, #3b82f6); display: flex; align-items: center; justify-content: center; color: white; font-size: 4rem;">
<i class="fas fa-user-graduate"></i>
</div>
</div>
<div class="about-text">
<h2 class="section-title" style="text-align: left;">About Amit Ranjan</h2>
<p>गुरु, कवि, मार्गदर्शक | Teacher, Poet, Guide</p>
<p>With over 8 years of experience in competitive exam preparation and a passion for poetry, Amit Ranjan has helped thousands of students achieve their dreams. His unique approach combines strategic preparation with motivational poetry, creating an environment where students not only learn but also stay inspired throughout their journey.</p>
<p>From small towns to metropolitan cities, students across India trust Amit Ranjan's guidance for government job preparation. His bilingual approach ensures that language is never a barrier to quality education.</p>
<div class="stats-gri