<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Online Services Portal</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Header -->
<header>
<div class="container">
<h1>Online Services Portal</h1>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- Hero Section -->
<section id="home" class="hero">
<div class="container">
<h2>Your One-Stop Solution for Online Services</h2>
<p>Apply for PAN card, ration card, caste certificate, and more with ease.</p>
<a href="#services" class="btn">Explore Services</a>
</div>
</section>
<!-- Services Section -->
<section id="services" class="services">
<div class="container">
<h2>Our Services</h2>
<div class="service-cards">
<div class="card">
<h3>PAN Card Application</h3>
<p>Apply for a new PAN card or update your existing one.</p>
<a href="#" class="btn">Apply Now</a>
</div>
<div class="card">
<h3>Ration Card Application</h3>
<p>Get your ration card online in just a few steps.</p>
<a href="#" class="btn">Apply Now</a>
</div>
<div class="card">
<h3>Caste Certificate</h3>
<p>Apply for a caste certificate easily.</p>
<a href="#" class="btn">Apply Now</a>
</div>
<div class="card">
<h3>Other Services</h3>
<p>Explore more government services.</p>
<a href="#" class="btn">Learn More</a>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="about">
<div class="container">
<h2>About Us</h2>
<p>We provide a seamless online platform for all your government service needs. Our mission is to make the process simple, fast, and hassle-free.</p>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact">
<div class="container">
<h2>Contact Us</h2>
<form>
<input type="text" placeholder="Your Name" required>
<input type="email" placeholder="Your Email" required>
<textarea placeholder="Your Message" required></textarea>
<button type="submit" class="btn">Send Message</button>
</form>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<p>© 2023 Online Services Portal. All rights reserved.</p>
<ul>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms of Service</a></li>
</ul>
</div>
</footer>
</body>
</html>
