541 lines
17 KiB
HTML
541 lines
17 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Resume - Abdullah Sami Bakhsh</title>
|
||
<style>
|
||
:root {
|
||
--kaauh-teal: #00636e;
|
||
--kaauh-teal-dark: #004a53;
|
||
--kaauh-light-bg: #f9fbfd;
|
||
--kaauh-border: #eaeff3;
|
||
--text-primary: #2c3e50;
|
||
--text-secondary: #6c757d;
|
||
--white: #ffffff;
|
||
--danger: #dc3545;
|
||
--warning: #ffc107;
|
||
--success: #28a745;
|
||
}
|
||
|
||
* {
|
||
margin: 0;
|
||
padding: 0;
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
body {
|
||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||
background: linear-gradient(135deg, var(--kaauh-light-bg) 0%, #e3f2fd 100%);
|
||
color: var(--text-primary);
|
||
line-height: 1.6;
|
||
min-height: 100vh;
|
||
padding: 20px;
|
||
}
|
||
|
||
.resume-container {
|
||
max-width: 1200px;
|
||
margin: 0 auto;
|
||
background: var(--white);
|
||
border-radius: 20px;
|
||
box-shadow: 0 20px 60px rgba(0, 99, 110, 0.1);
|
||
overflow: hidden;
|
||
}
|
||
|
||
.header {
|
||
background: linear-gradient(135deg, var(--kaauh-teal) 0%, var(--kaauh-teal-dark) 100%);
|
||
color: var(--white);
|
||
padding: 40px;
|
||
position: relative;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.header::before {
|
||
content: '';
|
||
position: absolute;
|
||
top: -50%;
|
||
right: -10%;
|
||
width: 500px;
|
||
height: 500px;
|
||
background: rgba(255, 255, 255, 0.05);
|
||
border-radius: 50%;
|
||
}
|
||
|
||
.header-content {
|
||
position: relative;
|
||
z-index: 1;
|
||
}
|
||
|
||
.name {
|
||
font-size: 2.5em;
|
||
font-weight: 700;
|
||
margin-bottom: 10px;
|
||
}
|
||
|
||
.title {
|
||
font-size: 1.3em;
|
||
opacity: 0.9;
|
||
margin-bottom: 20px;
|
||
}
|
||
|
||
.contact-info {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
gap: 20px;
|
||
font-size: 0.95em;
|
||
}
|
||
|
||
.contact-item {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
}
|
||
|
||
.main-content {
|
||
display: grid;
|
||
grid-template-columns: 1fr 350px;
|
||
gap: 30px;
|
||
padding: 40px;
|
||
}
|
||
|
||
.left-column {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 30px;
|
||
}
|
||
|
||
.right-column {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 30px;
|
||
}
|
||
|
||
.section {
|
||
background: var(--white);
|
||
border-radius: 12px;
|
||
padding: 25px;
|
||
border: 1px solid var(--kaauh-border);
|
||
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
||
}
|
||
|
||
.section:hover {
|
||
transform: translateY(-2px);
|
||
box-shadow: 0 8px 25px rgba(0, 99, 110, 0.1);
|
||
}
|
||
|
||
.section-title {
|
||
font-size: 1.3em;
|
||
font-weight: 600;
|
||
color: var(--kaauh-teal);
|
||
margin-bottom: 20px;
|
||
padding-bottom: 10px;
|
||
border-bottom: 2px solid var(--kaauh-teal);
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 10px;
|
||
}
|
||
|
||
.summary {
|
||
line-height: 1.8;
|
||
color: var(--text-secondary);
|
||
}
|
||
|
||
.experience-item {
|
||
margin-bottom: 25px;
|
||
padding-bottom: 20px;
|
||
border-bottom: 1px solid var(--kaauh-border);
|
||
}
|
||
|
||
.experience-item:last-child {
|
||
margin-bottom: 0;
|
||
padding-bottom: 0;
|
||
border-bottom: none;
|
||
}
|
||
|
||
.job-header {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: flex-start;
|
||
margin-bottom: 10px;
|
||
}
|
||
|
||
.job-title {
|
||
font-weight: 600;
|
||
color: var(--kaauh-teal-dark);
|
||
font-size: 1.1em;
|
||
}
|
||
|
||
.company {
|
||
color: var(--text-secondary);
|
||
font-weight: 500;
|
||
}
|
||
|
||
.job-period {
|
||
color: var(--text-secondary);
|
||
font-size: 0.9em;
|
||
white-space: nowrap;
|
||
}
|
||
|
||
.achievements {
|
||
margin-top: 10px;
|
||
padding-left: 20px;
|
||
}
|
||
|
||
.achievements li {
|
||
margin-bottom: 5px;
|
||
color: var(--text-secondary);
|
||
}
|
||
|
||
.education-item {
|
||
margin-bottom: 15px;
|
||
padding-bottom: 15px;
|
||
border-bottom: 1px solid var(--kaauh-border);
|
||
}
|
||
|
||
.education-item:last-child {
|
||
margin-bottom: 0;
|
||
padding-bottom: 0;
|
||
border-bottom: none;
|
||
}
|
||
|
||
.degree {
|
||
font-weight: 600;
|
||
color: var(--kaauh-teal-dark);
|
||
}
|
||
|
||
.institution {
|
||
color: var(--text-secondary);
|
||
font-size: 0.95em;
|
||
}
|
||
|
||
.skills-container {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
gap: 8px;
|
||
}
|
||
|
||
.skill-tag {
|
||
background: linear-gradient(135deg, var(--kaauh-teal) 0%, var(--kaauh-teal-dark) 100%);
|
||
color: var(--white);
|
||
padding: 6px 12px;
|
||
border-radius: 20px;
|
||
font-size: 0.85em;
|
||
font-weight: 500;
|
||
}
|
||
|
||
.language-item {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
margin-bottom: 10px;
|
||
padding-bottom: 10px;
|
||
border-bottom: 1px solid var(--kaauh-border);
|
||
}
|
||
|
||
.language-item:last-child {
|
||
margin-bottom: 0;
|
||
padding-bottom: 0;
|
||
border-bottom: none;
|
||
}
|
||
|
||
.language-name {
|
||
font-weight: 500;
|
||
}
|
||
|
||
.proficiency {
|
||
color: var(--text-secondary);
|
||
font-size: 0.9em;
|
||
}
|
||
|
||
.score-card {
|
||
background: linear-gradient(135deg, var(--kaauh-teal) 0%, var(--kaauh-teal-dark) 100%);
|
||
color: var(--white);
|
||
text-align: center;
|
||
padding: 30px 20px;
|
||
border-radius: 12px;
|
||
}
|
||
|
||
.match-score {
|
||
font-size: 3em;
|
||
font-weight: 700;
|
||
margin-bottom: 10px;
|
||
}
|
||
|
||
.score-label {
|
||
font-size: 1.1em;
|
||
opacity: 0.9;
|
||
}
|
||
|
||
.recommendation {
|
||
background: var(--kaauh-light-bg);
|
||
border-left: 4px solid var(--danger);
|
||
padding: 15px;
|
||
border-radius: 8px;
|
||
margin-top: 15px;
|
||
}
|
||
|
||
.recommendation-title {
|
||
font-weight: 600;
|
||
color: var(--danger);
|
||
margin-bottom: 8px;
|
||
}
|
||
|
||
.recommendation-text {
|
||
color: var(--text-secondary);
|
||
font-size: 0.95em;
|
||
}
|
||
|
||
.keyword-tag {
|
||
background: var(--kaauh-light-bg);
|
||
color: var(--kaauh-teal-dark);
|
||
padding: 4px 10px;
|
||
border-radius: 15px;
|
||
font-size: 0.85em;
|
||
font-weight: 500;
|
||
border: 1px solid var(--kaauh-border);
|
||
}
|
||
|
||
.strengths-weaknesses {
|
||
display: grid;
|
||
grid-template-columns: 1fr 1fr;
|
||
gap: 15px;
|
||
}
|
||
|
||
.strength-box {
|
||
background: rgba(40, 167, 69, 0.1);
|
||
border: 1px solid var(--success);
|
||
padding: 15px;
|
||
border-radius: 8px;
|
||
}
|
||
|
||
.weakness-box {
|
||
background: rgba(220, 53, 69, 0.1);
|
||
border: 1px solid var(--danger);
|
||
padding: 15px;
|
||
border-radius: 8px;
|
||
}
|
||
|
||
.box-title {
|
||
font-weight: 600;
|
||
margin-bottom: 8px;
|
||
font-size: 0.9em;
|
||
}
|
||
|
||
.strength-box .box-title {
|
||
color: var(--success);
|
||
}
|
||
|
||
.weakness-box .box-title {
|
||
color: var(--danger);
|
||
}
|
||
|
||
.box-content {
|
||
font-size: 0.9em;
|
||
color: var(--text-secondary);
|
||
}
|
||
|
||
@media (max-width: 968px) {
|
||
.main-content {
|
||
grid-template-columns: 1fr;
|
||
}
|
||
|
||
.strengths-weaknesses {
|
||
grid-template-columns: 1fr;
|
||
}
|
||
}
|
||
|
||
@media (max-width: 640px) {
|
||
.name {
|
||
font-size: 2em;
|
||
}
|
||
|
||
.main-content {
|
||
padding: 20px;
|
||
}
|
||
|
||
.section {
|
||
padding: 20px;
|
||
}
|
||
|
||
.job-header {
|
||
flex-direction: column;
|
||
gap: 5px;
|
||
}
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
|
||
<div class="resume-container">
|
||
<div class="header">
|
||
<div class="header-content">
|
||
<h1 class="name">Abdullah Sami Bakhsh</h1>
|
||
<div class="title">Head, Recruitment & Training</div>
|
||
<div class="contact-info">
|
||
<div class="contact-item">
|
||
<span>📱</span>
|
||
<span>+966 561 168 180</span>
|
||
</div>
|
||
<div class="contact-item">
|
||
<span>✉️</span>
|
||
<span>Bakhsh.Abdullah@Outlook.com</span>
|
||
</div>
|
||
<div class="contact-item">
|
||
<span>📍</span>
|
||
<span>Saudi Arabia</span>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="main-content">
|
||
<div class="left-column">
|
||
<div class="section">
|
||
<h2 class="section-title">
|
||
<span>📋</span> Professional Summary
|
||
</h2>
|
||
<p class="summary">
|
||
Strategic and results‑driven HR leader with over 11 years of experience in human resources, specializing in business partnering, workforce planning, talent acquisition, training & development, and organizational effectiveness.
|
||
</p>
|
||
</div>
|
||
|
||
<div class="section">
|
||
<h2 class="section-title">
|
||
<span>💼</span> Work Experience
|
||
</h2>
|
||
<div class="experience-item">
|
||
<div class="job-header">
|
||
<div>
|
||
<div class="job-title">Head, Recruitment & Training</div>
|
||
<div class="company">TASNEE - DOWNSTREAM & METALLURGY SBUs</div>
|
||
</div>
|
||
<div class="job-period">Oct 2024 - Present</div>
|
||
</div>
|
||
<ul class="achievements">
|
||
<li>Led recruitment and training initiatives across downstream and metallurgical divisions</li>
|
||
<li>Developed workforce analytics program</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="experience-item">
|
||
<div class="job-header">
|
||
<div>
|
||
<div class="job-title">Human Resources Business Partner</div>
|
||
<div class="company">TASNEE – METALLURGY SBU</div>
|
||
</div>
|
||
<div class="job-period">Oct 2015 - Present</div>
|
||
</div>
|
||
<ul class="achievements">
|
||
<li>Implemented HR strategies aligning with business goals</li>
|
||
<li>Optimized recruitment processes</li>
|
||
<li>Ensured regulatory compliance</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="experience-item">
|
||
<div class="job-header">
|
||
<div>
|
||
<div class="job-title">Specialist, Recruitment</div>
|
||
<div class="company">MARAFIQ</div>
|
||
</div>
|
||
<div class="job-period">Jul 2011 - Feb 2013</div>
|
||
</div>
|
||
<ul class="achievements">
|
||
<li>Performed recruitment for various roles</li>
|
||
<li>Improved selection processes</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="section">
|
||
<h2 class="section-title">
|
||
<span>🎓</span> Education
|
||
</h2>
|
||
<div class="education-item">
|
||
<div class="degree">Associate Diploma in People Management Level 5</div>
|
||
<div class="institution">Chartered Institute of Personnel and Development (CIPD)</div>
|
||
</div>
|
||
<div class="education-item">
|
||
<div class="degree">Bachelor's Degree in Chemical Engineering Technology</div>
|
||
<div class="institution">Yanbu Industrial College</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="right-column">
|
||
<div class="score-card">
|
||
<div class="match-score">10%</div>
|
||
<div class="score-label">Match Score</div>
|
||
</div>
|
||
|
||
<div class="section">
|
||
<h2 class="section-title">
|
||
<span>🔍</span> Assessment
|
||
</h2>
|
||
<div class="strengths-weaknesses">
|
||
<div class="strength-box">
|
||
<div class="box-title">Strengths</div>
|
||
<div class="box-content">Extensive HR leadership and project management experience</div>
|
||
</div>
|
||
<div class="weakness-box">
|
||
<div class="box-title">Weaknesses</div>
|
||
<div class="box-content">Lack of IT infrastructure, cybersecurity, and relevant certifications</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="recommendation">
|
||
<div class="recommendation-title">Recommendation</div>
|
||
<div class="recommendation-text">Candidate does not meet the IT management requirements; not recommended for interview.</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="section">
|
||
<h2 class="section-title">
|
||
<span>💡</span> Top Keywords
|
||
</h2>
|
||
<div class="skills-container">
|
||
<span class="keyword-tag">HR</span>
|
||
<span class="keyword-tag">Recruitment</span>
|
||
<span class="keyword-tag">Training</span>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="section">
|
||
<h2 class="section-title">
|
||
<span>🛠️</span> Skills
|
||
</h2>
|
||
<div class="skills-container">
|
||
<span class="skill-tag">Workforce Analytics</span>
|
||
<span class="skill-tag">Succession Planning</span>
|
||
<span class="skill-tag">Organizational Development</span>
|
||
<span class="skill-tag">Recruitment & Selection</span>
|
||
<span class="skill-tag">Employee Engagement</span>
|
||
<span class="skill-tag">Training Needs Analysis</span>
|
||
<span class="skill-tag">Performance Management</span>
|
||
<span class="skill-tag">Time Management</span>
|
||
<span class="skill-tag">Negotiation Skills</span>
|
||
<span class="skill-tag">SAP & HRIS Systems</span>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="section">
|
||
<h2 class="section-title">
|
||
<span>🌍</span> Languages
|
||
</h2>
|
||
<div class="language-item">
|
||
<span class="language-name">Arabic</span>
|
||
<span class="proficiency">Native</span>
|
||
</div>
|
||
<div class="language-item">
|
||
<span class="language-name">English</span>
|
||
<span class="proficiency">Fluent</span>
|
||
</div>
|
||
<div class="language-item">
|
||
<span class="language-name">Japanese</span>
|
||
<span class="proficiency">Intermediate</span>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
</html> |