File size: 16,848 Bytes
c8cd578 78b4c32 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Iraq Salary Transparency Portal - Anonymous Salary Sharing</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
<style>
:root {
--primary: #6c5ce7;
--secondary: #a29bfe;
--bg: #e0e5ec;
--shadow-light: #ffffff;
--shadow-dark: #a3b1c6;
}
body {
background-color: var(--bg);
font-family: 'Inter', sans-serif;
}
.hero-bg {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}
.neumorphic {
border-radius: 20px;
background: var(--bg);
box-shadow: 8px 8px 16px var(--shadow-dark),
-8px -8px 16px var(--shadow-light);
}
.neumorphic-inset {
border-radius: 20px;
background: var(--bg);
box-shadow: inset 8px 8px 16px var(--shadow-dark),
inset -8px -8px 16px var(--shadow-light);
}
.feature-card {
border-radius: 20px;
background: var(--bg);
box-shadow: 8px 8px 16px var(--shadow-dark),
-8px -8px 16px var(--shadow-light);
transition: all 0.3s ease;
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 12px 12px 24px var(--shadow-dark),
-12px -12px 24px var(--shadow-light);
}
.counter-item {
border-radius: 20px;
background: var(--bg);
box-shadow: 8px 8px 16px var(--shadow-dark),
-8px -8px 16px var(--shadow-light);
}
nav {
border-radius: 0 0 20px 20px;
background: var(--bg);
box-shadow: 8px 8px 16px var(--shadow-dark),
-8px -8px 16px var(--shadow-light);
}
button {
border-radius: 15px;
background: var(--bg);
box-shadow: 5px 5px 10px var(--shadow-dark),
-5px -5px 10px var(--shadow-light);
transition: all 0.2s ease;
}
button:hover {
box-shadow: 2px 2px 5px var(--shadow-dark),
-2px -2px 5px var(--shadow-light);
}
button:active {
box-shadow: inset 2px 2px 5px var(--shadow-dark),
inset -2px -2px 5px var(--shadow-light);
}
input {
border-radius: 15px;
background: var(--bg);
box-shadow: inset 5px 5px 10px var(--shadow-dark),
inset -5px -5px 10px var(--shadow-light);
border: none;
}
</style>
</head>
<body class="font-sans">
<!-- Navigation -->
<nav class="py-4">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<i data-feather="bar-chart-2" class="text-blue-600 mr-2"></i>
<span class="text-xl font-bold text-blue-600">Iraq Salary Portal</span>
</div>
<div class="hidden md:flex items-center space-x-4">
<a href="index.html" class="text-blue-600 font-medium">Home</a>
<a href="#" class="text-gray-700 hover:text-blue-600 font-medium">Submit Salary</a>
<a href="salary-search.html" class="text-gray-700 hover:text-blue-600 font-medium">Search Data</a>
<a href="salary-calculator.html" class="text-gray-700 hover:text-blue-600 font-medium">Calculator</a>
<a href="company-culture.html" class="text-gray-700 hover:text-blue-600 font-medium">Company Culture</a>
<a href="contact.html" class="text-gray-700 hover:text-blue-600 font-medium">Contact</a>
</div>
<div class="hidden md:flex items-center space-x-4">
<div class="relative">
<input type="text" placeholder="Search salaries..." class="pl-10 pr-4 py-2 rounded-full">
<i data-feather="search" class="absolute left-3 top-2.5 text-gray-400"></i>
</div>
<button class="bg-blue-600 text-white px-4 py-2 rounded-md hover:bg-blue-700 transition">Login</button>
</div>
<button class="md:hidden">
<i data-feather="menu"></i>
</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<div id="hero" class="hero-bg text-white py-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid md:grid-cols-2 gap-8 items-center">
<div data-aos="fade-right">
<h1 class="text-4xl md:text-5xl font-bold mb-4">Iraq Salary Transparency Portal</h1>
<p class="text-xl mb-8">Anonymously share and compare salary information to create a fairer job market for all Iraqis.</p>
<div class="flex flex-col sm:flex-row gap-4">
<button class="bg-white text-blue-600 px-6 py-3 rounded-md font-medium hover:bg-gray-100 transition">Submit Your Salary</button>
<button class="border-2 border-white px-6 py-3 rounded-md font-medium hover:bg-white hover:text-blue-600 transition">Explore Data</button>
</div>
</div>
<div data-aos="fade-left" class="hidden md:block">
<img src="http://static.photos/office/640x360/1" alt="Office workers" class="rounded-lg shadow-xl">
</div>
</div>
</div>
</div>
<!-- Features Section -->
<div class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16" data-aos="fade-up">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Our Mission</h2>
<p class="text-gray-600 max-w-3xl mx-auto">Create a more transparent and fair job market in Iraq by providing a platform for professionals to anonymously share and compare salary information.</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-8">
<div data-aos="fade-up" data-aos-delay="100" class="feature-card bg-white p-6 rounded-lg shadow-md border border-gray-100 transition duration-300">
<div class="bg-blue-100 w-12 h-12 rounded-full flex items-center justify-center mb-4">
<i data-feather="upload" class="text-blue-600"></i>
</div>
<h3 class="text-xl font-semibold mb-2 text-gray-800">Submit Your Salary</h3>
<p class="text-gray-600">Anonymously contribute your salary information to help build a comprehensive dataset.</p>
<a href="#" class="mt-4 inline-flex items-center text-blue-600 hover:text-blue-800">
Submit Now <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
<div data-aos="fade-up" data-aos-delay="200" class="feature-card bg-white p-6 rounded-lg shadow-md border border-gray-100 transition duration-300">
<div class="bg-green-100 w-12 h-12 rounded-full flex items-center justify-center mb-4">
<i data-feather="search" class="text-green-600"></i>
</div>
<h3 class="text-xl font-semibold mb-2 text-gray-800">Search Salaries</h3>
<p class="text-gray-600">Explore salary data by job title, industry, and location to make informed career decisions.</p>
<a href="#" class="mt-4 inline-flex items-center text-green-600 hover:text-green-800">
Search Data <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
<div data-aos="fade-up" data-aos-delay="300" class="feature-card bg-white p-6 rounded-lg shadow-md border border-gray-100 transition duration-300">
<div class="bg-purple-100 w-12 h-12 rounded-full flex items-center justify-center mb-4">
<i data-feather="calculator" class="text-purple-600"></i>
</div>
<h3 class="text-xl font-semibold mb-2 text-gray-800">Salary Calculator</h3>
<p class="text-gray-600">Calculate your net salary after taxes and social security deductions for different regions.</p>
<a href="#" class="mt-4 inline-flex items-center text-purple-600 hover:text-purple-800">
Calculate <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
<div data-aos="fade-up" data-aos-delay="400" class="feature-card bg-white p-6 rounded-lg shadow-md border border-gray-100 transition duration-300">
<div class="bg-orange-100 w-12 h-12 rounded-full flex items-center justify-center mb-4">
<i data-feather="users" class="text-orange-600"></i>
</div>
<h3 class="text-xl font-semibold mb-2 text-gray-800">Company Culture</h3>
<p class="text-gray-600">Rate and review company cultures to help others find a great place to work.</p>
<a href="#" class="mt-4 inline-flex items-center text-orange-600 hover:text-orange-800">
Rate a Company <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
</div>
</div>
</div>
<!-- Counter Section -->
<div class="py-16 bg-gray-900 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12" data-aos="fade-up">
<h2 class="text-3xl font-bold mb-4">Join Our Community</h2>
<p class="text-gray-300 max-w-3xl mx-auto">Thousands of Iraqi professionals are already contributing to salary transparency</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<div data-aos="zoom-in" data-aos-delay="100" class="counter-item p-8 rounded-lg text-center">
<div class="text-5xl font-bold mb-2 text-blue-400">4.2K+</div>
<div class="text-gray-300">Salaries Submitted</div>
</div>
<div data-aos="zoom-in" data-aos-delay="200" class="counter-item p-8 rounded-lg text-center">
<div class="text-5xl font-bold mb-2 text-green-400">120+</div>
<div class="text-gray-300">Companies Rated</div>
</div>
<div data-aos="zoom-in" data-aos-delay="300" class="counter-item p-8 rounded-lg text-center">
<div class="text-5xl font-bold mb-2 text-purple-400">10K</div>
<div class="text-gray-300">Our Goal</div>
</div>
</div>
<div class="mt-12 text-center" data-aos="fade-up">
<div class="w-full bg-gray-700 rounded-full h-4 mb-4">
<div class="bg-blue-500 h-4 rounded-full" style="width: 42%"></div>
</div>
<p class="text-gray-300">Help us reach our goal of 10,000 submissions!</p>
</div>
</div>
</div>
<!-- Testimonials -->
<div class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16" data-aos="fade-up">
<h2 class="text-3xl font-bold text-gray-800 mb-4">What People Say</h2>
<p class="text-gray-600 max-w-3xl mx-auto">Hear from professionals who have benefited from salary transparency</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<div data-aos="fade-up" data-aos-delay="100" class="bg-white p-6 rounded-lg shadow-sm">
<div class="flex items-center mb-4">
<img src="http://static.photos/people/200x200/1" alt="User" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-semibold">Ahmed K.</h4>
<p class="text-gray-500 text-sm">Software Engineer, Baghdad</p>
</div>
</div>
<p class="text-gray-600">"This platform helped me negotiate a 30% salary increase when I discovered I was being underpaid compared to my peers."</p>
</div>
<div data-aos="fade-up" data-aos-delay="200" class="bg-white p-6 rounded-lg shadow-sm">
<div class="flex items-center mb-4">
<img src="http://static.photos/people/200x200/2" alt="User" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-semibold">Rana S.</h4>
<p class="text-gray-500 text-sm">Marketing Manager, Erbil</p>
</div>
</div>
<p class="text-gray-600">"The salary data helped me make an informed decision when considering a job offer from another company."</p>
</div>
<div data-aos="fade-up" data-aos-delay="300" class="bg-white p-6 rounded-lg shadow-sm">
<div class="flex items-center mb-4">
<img src="http://static.photos/people/200x200/3" alt="User" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-semibold">Omar H.</h4>
<p class="text-gray-500 text-sm">HR Professional, Basra</p>
</div>
</div>
<p class="text-gray-600">"As an HR professional, I appreciate how this platform promotes fair compensation practices across industries."</p>
</div>
</div>
</div>
</div>
<!-- CTA Section -->
<div class="py-20 bg-blue-600 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<div data-aos="zoom-in">
<h2 class="text-3xl font-bold mb-6">Ready to contribute to salary transparency?</h2>
<p class="text-xl mb-8 max-w-3xl mx-auto">Your anonymous submission takes less than 2 minutes and helps create a fairer job market for all Iraqis.</p>
<button class="bg-white text-blue-600 px-8 py-4 rounded-md font-bold text-lg hover:bg-gray-100 transition shadow-lg">Submit Your Salary Now</button>
</div>
</div>
</div>
<!-- Footer -->
<footer class="mt-12 py-8 hovered-element">
<div class="text-center opacity-80 text-sm hovered-element">
<div class="flex justify-center gap-5 mb-2 hovered-element">
<a class="pointer-events-none opacity-40"><i class="fab fa-twitter"></i></a>
<a class="pointer-events-none opacity-40"><i class="fab fa-facebook"></i></a>
<a class="pointer-events-none opacity-40"><i class="fab fa-linkedin"></i></a>
<a class="pointer-events-none opacity-40"><i class="fab fa-telegram"></i></a>
</div>
<a href="/privacy-policy" class="neo-link">Privacy Policy</a>
<p class="mt-2 hovered-element">© 2025 Huwaya.com. All rights reserved.</p>
</div>
</footer>
<script>
AOS.init({
duration: 800,
easing: 'ease-in-out',
once: true
});
feather.replace();
VANTA.GLOBE({
el: "#hero",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x3b82f6,
backgroundColor: 0x0077b6,
size: 0.7
});
</script>
</body>
</html>
|