<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Amit Ranjan - Empowering Dreams Through Knowledge & Poetry</title>
    <meta name="description" content="Your trusted guide for BPSC exam preparation and a sanctuary for inspiring poetry. Join thousands who've achieved their aspirations with expert guidance.">
    <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;
            background-color: #fefefe;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: white;
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2d3748;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: #4a5568;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #f56500;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #f56500;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #4a5568;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #fff5e6 0%, #ffeaa7 100%);
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 60px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: #2d3748;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-text .highlight {
            color: #f56500;
        }

        .hero-text p {
            font-size: 1.1rem;
            color: #718096;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary {
            background: #f56500;
            color: white;
            box-shadow: 0 4px 20px rgba(245, 101, 0, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: #f56500;
            border: 2px solid #f56500;
        }

        .btn:hover {
            transform: translateY(-2px);
        }

        .btn-primary:hover {
            box-shadow: 0 6px 25px rgba(245, 101, 0, 0.4);
        }

        .stats-row {
            display: flex;
            gap: 3rem;
        }

        .stat-item {
            text-align: left;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #f56500;
            display: block;
        }

        .stat-label {
            color: #718096;
            font-size: 0.9rem;
        }

        .hero-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            position: relative;
        }

        .card-header {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #f56500, #ff8c42);
            border-radius: 15px;
            margin-bottom: 20px;
            margin-left: auto;
            margin-right: auto;
        }

        .card-header i {
            font-size: 1.5rem;
            color: white;
        }

        .hero-card h3 {
            text-align: center;
            color: #2d3748;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .hero-card p {
            color: #718096;
            text-align: center;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }

        .card-btn {
            width: 100%;
            background: #38a169;
            color: white;
            padding: 12px 20px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .card-btn:hover {
            background: #2f855a;
        }

        /* Strategy Generator Tool */
        .strategy-generator {
            padding: 80px 0;
            background: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #718096;
            max-width: 600px;
            margin: 0 auto;
        }

        .generator-form {
            background: #f7fafc;
            padding: 40px;
            border-radius: 15px;
            max-width: 800px;
            margin: 0 auto;
            border: 1px solid #e2e8f0;
        }

        .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: #2d3748;
        }

        .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
            background: white;
        }

        .form-control:focus {
            outline: none;
            border-color: #f56500;
        }

        .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: #f56500;
        }

        /* Updates Section */
        .updates-section {
            padding: 80px 0;
            background: #f7fafc;
        }

        .updates-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .updates-subtitle {
            color: #718096;
            font-size: 1rem;
        }

        .updates-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .update-card {
            background: white;
            padding: 25px;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .update-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .update-badge {
            display: inline-block;
            background: #38a169;
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .update-card h3 {
            color: #2d3748;
            margin-bottom: 10px;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .update-date {
            color: #a0aec0;
            font-size: 0.85rem;
            margin-bottom: 12px;
        }

        .update-card p {
            color: #718096;
            font-size: 0.95rem;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .read-more {
            color: #f56500;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Free Course Section */
        .free-course {
            padding: 80px 0;
            background: #2d3748;
            color: white;
        }

        .course-content {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 60px;
            align-items: center;
        }

        .course-info h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .course-info p {
            font-size: 1.1rem;
            color: #a0aec0;
            margin-bottom: 2rem;
        }

        .course-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .course-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            color: #e2e8f0;
        }

        .course-features i {
            color: #38a169;
            font-size: 1.1rem;
        }

        .course-form {
            background: rgba(255,255,255,0.05);
            padding: 30px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .course-form h3 {
            text-align: center;
            margin-bottom: 20px;
            color: white;
        }

        /* Poetry Section */
        .poetry-section {
            padding: 80px 0;
            background: white;
        }

        .poetry-intro {
            text-align: center;
            margin-bottom: 3rem;
        }

        .poetry-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .poem-card {
            background: #f7fafc;
            padding: 25px;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .poem-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }

        .poem-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .poem-language {
            background: #fbb042;
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .poem-date {
            color: #a0aec0;
            font-size: 0.85rem;
        }

        .poem-title {
            color: #2d3748;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .poem-excerpt {
            color: #718096;
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        /* Newsletter Section */
        .newsletter-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #fbb042, #f56500);
            text-align: center;
        }

        .newsletter-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .newsletter-section h2 {
            color: white;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .newsletter-section p {
            color: rgba(255,255,255,0.9);
            margin-bottom: 2rem;
        }

        .newsletter-form {
            display: flex;
            gap: 15px;
            max-width: 400px;
            margin: 0 auto;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 16px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
        }

        .newsletter-btn {
            background: #2d3748;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .newsletter-btn:hover {
            background: #1a202c;
        }

        /* Footer */
        footer {
            background: #2d3748;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: #fbb042;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-section a {
            color: #a0aec0;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #fbb042;
        }

        .footer-section p {
            color: #a0aec0;
            margin-bottom: 10px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            background: #fbb042;
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #a0aec0;
        }

        /* Strategy Results */
        .strategy-results {
            margin-top: 30px;
            padding: 30px;
            background: white;
            border-radius: 15px;
            border: 1px solid #e2e8f0;
            display: none;
        }

        .results-section {
            margin-bottom: 25px;
        }

        .results-section h4 {
            color: #2d3748;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-text h1 {
                font-size: 2.5rem;
            }
            
            .cta-buttons {
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .course-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .stats-row {
                justify-content: center;
                flex-wrap: wrap;
                gap: 2rem;
            }
        }
    </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">Exam Strategy</a></li>
                <li><a href="#updates">Updates</a></li>
                <li><a href="#poetry">Poetry</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">
                <div class="hero-text">
                    <h1>Empowering Dreams Through <span class="highlight">Knowledge & Poetry</span></h1>
                    <p>Your trusted guide for exam preparation and a sanctuary for inspiring poetry. Join thousands who've achieved their aspirations with expert guidance for all government and private exams.</p>
                    
                    <div class="cta-buttons">
                        <a href="#strategy" class="btn btn-primary">
                            <i class="fas fa-rocket"></i>
                            Generate Exam Strategy
                        </a>
                        <a href="#poetry" class="btn btn-secondary">
                            <i class="fas fa-feather-alt"></i>
                            Explore Poetry
                        </a>
                    </div>
                    
                    <div class="stats-row">
                        <div class="stat-item">
                            <span class="stat-number">10K+</span>
                            <span class="stat-label">Students Guided</span>
                        </div>
                        <div class="stat-item">
                            <span class="stat-number">500+</span>
                            <span class="stat-label">Success Stories</span>
                        </div>
                        <div class="stat-item">
                            <span class="stat-number">100+</span>
                            <span class="stat-label">Poems Published</span>
                        </div>
                    </div>
                </div>
                
                <div class="hero-card">
                    <div class="card-header">
                        <i class="fas fa-user-graduate"></i>
                    </div>
                    <h3>Amit Ranjan</h3>
                    <p>Expert Guide & Poet<br>
                    Start your dream exam preparation with personalized strategy for all government & private exams.</p>
                    <button class="card-btn" onclick="document.getElementById('strategy').scrollIntoView()">
                        Get Free Strategy
                    </button>
                </div>
            </div>
        </div>
    </section>

    <!-- Strategy Generator Tool -->
    <section id="strategy" class="strategy-generator">
        <div class="container">
            <div class="section-header">
                <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>
            </div>
            
            <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>

    <!-- Updates Section -->
    <section id="updates" class="updates-section">
        <div class="container">
            <div class="updates-header">
                <h2 class="section-title">Exam Updates & Guidance</h2>
                <p class="updates-subtitle">Stay ahead with the latest notifications, results, and expert preparation strategies for all government and private exams.</p>
            </div>
            
            <div class="updates-grid">
                <div class="update-card">
                    <div class="update-badge">NEW</div>
                    <h3>SSC CGL 2025 Notification Released</h3>
                    <div class="update-date">1 day ago</div>
                    <p>Complete details about SSC CGL 2025 exam pattern, important dates, and application process. Start your preparation now.</p>
                    <a href="#" class="read-more">Read More →</a>
                </div>
                
                <div class="update-card">
                    <div class="update-badge">HOT</div>
                    <h3>IBPS PO Recruitment 2025</h3>
                    <div class="update-date">2 days ago</div>
                    <p>Banking sector recruitment notification with 4000+ vacancies. Complete exam pattern and preparation strategy available.</p>
                    <a href="#" class="read-more">Read More →</a>
                </div>
                
                <div class="update-card">
                    <div class="update-badge">UPDATE</div>
                    <h3>UPSC CSE 2026 Strategy Guide</h3>
                    <div class="update-date">3 days ago</div>
                    <p>Complete preparation roadmap for UPSC Civil Services. Prelims to Interview preparation with optional guidance.</p>
                    <a href="#" class="read-more">Read More →</a>
                </div>
            </div>
        </div>
    </section>

    <!-- Free Course Section -->
    <section class="free-course">
        <div class="container">
            <div class="course-content">
                <div class="course-info">
                    <h2>Free Exam Preparation Course</h2>
                    <p>Join our comprehensive exam preparation course and start your journey towards success with expert guidance, daily motivation, and complete study materials.</p>
                    
                    <ul class="course-features">
                        <li><i class="fas fa-check-circle"></i> All Government Exams Coverage</li>
                        <li><i class="fas fa-check-circle"></i> Weekly Mock Tests</li>
                        <li><i class="fas fa-check-circle"></i> Daily Current Affairs</li>
                        <li><i class="fas fa-check-circle"></i> Subject-wise Preparation</li>
                    </ul>
                    
                    <p style="color: #fbb042; font-weight: 600;">🎯 Complete this form & get All Study Materials</p>
                </div>
                
                <form class="course-form" id="courseForm">
                    <h3>Enroll Now - Limited Seats!</h3>
                    <div class="form-group">
                        <input type="text" class="form-control" placeholder="Enter your 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 PO/Clerk)</option>
                            <option value="railway">Railway (RRB NTPC, Group D)</option>
                            <option value="upsc">UPSC (Civil Services)</option>
                            <option value="state">State Government Exams</option>
                            <option value="defence">Defence (CDS, NDA)</option>
                        </select>
                    </div>
                    <button type="submit" class="btn btn-primary" style="width: 100%; background: #38a169;">
                        <i class="fas fa-rocket"></i> Join Free Course
                    </button>
                </form>
            </div>
        </div>
    </section>

    <!-- Poetry Section -->
    <section id="poetry" class="poetry-section">
        <div class="container">
            <div class="poetry-intro">
                <h2 class="section-title">Hindi Poetry Collection</h2>
                <p class="section-subtitle">Explore heartfelt Hindi poems that inspire, motivate, and touch the soul. Each verse carries the essence of life's beautiful journey.</p>
            </div>
            
            <div class="poetry-grid">
                <div class="poem-card">
                    <div class="poem-meta">
                        <div class="poem-language">HINDI</div>
                        <div class="poem-date">1 day read</div>
                    </div>
                    <h3 class="poem-