commit 55c953667f33e9e7a52033ddfa3964e085a73660 Author: Ahmed Alweli Date: Tue May 12 19:44:21 2026 +0300 Initial commit: personal CV static site (HTML/CSS, i18n, Docker) Co-authored-by: Cursor diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..d1f5aa9 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,6 @@ +.git +.gitignore +Dockerfile +.dockerignore +*.md +.cursor diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..a5fb54d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM nginx:1.25-alpine + +WORKDIR /usr/share/nginx/html + +# أنسخ كل الملفات المتاحة (index.html، CSS، JS، مجلد assets، إلخ) +COPY . . + +EXPOSE 80 diff --git a/assets/Certificates/Certificate Of Completion_Practice Exam 1 for PMI Project Management Professional PMP.pdf b/assets/Certificates/Certificate Of Completion_Practice Exam 1 for PMI Project Management Professional PMP.pdf new file mode 100644 index 0000000..05304e9 Binary files /dev/null and b/assets/Certificates/Certificate Of Completion_Practice Exam 1 for PMI Project Management Professional PMP.pdf differ diff --git a/assets/Certificates/CertificateOfCompletion_Atlassian Agile Project Management Professional Certificate.pdf b/assets/Certificates/CertificateOfCompletion_Atlassian Agile Project Management Professional Certificate.pdf new file mode 100644 index 0000000..baed440 Binary files /dev/null and b/assets/Certificates/CertificateOfCompletion_Atlassian Agile Project Management Professional Certificate.pdf differ diff --git a/assets/Certificates/Data Science Understanding the Basics.pdf b/assets/Certificates/Data Science Understanding the Basics.pdf new file mode 100644 index 0000000..55eae2c Binary files /dev/null and b/assets/Certificates/Data Science Understanding the Basics.pdf differ diff --git a/assets/Certificates/NJS_Certificate (1).pdf b/assets/Certificates/NJS_Certificate (1).pdf new file mode 100644 index 0000000..720ee8f Binary files /dev/null and b/assets/Certificates/NJS_Certificate (1).pdf differ diff --git a/assets/Certificates/Overcoming Your Fear of Public Speaking 2014.pdf b/assets/Certificates/Overcoming Your Fear of Public Speaking 2014.pdf new file mode 100644 index 0000000..3cfa7f5 Binary files /dev/null and b/assets/Certificates/Overcoming Your Fear of Public Speaking 2014.pdf differ diff --git a/assets/Certificates/Project Management Iterative Methods.pdf b/assets/Certificates/Project Management Iterative Methods.pdf new file mode 100644 index 0000000..d8a80c2 Binary files /dev/null and b/assets/Certificates/Project Management Iterative Methods.pdf differ diff --git a/assets/Certificates/Public Speaking Foundations 2012.pdf b/assets/Certificates/Public Speaking Foundations 2012.pdf new file mode 100644 index 0000000..bc04b6a Binary files /dev/null and b/assets/Certificates/Public Speaking Foundations 2012.pdf differ diff --git a/assets/Certificates/Thought Leadership 2012.pdf b/assets/Certificates/Thought Leadership 2012.pdf new file mode 100644 index 0000000..37d9794 Binary files /dev/null and b/assets/Certificates/Thought Leadership 2012.pdf differ diff --git a/assets/Certificates/Writing Articles 2013.pdf b/assets/Certificates/Writing Articles 2013.pdf new file mode 100644 index 0000000..d4aed59 Binary files /dev/null and b/assets/Certificates/Writing Articles 2013.pdf differ diff --git a/assets/photo.jpg b/assets/photo.jpg new file mode 100644 index 0000000..135b030 Binary files /dev/null and b/assets/photo.jpg differ diff --git a/cv_style.css b/cv_style.css new file mode 100644 index 0000000..4e47d34 --- /dev/null +++ b/cv_style.css @@ -0,0 +1,1110 @@ +/* Shine-inspired layout (light mode). Colors from theme: primary #fe655c, page #F5F7FA — see https://themes.3rdwavemedia.com/demo/bs5/shine/ */ + +:root { + --theme-primary: #fe655c; + --theme-secondary-blue: #629feb; + --theme-bg-light: #f5f7fa; + --theme-text-primary: #121822; + --theme-text-secondary: #5c667a; + --theme-border: #dbe2ea; + --theme-badge-bg: #4f6591; + --theme-progress-fill: #7d8fb0; + --resume-max-width: 980px; + --shadow-card: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08); +} + +* { + box-sizing: border-box; +} + +body.light-mode { + margin: 0; + font-family: "Inter", system-ui, -apple-system, sans-serif; + background: var(--theme-bg-light); + color: var(--theme-text-secondary); + font-size: 0.9375rem; + line-height: 1.55; + -webkit-print-color-adjust: exact; + print-color-adjust: exact; +} + +h1, h2, h3 { + color: var(--theme-text-primary); +} + +a { + color: var(--theme-secondary-blue); + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} + +.page-wrap { + min-height: 100vh; + padding-bottom: 2rem; +} + +.main-content-wrapper { + max-width: 100%; +} + +/* Top bar: email + print/PDF */ +.top-bar { + padding: 1rem 1rem 0; + max-width: var(--resume-max-width); + margin: 0 auto; +} + +.top-bar-inner { + display: flex; + align-items: center; + justify-content: center; + flex-wrap: wrap; + gap: 0.5rem; +} + +@media (max-width: 480px) { + .top-bar-btn { + padding: 0.5rem 0.8rem !important; /* Smaller buttons on mobile */ + font-size: 0.75rem !important; + } + .top-bar-btn i { + margin-right: 0.25rem !important; + } +} + +/* Premium Button Styles */ +.btn { + display: inline-flex; + align-items: center; + justify-content: center; + font-weight: 600; + padding: 0.6rem 1.5rem; + font-size: 0.9rem; + border-radius: 50px; + border: none; + cursor: pointer; + text-align: center; + font-family: inherit; + transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); + text-decoration: none !important; + gap: 0.5rem; + box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); +} + +.btn { + padding: 0.6rem 1.25rem; + font-weight: 700; + font-size: 0.85rem; + border-radius: 50px; + transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Modern bounce effect */ + display: inline-flex; + align-items: center; + gap: 0.5rem; + border: none; + box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); +} + +.btn:hover { + transform: translateY(-3px) scale(1.03); + box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); +} + +.btn:active { + transform: translateY(-1px) scale(1); +} + +.btn i { + font-size: 1.1rem; +} + +/* Call Button - Green Gradient */ +.btn-call { + background: linear-gradient(135deg, #28a745 0%, #20c997 100%); + color: white; +} + +.btn-call:hover { + background: linear-gradient(135deg, #218838 0%, #17a689 100%); + color: white; +} + +/* Email Button - Primary Gradient */ +.btn-email { + background: linear-gradient(135deg, #fe655c 0%, #ff8e87 100%); + color: white; +} + +.btn-email:hover { + background: linear-gradient(135deg, #fe4d43 0%, #ff766d 100%); + color: white; +} + +/* Print Button - Neutral/Glass Look */ +.btn-print { + background: #fff; + color: var(--theme-text-primary); + border: 1px solid var(--theme-border); +} + +.btn-print:hover { + background: #f8fafc; + border-color: var(--theme-text-primary); +} + +/* Language toggle (icon only) */ +.btn-lang-toggle { + width: 2.75rem; + height: 2.75rem; + min-width: 2.75rem; + padding: 0 !important; + border-radius: 50% !important; + background: #fff; + color: var(--theme-text-primary); + border: 1px solid var(--theme-border) !important; + box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06) !important; + flex-shrink: 0; +} + +.btn-lang-toggle i { + font-size: 1.25rem; + margin: 0 !important; +} + +.btn-lang-toggle:hover { + border-color: var(--theme-primary) !important; + color: var(--theme-primary); +} + +body.lang-ar { + font-family: "IBM Plex Sans Arabic", "Inter", system-ui, sans-serif; +} + +[dir="rtl"] .resume-summary-desc { + text-align: right; +} + +[dir="rtl"] .header-container { + flex-direction: row-reverse; +} + +@media (max-width: 991.98px) { + [dir="rtl"] .header-container { + flex-direction: column; + } +} + +[dir="rtl"] .header-right { + border-left: none; + padding-left: 0; + border-right: 2px solid var(--theme-border); + padding-right: 2rem; +} + +@media (max-width: 991.98px) { + [dir="rtl"] .header-right { + border-right: none; + padding-right: 0; + } +} + +[dir="rtl"] .resume-section-heading::after { + left: auto; + right: 0; +} + +@media (min-width: 992px) { + [dir="rtl"] .col-main { + border-right: none; + padding-right: 0; + border-left: 1px solid var(--theme-border); + padding-left: 1.75rem; + } + + [dir="rtl"] .col-side { + padding-left: 0; + padding-right: 1.75rem; + } +} + +[dir="rtl"] .resume-timeline { + padding-left: 0; + padding-right: 1.5rem; +} + +[dir="rtl"] .resume-timeline::before { + left: auto; + right: 0; +} + +[dir="rtl"] .resume-timeline-item::before { + left: auto; + right: -1.5rem; + transform: translateX(50%); +} + +[dir="rtl"] .resume-timeline-list { + padding-left: 0; + padding-right: 1.25rem; +} + +[dir="rtl"] .resume-timeline-list li::before { + left: auto; + right: -1.25rem; +} + +[dir="rtl"] .item-desc { + padding-left: 0; + padding-right: 1rem; +} + +[dir="rtl"] .item-desc a { + margin-inline-start: 0; + margin-inline-end: 0; +} + +@media (max-width: 576px) { + .top-bar { + padding-left: 0.5rem; + padding-right: 0.5rem; + } + + .top-bar-inner { + flex-direction: row; + flex-wrap: nowrap; + justify-content: center; + align-items: center; + gap: 0.35rem; + max-width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + scrollbar-width: thin; + padding-bottom: 0.2rem; + } + + .top-bar-inner::-webkit-scrollbar { + height: 3px; + } + + .top-bar-inner::-webkit-scrollbar-thumb { + background: var(--theme-border); + border-radius: 3px; + } + + /* واحد سطر: لا تمديد كامل العرض */ + .top-bar-inner .btn:not(.btn-lang-toggle) { + width: auto; + flex: 0 0 auto; + min-width: 0; + padding: 0.42rem 0.55rem !important; + font-size: 0.68rem !important; + gap: 0.28rem !important; + } + + .top-bar-inner .btn:not(.btn-lang-toggle) span { + white-space: nowrap; + } + + .top-bar-inner .btn-lang-toggle { + flex: 0 0 auto; + } + + .top-bar-inner .btn i { + font-size: 0.95rem; + } +} + +/* Resume card */ +.resume-wrapper { + position: relative; + max-width: var(--resume-max-width); + margin: 2rem auto 0; + padding-top: 1.75rem; + background: #fff; + border-radius: 0.375rem; + box-shadow: var(--shadow-card); +} + +.resume-header { + background: #fff; + padding: 2rem; /* Reduced from 3rem */ + border-radius: 20px 20px 0 0; + border-bottom: 1px solid var(--theme-border); +} + +.header-container { + display: flex; + align-items: center; + justify-content: space-between; + gap: 2rem; +} + +.header-left { + flex-shrink: 0; +} + +.resume-profile-pic { + width: 200px; + height: 260px; + object-fit: cover; + border-radius: 12px; + border: 1px solid var(--theme-border); + box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); +} + +.header-center { + flex-grow: 1; +} + +.header-right { + flex-shrink: 0; + border-left: 2px solid var(--theme-border); + padding-left: 2rem; +} + +.resume-name { + margin: 0; + font-size: 3.2rem; + font-weight: 900; + letter-spacing: -1.5px; + line-height: 1.1; + color: var(--theme-text-primary); +} + +.resume-role-title { + margin: 0.5rem 0 0; + font-size: 1.15rem; + font-weight: 600; + text-transform: none; + letter-spacing: normal; + color: var(--theme-primary); + background: none; + padding: 0; +} + +.resume-contact-list { + list-style: none; + margin: 0; + padding: 0; + display: flex; + flex-direction: column; /* Vertical column */ + gap: 0.75rem; +} + +.resume-contact-list li { + display: flex; + align-items: center; + gap: 0.8rem; + font-size: 0.9rem; + color: var(--theme-text-secondary); + white-space: nowrap; +} + +.resume-contact-list li:hover { + color: var(--theme-primary); +} + +.resume-contact-list i { + color: var(--theme-primary); + background: rgba(255, 107, 107, 0.08); + width: 32px; + height: 32px; + display: flex; + align-items: center; + justify-content: center; + border-radius: 8px; + font-size: 1rem; + flex-shrink: 0; +} + +@media (max-width: 991.98px) { + .header-container { + flex-direction: column; + text-align: center; + gap: 1.5rem; + } + + .header-right { + border-left: none; + padding-left: 0; + border-top: 1px solid var(--theme-border); + padding-top: 1.5rem; + width: 100%; + } + + .resume-contact-list { + align-items: center; + } + + .resume-name { + font-size: 2.2rem; + } +} + +/* About full width, then two columns */ +.resume-body { + display: flex; + flex-direction: column; + padding: 1.5rem 1.5rem 2rem; +} + +@media (min-width: 992px) { + .resume-body { + padding: 2rem 2.5rem 2.5rem; + } +} + +.resume-about-fullwidth { + width: 100%; +} + +.resume-about-fullwidth .resume-section { + margin-bottom: 0; +} + +.section-rule--after-about { + margin-top: 1.25rem; + margin-bottom: 1.5rem; +} + +.resume-columns { + display: flex; + flex-wrap: wrap; + gap: 0; + width: 100%; +} + +.col-main { + flex: 1 1 100%; + padding-right: 0; + border-right: none; +} + +.col-side { + flex: 1 1 100%; + padding-left: 0; + padding-top: 0; +} + +@media (max-width: 991px) { + .resume-columns .col-side { + margin-top: 0.25rem; + padding-top: 1.25rem; + border-top: 1px solid var(--theme-border); + } +} + +@media (min-width: 992px) { + .col-main { + flex: 1 1 64%; + max-width: 64%; + padding-right: 1.75rem; + border-right: 1px solid var(--theme-border); + } + + .col-side { + flex: 1 1 34%; + max-width: 36%; + padding-left: 1.75rem; + padding-top: 0; + border-top: none; + margin-top: 0; + } +} + +.resume-section { + margin-bottom: 1.25rem; +} + +.resume-section-heading { + position: relative; + padding-bottom: 0.5rem; + margin-bottom: 1.5rem; + display: inline-block; + font-size: 1.05rem; + font-weight: 900; + letter-spacing: 0.12rem; + text-transform: uppercase; + color: var(--theme-text-primary); +} + +.resume-section-heading::after { + content: ""; + position: absolute; + left: 0; + bottom: 0; + width: 40px; + height: 4px; + background: var(--theme-primary); + border-radius: 2px; +} + +.resume-summary-desc { + font-size: 1rem; + line-height: 1.8; + color: var(--theme-text-secondary); + background: #fff; + padding: 1.5rem; + border-radius: 12px; + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02); +} + +.section-rule { + border: none; + border-top: 1px solid var(--theme-border); + margin: 1.25rem 0; +} + +.muted-block { + margin: 0; + color: var(--theme-text-secondary); +} + +/* Timeline */ +/* Work Experience Timeline Improvements */ +.resume-timeline { + position: relative; + padding-left: 1.5rem; +} + +.resume-timeline::before { + content: ""; + position: absolute; + left: 0; + top: 5px; + bottom: 0; + width: 2px; + background: linear-gradient(to bottom, var(--theme-primary) 0%, var(--theme-border) 100%); + border-radius: 4px; + opacity: 0.6; +} + +.resume-timeline-item { + position: relative; + padding-bottom: 2.5rem; + transition: all 0.3s ease; +} + +.resume-timeline-item:last-child { + padding-bottom: 0; +} + +.resume-timeline-item::before { + content: ""; + position: absolute; + left: -1.5rem; + top: 6px; + width: 12px; + height: 12px; + border-radius: 50%; + border: 3px solid #fff; + background: var(--theme-primary); + box-shadow: 0 0 0 3px rgba(254, 101, 92, 0.2); + z-index: 1; + transform: translateX(-50%); +} + +.resume-timeline-item:hover::before { + transform: translateX(-50%) scale(1.2); + box-shadow: 0 0 0 5px rgba(254, 101, 92, 0.3); +} + +.resume-timeline-item-header { + margin-bottom: 0.75rem; +} + +.resume-position-meta { + display: flex; + flex-direction: row-reverse; /* Put date on the right usually, or keep consistent */ + justify-content: space-between; + align-items: center; + margin-bottom: 0.5rem; +} + +.resume-position-time { + font-size: 0.8rem; + font-weight: 700; + color: var(--theme-text-primary); + background: #f1f5f9; + padding: 0.25rem 0.75rem; + border-radius: 20px; + border: 1px solid var(--theme-border); +} + +.resume-company-name { + font-size: 0.9rem; + font-weight: 800; + color: var(--theme-primary); + text-transform: uppercase; + letter-spacing: 0.05rem; +} + +.resume-position-title { + margin: 0; + font-size: 1.15rem; + font-weight: 800; + color: var(--theme-text-primary); + line-height: 1.3; +} + +.resume-timeline-list { + margin: 0.5rem 0 0; + padding-left: 1.25rem; + list-style: none; +} + +.resume-timeline-list li { + position: relative; + margin-bottom: 0.6rem; + color: var(--theme-text-secondary); + line-height: 1.6; +} + +.resume-timeline-list li::before { + content: "→"; + position: absolute; + left: -1.25rem; + color: var(--theme-primary); + font-weight: bold; + font-size: 0.9rem; +} + +@media (max-width: 640px) { + .resume-position-meta { + flex-direction: column; + align-items: flex-start; + gap: 0.5rem; + } + .resume-timeline { + padding-left: 1.25rem; + } +} + +/* Tech stack progress */ +.skill-progress-list { + list-style: none; + margin: 0; + padding: 0; +} + +.skill-progress-list > li { + margin-bottom: 0.85rem; +} + +.resume-skill-name { + font-size: 0.875rem; + font-weight: 700; + color: var(--theme-text-primary); + margin-bottom: 0.35rem; + display: flex; + justify-content: space-between; +} + +.resume-progress { + height: 8px; + background: #eef2f7; + border-radius: 10px; + overflow: hidden; +} + +.resume-progress-bar { + height: 100%; + border-radius: 10px; + background: linear-gradient(90deg, var(--theme-primary) 0%, #ff8e87 100%); + box-shadow: 0 2px 4px rgba(254, 101, 92, 0.2); +} + +/* Soft skill badges */ +.badge-list { + list-style: none; + margin: 0; + padding: 0; + display: flex; + flex-wrap: wrap; + gap: 0.5rem; +} + +.resume-skill-badge { + display: inline-block; + background: #fff; + color: var(--theme-text-primary); + border: 1px solid var(--theme-border); + padding: 0.5rem 1rem; + font-size: 0.8rem; + font-weight: 600; + border-radius: 10px; + transition: all 0.3s ease; +} + +.resume-skill-badge:hover { + background: var(--theme-primary); + color: #fff; + border-color: var(--theme-primary); + transform: translateY(-2px); + box-shadow: 0 4px 10px rgba(254, 101, 92, 0.2); +} + +/* Certifications / projects block */ +.resume-projects-section .item { + background: #fff; + padding: 0.75rem; /* Reduced padding */ + border-radius: 10px; + border: 1px solid var(--theme-border); + transition: all 0.3s ease; + margin-bottom: 0.75rem; +} + +.resume-projects-section .item:hover { + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); + border-color: var(--theme-primary); +} + +.item-heading { + margin: 0; + font-size: 0.85rem; /* Even smaller */ + font-weight: 700; + color: var(--theme-text-primary); + display: flex; + align-items: center; + gap: 0.3rem; +} + +.item-icon { + font-size: 0.65rem; + color: var(--theme-primary); +} + +.item-desc { + font-size: 0.75rem; + padding-left: 1rem; + color: var(--theme-text-secondary); + line-height: 1.2; +} + +.item-desc a { + display: block; /* Forced to be on its own line */ + width: fit-content; /* Only as wide as the text */ + margin-top: 0.4rem; /* Added more space from the text */ + font-size: 0.6rem; + font-weight: 700; + text-transform: uppercase; + color: var(--theme-primary); + text-decoration: none; + border: 1px solid var(--theme-primary); + padding: 0.15rem 0.4rem; + border-radius: 3px; + transition: all 0.3s ease; +} + +.item-desc a:hover { + background: var(--theme-primary); + color: #fff; + text-decoration: none; +} + +.education-list { + list-style: none; + margin: 0; + padding: 0; +} + +.education-list li { + padding: 1rem; + background: #fcfdfe; + border-radius: 10px; + border: 1px solid var(--theme-border); + margin-bottom: 1rem; +} + +.resume-degree { + font-weight: 700; + font-size: 1rem; + color: var(--theme-primary); +} + +.resume-degree-org, +.resume-degree-time { + font-size: 0.85rem; +} + +/* Languages level */ +.resume-lang-list { + list-style: none; + margin: 0; + padding: 0; +} + +.resume-lang-list > li { + margin-bottom: 0.75rem; +} + +.resume-lang-name { + font-weight: 700; + font-size: 0.875rem; + color: var(--theme-text-primary); + margin-bottom: 0.25rem; +} + +.resume-level-indicator { + display: flex; + gap: 4px; + width: 100%; +} + +.resume-level-indicator .item { + flex: 1; + min-height: 6px; + border-radius: 4px; + background: #eef2f7; +} + +.resume-level-indicator .item-full { + background: linear-gradient(90deg, var(--theme-primary) 0%, #ff8e87 100%); +} + +.resume-level-indicator .item-half { + position: relative; + background: #eef2f7; +} + +.resume-level-indicator .item-half::after { + content: ""; + position: absolute; + left: 0; + top: 0; + width: 50%; + height: 100%; + background: linear-gradient(90deg, var(--theme-primary) 0%, #ff8e87 100%); + border-radius: 4px 0 0 4px; +} + +/* Sidebar Sections as Cards */ +.col-side .resume-section { + background: #fff; + padding: 1.5rem; + border-radius: 15px; + box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03); + margin-bottom: 2rem; +} + +.col-side .section-rule { + display: none; +} + +.footer { + text-align: center; + padding: 3rem 1rem; + max-width: var(--resume-max-width); + margin: 0 auto; + opacity: 0.7; +} + +.copyright { + font-size: 0.72rem; + color: var(--theme-text-secondary); + line-height: 1.5; +} + +.copyright a { + color: var(--theme-text-secondary); + text-decoration: underline; +} + +@media print { + @page { + margin: 0.8cm; + size: A4; + } + + body { + background: #fff !important; + font-size: 9pt !important; + line-height: 1.3; + color: #000 !important; + font-family: serif !important; /* Classic serif for formal print */ + } + + .no-print, .resume-profile-pic, .resume-contact-list i, .soft-skill-item i, .progress, .resume-level-indicator, .footer, .section-rule, .top-bar { + display: none !important; + } + + .resume-wrapper { + margin: 0 !important; + padding: 0 !important; + box-shadow: none !important; + border: none !important; + width: 100% !important; + max-width: 100% !important; + } + + .resume-header { + padding: 0 0 0.5rem 0 !important; + border-bottom: 1px solid #000 !important; + margin-bottom: 1rem !important; + text-align: left !important; + } + + .resume-name { + font-size: 20pt !important; + font-weight: bold !important; + text-transform: uppercase !important; + margin: 0 !important; + } + + .resume-role-title { + font-size: 11pt !important; + font-weight: bold !important; + margin: 0.2rem 0 !important; + padding: 0 !important; + background: none !important; + } + + .resume-contact-list { + display: block !important; + margin: 0.3rem 0 !important; + } + + .resume-contact-list li { + display: inline !important; + font-size: 8.5pt !important; + } + + .resume-contact-list li:not(:last-child)::after { + content: " | "; + margin: 0 0.3rem; + } + + /* Column Reordering for Print */ + .resume-body { + display: flex !important; + flex-direction: column !important; + } + + .col-main, .col-side { + width: 100% !important; + display: flex !important; + flex-direction: column !important; + } + + /* Assigning orders to match user request */ + #section-about { order: 1; } + #section-education { order: 2; } + #section-certifications { order: 3; } + #section-tech-skills { order: 4; } + #section-experience { order: 5; page-break-before: always; margin-top: 1cm; } + #section-soft-skills { order: 6; } + #section-languages { order: 7; } + + .resume-section { + margin-bottom: 1rem !important; + } + + .resume-section-heading { + font-size: 11pt !important; + font-weight: bold !important; + text-transform: uppercase !important; + border-bottom: 0.5px solid #000 !important; + margin-bottom: 0.5rem !important; + padding-bottom: 1px !important; + } + + /* Professional lists for skills */ + .soft-skills-grid, .skill-progress-list { + display: block !important; + margin: 0 !important; + } + + .soft-skill-item, .skill-progress-list li { + display: inline !important; + border: none !important; + padding: 0 !important; + background: none !important; + } + + .soft-skill-item span, .resume-skill-name { + font-size: 9pt !important; + } + + .soft-skill-item:not(:last-child)::after, + .skill-progress-list li:not(:last-child)::after { + content: " | "; + margin: 0 0.3rem; + } + + /* Experience styling */ + .resume-timeline-item-header { + display: flex !important; + justify-content: space-between !important; + font-weight: bold !important; + } + + .resume-company-name { + font-style: italic !important; + margin-bottom: 0.2rem !important; + } + + .resume-timeline-list { + margin-top: 0.2rem !important; + padding-left: 1rem !important; + } + + .item { + display: flex !important; + justify-content: space-between !important; + margin-bottom: 0.3rem !important; + } +} + +/* Soft Skills Grid */ +.soft-skills-grid { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); + gap: 1.5rem; + margin-top: 1.5rem; +} + +.soft-skill-item { + display: flex; + align-items: center; + gap: 1rem; + background: #fff; + padding: 1rem; + border-radius: 12px; + border: 1px solid var(--theme-border); + transition: all 0.3s ease; +} + +.soft-skill-item:hover { + transform: translateY(-3px); + box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06); + border-color: var(--theme-primary); +} + +.soft-skill-item i { + font-size: 1.25rem; + color: var(--theme-primary); + background: rgba(255, 107, 107, 0.1); + width: 40px; + height: 40px; + display: flex; + align-items: center; + justify-content: center; + border-radius: 10px; + flex-shrink: 0; +} + +.soft-skill-item span { + font-size: 0.9rem; + font-weight: 600; + color: var(--theme-text-primary); +} + +@media (max-width: 767.98px) { + .soft-skills-grid { + grid-template-columns: 1fr; + gap: 1rem; + } +} + diff --git a/i18n.js b/i18n.js new file mode 100644 index 0000000..6b06202 --- /dev/null +++ b/i18n.js @@ -0,0 +1,246 @@ +(function () { + "use strict"; + + var STORAGE_KEY = "cv-lang"; + + var STRINGS = { + en: { + doc_title: "Ahmed Alweli | CV", + btn_call: "Call Me", + btn_email: "Email Me", + btn_print: "Print CV", + btn_print_aria: "Print or save as PDF", + lang_toggle_to_ar: "Switch to Arabic", + lang_toggle_to_en: "Switch to English", + + role_title: "Operations & Systems Development Specialist", + contact_location: "Baghdad, Iraq", + + about: + "Experienced Operations & Systems Development Specialist with a strong background in administrative operations, process optimization, ERP development, and organizational management across engineering and technology-driven environments. Proven ability to develop and improve administrative systems, coordinate cross-functional operations, and support strategic decision-making with high standards of organization and execution.", + + section_work: "Work Experience", + section_soft: "Soft Skills", + section_cert: "Certifications", + section_edu: "Education", + section_lang: "Languages", + section_tech: "Technical Skills", + + job1_title: "Assistant Manager – Operations & ERP Development", + job1_b1: "Assisted management in developing internal workflow systems and administrative structures.", + job1_b2: "Participated in building an integrated ERP platform for company operations management.", + job1_b3: "Coordinated between departments to improve efficiency and streamline procedures.", + + job2_title: "Site Supervision", + job2_b1: "Supervised execution for the Al Baghdadi Restaurant project (Palestine Street, Baghdad).", + job2_b2: "Coordinated with contractors and suppliers for quality and schedule compliance.", + job2_b3: "Monitored on-site progress and resolved execution issues.", + + job3_title: "Administration & Site Supervisor", + job3_b1: "Oversaw daily administration and coordination between design, site, and management.", + job3_b2: "Managed attendance, communications, documentation, and site compliance.", + + job4_title: "Administrative Specialist", + job4_b1: "Supported project operations, scheduling, documentation, and team coordination.", + + job5_title: "Senior Document Controller – Basrah Water Project", + job5_b1: "Managed project documentation and administration with Arab Contractors and Hitachi.", + job5_b2: "Oversaw filing, progress tracking, invoices, and stakeholder coordination.", + job5_b3: "Standardized documentation workflows to improve efficiency and delivery.", + + job6_title: "Logistics", + job6_b1: "Managed inventory, supplier coordination, and shipment tracking.", + + soft_1: "Operations Management", + soft_2: "Process Optimization", + soft_3: "Digital Transformation", + soft_4: "Project Coordination", + soft_5: "Site Supervision", + soft_6: "Documentation & Compliance", + + cert_1_title: "Atlassian Agile Project Management", + cert_1_desc: "Professional Certificate.", + cert_2_title: "PMI PMP Practice Exam", + cert_2_desc: "Project Management Professional.", + cert_3_title: "Project Management: Iterative Methods", + cert_3_desc: "Advanced methodology training.", + cert_4_title: "Thought Leadership", + cert_4_desc: "Certified — 2012.", + cert_5_title: "Public Speaking Foundations", + cert_5_desc: "Certified — 2012.", + cert_6_title: "Writing Articles", + cert_6_desc: "Certified — 2013.", + cert_7_title: "Critical Thinking", + cert_7_desc: "Certified — 2013.", + cert_8_title: "Emotional Intelligence", + cert_8_desc: "Certified — 2013.", + + view_certificate: "View Certificate", + + edu_degree: "B.Sc. in Chemistry Science", + edu_org: "University of Baghdad", + + lang_ar_label: "Arabic", + lang_en_label: "English", + + skill_1: "MS Excel & Office", + skill_2: "MS Project / Primavera P6", + skill_3: "AutoCAD / Revit / 3ds Max", + skill_4: "SharePoint / EDMS", + skill_5: "ERP & Workflow Design", + skill_6: "Adobe (Ps / Ai / Acrobat)", + + + }, + + ar: { + doc_title: "أحمد الوليعي | السيرة الذاتية", + btn_call: "اتصل بي", + btn_email: "البريد", + btn_print: "طباعة السيرة", + btn_print_aria: "طباعة أو حفظ PDF", + lang_toggle_to_ar: "التبديل إلى العربية", + lang_toggle_to_en: "التبديل إلى الإنجليزية", + + role_title: "أخصائي عمليات وتطوير أنظمة", + contact_location: "بغداد، العراق", + + about: + "أخصائي عمليات وتطوير أنظمة يتمتع بخبرة واسعة في العمليات الإدارية، وتحسين الإجراءات، وتطوير أنظمة تخطيط موارد المؤسسة (ERP)، والإدارة التنظيمية في بيئات هندسية ومعتمدة على التكنولوجيا. اثبت القدرة على تطوير الأنظمة الإدارية، وتنسيق العمل بين الأقسام، ودعم اتخاذ القرار الاستراتيجي بمعايير عالية من التنظيم والإنجاز.", + + section_work: "الخبرة العملية", + section_soft: "المهارات الناعمة", + section_cert: "الشهادات والدورات", + section_edu: "التعليم", + section_lang: "اللغات", + section_tech: "المهارات التقنية", + + job1_title: "مساعد مدير – العمليات وتطوير ERP", + job1_b1: "المساعدة في تطوير أنظمة سير العمل والهيكل الإداري الداخلي.", + job1_b2: "المشاركة في بناء منصة ERP متكاملة لإدارة عمليات الشركة.", + job1_b3: "التنسيق بين الأقسام لرفع الكفاءة وتبسيط الإجراءات.", + + job2_title: "إشراف ميداني", + job2_b1: "الإشراف على التنفيذ لمشروع مطعم البغدادي (شارع فلسطين، بغداد).", + job2_b2: "التنسيق مع المقاولين والمورّدين لضمان الجودة والالتزام بالجدول الزمني.", + job2_b3: "متابعة التقدم في الموقع وحل مشكلات التنفيذ.", + + job3_title: "إدارة ميدانية وإدارية", + job3_b1: "الإشراف على العمليات الإدارية اليومية والتنسيق بين التصميم والموقع والإدارة.", + job3_b2: "إدارة الحضور والاتصالات والوثائق والالتزام في الموقع.", + + job4_title: "أخصائي إداري", + job4_b1: "دعم عمليات المشاريع والجداول والوثائق وتنسيق الفريق.", + + job5_title: "مسؤول وثائق أول – مشروع ماء البصرة", + job5_b1: "إدارة الوثائق والشؤون الإدارية مع المقاولون العرب وهيتاشي.", + job5_b2: "متابعة الأرشفة وتقدم العمل والفواتير وتنسيق أصحاب المصلحة.", + job5_b3: "توحيد مسارات الوثائق لتحسين الكفاءة والتسليم.", + + job6_title: "لوجستيات", + job6_b1: "إدارة المخزون والمورّدين وتتبع الشحنات.", + + soft_1: "إدارة العمليات", + soft_2: "تحسين العمليات", + soft_3: "التحول الرقمي", + soft_4: "تنسيق المشاريع", + soft_5: "الإشراف الميداني", + soft_6: "الوثائق والامتثال", + + cert_1_title: "إدارة مشروع أجايل – أتلسيان", + cert_1_desc: "شهادة مهنية.", + cert_2_title: "امتحان تجريبي PMP – PMI", + cert_2_desc: "محترف إدارة المشاريع.", + cert_3_title: "إدارة المشاريع: الأساليب التكرارية", + cert_3_desc: "تدريب متقدم في المنهجيات.", + cert_4_title: "القيادة الفكرية", + cert_4_desc: "معتمد — 2012.", + cert_5_title: "أساسيات التحدث أمام الجمهور", + cert_5_desc: "معتمد — 2012.", + cert_6_title: "كتابة المقالات", + cert_6_desc: "معتمد — 2013.", + cert_7_title: "التفكير النقدي", + cert_7_desc: "معتمد — 2013.", + cert_8_title: "الذكاء العاطفي", + cert_8_desc: "معتمد — 2013.", + + view_certificate: "عرض الشهادة", + + edu_degree: "بكالوريوس في علوم الكيمياء", + edu_org: "جامعة بغداد", + + lang_ar_label: "العربية", + lang_en_label: "الإنجليزية", + + skill_1: "MS Excel والأوفيس", + skill_2: "MS Project / Primavera P6", + skill_3: "AutoCAD / Revit / 3ds Max", + skill_4: "SharePoint / EDMS", + skill_5: "تخطيط موارد المؤسسة وتصميم سير العمل", + skill_6: "Adobe (Ps / Ai / Acrobat)", + + + }, + }; + + function applyLang(lang) { + if (lang !== "en" && lang !== "ar") lang = "en"; + var bundle = STRINGS[lang]; + + document.documentElement.lang = lang === "ar" ? "ar" : "en"; + document.documentElement.dir = lang === "ar" ? "rtl" : "ltr"; + document.body.classList.toggle("lang-ar", lang === "ar"); + + document.title = bundle.doc_title; + + var printBtn = document.getElementById("btn-print"); + if (printBtn && bundle.btn_print_aria) { + printBtn.setAttribute("aria-label", bundle.btn_print_aria); + } + var langToggle = document.getElementById("btn-lang-toggle"); + if (langToggle) { + langToggle.setAttribute( + "aria-label", + lang === "en" ? bundle.lang_toggle_to_ar : bundle.lang_toggle_to_en + ); + } + + document.querySelectorAll("[data-i18n]").forEach(function (el) { + var key = el.getAttribute("data-i18n"); + if (key && bundle[key] !== undefined) { + if (el.getAttribute("data-i18n-html") === "true") { + el.innerHTML = bundle[key]; + } else { + el.textContent = bundle[key]; + } + } + }); + + try { + localStorage.setItem(STORAGE_KEY, lang); + } catch (e) {} + } + + function init() { + var saved = null; + try { + saved = localStorage.getItem(STORAGE_KEY); + } catch (e) {} + var initial = saved === "ar" || saved === "en" ? saved : "en"; + applyLang(initial); + + var langToggle = document.getElementById("btn-lang-toggle"); + if (langToggle) { + langToggle.addEventListener("click", function () { + var next = document.documentElement.lang === "ar" ? "en" : "ar"; + applyLang(next); + }); + } + } + + if (document.readyState === "loading") { + document.addEventListener("DOMContentLoaded", init); + } else { + init(); + } +})(); diff --git a/index.html b/index.html new file mode 100644 index 0000000..ede3ded --- /dev/null +++ b/index.html @@ -0,0 +1,360 @@ + + + + + + + Ahmed Alweli | CV + + + + + + + + +
+
+
+
+ Call Me + Email Me + + +
+
+ +
+
+
+
+ Ahmed Alweli +
+
+

Ahmed Alweli

+

Operations & Systems Development Specialist

+
+
+
+
    +
  • Baghdad, Iraq
  • +
  • 07812808081
  • +
  • 07712365536
  • +
  • amd4iq@gmail.com
  • +
+
+
+
+
+ +
+
+
+
+ Experienced Operations & Systems Development Specialist with a strong background in + administrative operations, + process optimization, ERP development, and organizational management across engineering + and technology-driven + environments. Proven ability to develop and improve administrative systems, coordinate + cross-functional operations, + and support strategic decision-making with high standards of organization and execution. +
+
+ +
+
+ +
+
+
+

Work Experience

+
+
+
+
+ Oct 2025 – Mar 2026 + Maleem Baghdad +
+

Assistant Manager – Operations & ERP + Development

+
+
+
    +
  • Assisted management in developing internal workflow systems and + administrative structures.
  • +
  • Participated in building an integrated ERP platform for company + operations management.
  • +
  • Coordinated between departments to improve efficiency and streamline + procedures.
  • +
+
+
+ +
+
+
+ Mar 2026 – May 2026 + Al Baghdadi Restaurant +
+

Site Supervision

+
+
+
    +
  • Supervised execution for the Al Baghdadi Restaurant project + (Palestine Street, Baghdad).
  • +
  • Coordinated with contractors and suppliers for quality and schedule + compliance.
  • +
  • Monitored on-site progress and resolved execution issues.
  • +
+
+
+ +
+
+
+ Oct 2024 – Aug 2025 + Alremal Architecture +
+

Administration & Site Supervisor

+
+
+
    +
  • Oversaw daily administration and coordination between design, site, + and management.
  • +
  • Managed attendance, communications, documentation, and site + compliance.
  • +
+
+
+ +
+
+
+ Feb 2024 – Oct 2024 + Haykal Engineering +
+

Administrative Specialist

+
+
+
    +
  • Supported project operations, scheduling, documentation, and team + coordination.
  • +
+
+
+ +
+
+
+ Nov 2014 – Sep 2024 + NJS Engineering +
+

Senior Document Controller – Basrah Water + Project

+
+
+
    +
  • Managed project documentation and administration with Arab + Contractors and Hitachi.
  • +
  • Oversaw filing, progress tracking, invoices, and stakeholder + coordination.
  • +
  • Standardized documentation workflows to improve efficiency and + delivery.
  • +
+
+
+ +
+
+
+ Aug 2014 – Oct 2014 + Raban Al Safina +
+

Logistics

+
+
+
    +
  • Managed inventory, supplier coordination, and shipment tracking. +
  • +
+
+
+
+
+ +
+ +
+

Soft Skills

+
+
+ + Operations Management +
+
+ + Process Optimization +
+
+ + Digital Transformation +
+
+ + Project Coordination +
+
+ + Site Supervision +
+
+ + Documentation & Compliance +
+
+
+ +
+
+ + +
+
+
+ +
+ +
+
+
+ + + + \ No newline at end of file