<!DOCTYPE html>
<html lang="ur" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>آن لائن نوکریاں - WorkHome</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Noto Nastaliq Urdu', 'Arial', sans-serif;
background: linear-gradient(135deg, #2c003e, #4a0072, #6a0080);
color: white;
min-height: 100vh;
display: flex;
flex-direction: column;
line-height: 1.6;
}
/* Header Styles */
header {
background: rgba(0, 0, 0, 0.7);
padding: 15px 0;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
position: sticky;
top: 0;
z-index: 100;
backdrop-filter: blur(10px);
}
.header-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 20px;
}
.logo {
display: flex;
align-items: center;
gap: 10px;
}
.logo i {
font-size: 28px;
color: #FFD700;
}
.logo-text {
font-size: 24px;
font-weight: bold;
background: linear-gradient(to right, #FFD700, #ff9900);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
nav ul {
display: flex;
list-style: none;
gap: 25px;
}
nav a {
color: white;
text-decoration: none;
font-size: 18px;
transition: color 0.3s;
position: relative;
}
nav a:hover {
color: #FFD700;
}
nav a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: #FFD700;
transition: width 0.3s;
}
nav a:hover::after {
width: 100%;
}
/* Main Content Styles */
.container {
max-width: 800px;
margin: 40px auto;
padding: 40px 30px;
background: rgba(0, 0, 0, 0.5);
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
animation: fadeIn 1s ease;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
h1 {
font-size: 42px;
margin-bottom: 10px;
color: #FFD700;
text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}
.subtitle {
font-size: 20px;
margin-bottom: 30px;
color: #e0e0e0;
}
.salary-box {
background: linear-gradient(45deg, #FFD700, #ff9900);
padding: 15px;
border-radius: 12px;
margin: 25px 0;
box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
color: #000;
font-weight: bold;
font-size: 24px;
}
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin: 30px 0;
}
.feature-card {
background: rgba(255, 255, 255, 0.1);
padding: 20px;
border-radius: 12px;
text-align: center;
transition: transform 0.3s, background 0.3s;
}
.feature-card:hover {
transform: translateY(-5px);
background: rgba(255, 255, 255, 0.15);
}
.feature-card i {
font-size: 36px;
color: #FFD700;
margin-bottom: 15px;
}
.feature-card h3 {
font-size: 20px;
margin-bottom: 10px;
}
ul {
list-style-type: none;
margin-top: 20px;
text-align: right;
direction: rtl;
line-height: 2;
font-size: 18px;
}
ul li {
padding: 8px 0;
position: relative;
padding-right: 30px;
}
ul li::before {
content: "✓ ";
color: #4CAF50;
font-weight: bold;
font-size: 20px;
position: absolute;
right: 0;
}
.apply-btn {
background: linear-gradient(45deg, #FFD700, #ff9900);
color: #000;
padding: 18px 40px;
border: none;
font-size: 20px;
border-radius: 50px;
margin-top: 30px;
cursor: pointer;
transition: all 0.3s ease;
font-weight: bold;
box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
display: inline-flex;
align-items: center;
gap: 10px;
}
.apply-btn:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}
.apply-btn:active {
transform: translateY(1px);
}
.stats {
display: flex;
justify-content: space-around;
margin: 40px 0;
text-align: center;
}
.stat-item {
padding: 15px;
}
.stat-number {
font-size: 36px;
font-weight: bold;
color: #FFD700;
display: block;
}
.stat-text {
font-size: 16px;
color: #ccc;
}
/* Footer Styles */
footer {
background: rgba(0, 0, 0, 0.8);
padding: 40px 0 20px;
margin-top: auto;
}
.footer-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-bottom: 30px;
}
.footer-section h3 {
font-size: 22px;
margin-bottom: 20px;
color: #FFD700;
position: relative;
padding-bottom: 10px;
}
.footer-section h3::after {
content: '';
position: absolute;
bottom: 0;
right: 0;
width: 50px;
height: 2px;
background: #FFD700;
}
.footer-section p {
margin-bottom: 15px;
color: #ccc;
}
.footer-links {
list-style: none;
}
.footer-links li {
margin-bottom: 10px;
}
.footer-links a {
color: #ccc;
text-decoration: none;
transition: color 0.3s;
display: flex;
align-items: center;
gap: 8px;
}
.footer-links a:hover {
color: #FFD700;
}
.social-links {
display: flex;
gap: 15px;
margin-top: 20px;
}
.social-links a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
color: white;
font-size: 18px;
transition: all 0.3s;
}
.social-links a:hover {
background: #FFD700;
color: #000;
transform: translateY(-3px);
}
.footer-bottom {
text-align: center;
padding-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: #999;
font-size: 14px;
}
.visit-button {
display: inline-block;
background: linear-gradient(45deg, #4CAF50, #2E7D32);
color: white;
padding: 12px 25px;
border-radius: 5px;
text-decoration: none;
font-weight: bold;
margin-top: 15px;
transition: all 0.3s;
}
.visit-button:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}
/* Responsive Styles */
@media screen and (max-width: 768px) {
.header-container {
flex-direction: column;
gap: 15px;
}
nav ul {
gap: 15px;
}
h1 {
font-size: 32px;
}
.salary-box {
font-size: 20px;
}
.stats {
flex-direction: column;
gap: 20px;
}
.footer-content {
grid-template-columns: 1fr;
}
}
@media screen and (max-width: 480px) {
.container {
padding: 30px 15px;
margin: 20px auto;
}
h1 {
font-size: 28px;
}
.apply-btn {
padding: 15px 30px;
font-size: 18px;
}
.feature-card {
padding: 15px;
}
}
</style>
</head>
<body>
<!-- Header Section -->
<header>
<div class="header-container">
<div class="logo">
<i class="fas fa-briefcase"></i>
<span class="logo-text">WorkHome Jobs</span>
</div>
<nav>
<ul>
<li><a href="techpk">ہوم</a></li>
<li><a href="techpk">نوکریاں</a></li>
<li><a href="techpk">ہمارے بارے میں</a></li>
<li><a href="techpk">رابطہ کریں</a></li>
</ul>
</nav>
</div>
</header>
<!-- Main Content -->
<div class="container">
<h1>آن لائن نوکریاں</h1>
<p class="subtitle">(ہم آپ کو مناسب ملازمتیں فراہم کریں گے)</p>
<div class="salary-box">
تخواہ: Rs 1,500-2,000 / فی دن
</div>
<div class="features">
<div class="feature-card">
<i class="fas fa-mobile-alt"></i>
<h3>صرف فون درکار</h3>
<p>آپ کو صرف ایک فون کی ضرورت ہے۔</p>
</div>
<div class="feature-card">
<i class="fas fa-graduation-cap"></i>
<h3>کوئی تجربہ درکار نہیں</h3>
<p>کسی تجربے کی ضرورت نہیں ہے۔</p>
</div>
<div class="feature-card">
<i class="fas fa-wifi"></i>
<h3>آن لائن کام کریں</h3>
<p>انٹرنیٹ پر آسانی سے کام کریں۔</p>
</div>
</div>
<div class="stats">
<div class="stat-item">
<span class="stat-number">500+</span>
<span class="stat-text">کام کرنے والے</span>
</div>
<div class="stat-item">
<span class="stat-number">98%</span>
<span class="stat-text">مثبت جائزے</span>
</div>
<div class="stat-item">
<span class="stat-number">ہفتہ وار</span>
<span class="stat-text">ادائیگی</span>
</div>
</div>
<ul>
<li>آپ کو صرف ایک فون کی ضرورت ہے۔</li>
<li>کسی تجربے کی ضرورت نہیں ہے۔</li>
<li>انٹرنیٹ پر آسانی سے کام کریں۔</li>
<li>ہم ہفتہ وار ادائیگی کرتے ہیں۔</li>
<li>کام کا لچکدار شیڈول</li>
<li>مکمل رہنمائی اور سپورٹ</li>
</ul>
<button class="apply-btn" onclick="applyNow()">
<i class="fas fa-paper-plane"></i> Apply Now
</button>
</div>
<!-- Footer Section -->
<footer>
<div class="footer-container">
<div class="footer-content">
<div class="footer-section">
<h3>Work Home Jobs</h3>
<p>ہم پاکستان میں بہترین آن لائن نوکری کے مواقع فراہم کرتے ہیں۔ ہمارا مقصد ہر شخص کو معیاری روزگار تک رسائی دینا ہے۔</p>
<a href="techpk" class="visit-button">ہماری ویب سائٹ وزٹ کریں</a>
</div>
<div class="footer-section">
<h3>تیز لنکس</h3>
<ul class="footer-links">
<li><a href="techpk"><i class="fas fa-arrow-left"></i> تمام نوکریاں</a></li>
<li><a href="techpk"><i class="fas fa-arrow-left"></i> درخواست دیں</a></li>
<li><a href="techpk"><i class="fas fa-arrow-left"></i> عمومی سوالات</a></li>
<li><a href="techpk"><i class="fas fa-arrow-left"></i> رابطہ کریں</a></li>
</ul>
</div>
<div class="footer-section">
<h3>ہم سے جڑیں</h3>
<p>ہمارے سوشل میڈیا چینلز پر ہم سے جڑیں اور تازہ ترین نوکریوں کے مواقع حاصل کریں۔</p>
<div class="social-links">
<a href="techpk"><i class="fab fa-facebook-f"></i></a>
<a href="techpk"><i class="fab fa-twitter"></i></a>
<a href="techpk"><i class="fab fa-instagram"></i></a>
<a href="techpk"><i class="fab fa-whatsapp"></i></a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2023 Work Home Jobs. تمام حقوق محفوظ ہیں۔ | <a href="techpk" style="color: #FFD700;">ہماری ویب سائٹ وزٹ کریں</a></p>
</div>
</div>
</footer>
<script>
function applyNow() {
window.location.href = "techpk";
}
// Add some interactive effects
document.addEventListener('DOMContentLoaded', function() {
// Animate elements on scroll
const observerOptions = {
threshold: 0.1,
rootMargin: '0px 0px -50px 0px'
};
const observer = new IntersectionObserver(function(entries) {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = 1;
entry.target.style.transform = 'translateY(0)';
}
});
}, observerOptions);
// Observe elements for animation
const elementsToAnimate = document.querySelectorAll('.feature-card, .stat-item');
elementsToAnimate.forEach(el => {
el.style.opacity = 0;
el.style.transform = 'translateY(20px)';
el.style.transition = 'opacity 0.5s, transform 0.5s';
observer.observe(el);
});
});
</script>
</body>
</html>
No comments:
Post a Comment
If you have any question you can ask me feelfree.