{"id":5242,"date":"2025-07-13T09:10:06","date_gmt":"2025-07-13T06:10:06","guid":{"rendered":"https:\/\/menbrkuwait.com\/?p=5242"},"modified":"2025-12-17T16:31:10","modified_gmt":"2025-12-17T13:31:10","slug":"kuwait-indemnity-calculator-2025-how-to-do-calculation","status":"publish","type":"post","link":"https:\/\/menbrkuwait.com\/en\/5242\/","title":{"rendered":"Kuwait Indemnity Calculator 2026: How to Do Calculation"},"content":{"rendered":"<p>Using Kuwait Indemnity Calculator helps you determine the amount of Indemnity you will receive based on your number of years of service, the number of paid leave accrued, and your monthly salary.<\/p>\n<h2><strong>Kuwait Indemnity Calculator<\/strong><\/h2>\n<p>You can use the following Indemnity calculator to calculate your end of service gratuity:<\/p>\n<p><div class=\"inserted\" data-location=\"shortcode\" data-visibility=\"\"><div class=\"inserted-inner\"><div id=\"indemnity-calculator\">\r\n    <form id=\"indemnityForm\" novalidate>\r\n        <div class=\"form-grid\">\r\n            <div class=\"form-group\">\r\n                <label for=\"startDate\">Start Date<\/label>\r\n                <input type=\"date\" id=\"startDate\" name=\"startDate\" required>\r\n                <span class=\"error-message\" id=\"startDateError\">Please enter a valid start date<\/span>\r\n            <\/div>\r\n            \r\n            <div class=\"form-group\">\r\n                <label for=\"endDate\">End Date<\/label>\r\n                <input type=\"date\" id=\"endDate\" name=\"endDate\" required>\r\n                <span class=\"error-message\" id=\"endDateError\">Please enter a valid end date<\/span>\r\n            <\/div>\r\n            \r\n            <div class=\"form-group\">\r\n                <label for=\"salary\">Monthly Salary (KWD)<\/label>\r\n                <input type=\"number\" id=\"salary\" name=\"salary\" step=\"0.01\" min=\"1\" required placeholder=\"Enter your salary\">\r\n                <span class=\"error-message\" id=\"salaryError\">Please enter a valid salary amount<\/span>\r\n            <\/div>\r\n            \r\n            <div class=\"form-group\">\r\n                <label for=\"unpaidLeave\">Unpaid Leave Days<\/label>\r\n                <input type=\"number\" id=\"unpaidLeave\" name=\"unpaidLeave\" min=\"0\" required placeholder=\"Number of days\">\r\n                <span class=\"error-message\" id=\"unpaidLeaveError\">Please enter a valid number of days<\/span>\r\n            <\/div>\r\n        <\/div>\r\n        \r\n        <button type=\"button\" class=\"d-block m-auto\" onclick=\"calculateIndemnity()\" id=\"calculateButton\">Calculate Indemnity<\/button>\r\n    <\/form>\r\n    \r\n    <div id=\"result\" class=\"result\" style=\"display: none;\"><\/div>\r\n<\/div>\r\n\r\n<script>\r\n    \/\/ Form validation\r\n    const form = document.getElementById('indemnityForm');\r\n    const calculateButton = document.getElementById('calculateButton');\r\n    const inputs = form.querySelectorAll('input');\r\n\r\n    inputs.forEach(input => {\r\n        input.addEventListener('input', validateForm);\r\n        input.addEventListener('change', validateForm);\r\n    });\r\n\r\n    function validateForm() {\r\n        let isValid = true;\r\n        const startDate = new Date(document.getElementById('startDate').value);\r\n        const endDate = new Date(document.getElementById('endDate').value);\r\n        const salary = parseFloat(document.getElementById('salary').value);\r\n        const unpaidLeave = parseInt(document.getElementById('unpaidLeave').value);\r\n\r\n        \/\/ Reset error messages\r\n        document.querySelectorAll('.error-message').forEach(msg => msg.style.display = 'none');\r\n\r\n        \/\/ Validate start date\r\n        if (!document.getElementById('startDate').value) {\r\n            document.getElementById('startDateError').style.display = 'block';\r\n            isValid = false;\r\n        }\r\n\r\n        \/\/ Validate end date\r\n        if (!document.getElementById('endDate').value) {\r\n            document.getElementById('endDateError').style.display = 'block';\r\n            isValid = false;\r\n        } else if (endDate <= startDate) {\r\n            document.getElementById('endDateError').textContent = 'End date must be after start date';\r\n            document.getElementById('endDateError').style.display = 'block';\r\n            isValid = false;\r\n        }\r\n\r\n        \/\/ Validate salary\r\n        if (isNaN(salary) || salary <= 0) {\r\n            document.getElementById('salaryError').style.display = 'block';\r\n            isValid = false;\r\n        }\r\n\r\n        \/\/ Validate unpaid leave\r\n        if (isNaN(unpaidLeave) || unpaidLeave < 0) {\r\n            document.getElementById('unpaidLeaveError').style.display = 'block';\r\n            isValid = false;\r\n        }\r\n\r\n        calculateButton.disabled = !isValid;\r\n        return isValid;\r\n    }\r\n\r\n    function calculateIndemnity() {\r\n        if (!validateForm()) return;\r\n\r\n        const startDate = new Date(document.getElementById('startDate').value);\r\n        const endDate = new Date(document.getElementById('endDate').value);\r\n        const salary = parseFloat(document.getElementById('salary').value);\r\n        const unpaidLeaveDays = parseInt(document.getElementById('unpaidLeave').value);\r\n\r\n        \/\/ Calculate service duration\r\n        const totalDays = (endDate - startDate) \/ (1000 * 60 * 60 * 24);\r\n        const yearsOfService = Math.floor(totalDays \/ 365.25);\r\n        const daysRemaining = Math.round(totalDays % 365.25);\r\n        const months = Math.floor(daysRemaining \/ 30.44);\r\n        const days = Math.round(daysRemaining % 30.44);\r\n\r\n        \/\/ Calculate daily salary and indemnity rates\r\n        const dailySalary = salary \/ 26;\r\n        const indemnityPerYear = dailySalary * 15;\r\n        \r\n        \/\/ Calculate first 5 years indemnity\r\n        const first5YearsIndemnity = Math.min(yearsOfService, 5) * indemnityPerYear;\r\n        \r\n        \/\/ Calculate exceeding years indemnity\r\n        const exceedingYearsIndemnity = Math.max(0, yearsOfService - 5) * dailySalary * 30;\r\n\r\n        \/\/ Calculate proportional indemnity for incomplete year\r\n        let monthlyIndemnity, dailyIndemnity;\r\n        if (yearsOfService >= 5) {\r\n            monthlyIndemnity = (months \/ 12) * (dailySalary * 30);\r\n            dailyIndemnity = (days \/ 365) * (dailySalary * 30);\r\n        } else {\r\n            monthlyIndemnity = (months \/ 12) * (dailySalary * 15);\r\n            dailyIndemnity = (days \/ 365) * (dailySalary * 15);\r\n        }\r\n\r\n        \/\/ Calculate unpaid leave amount\r\n        const unpaidLeaveAmount = unpaidLeaveDays * dailySalary;\r\n        \r\n        \/\/ Calculate total indemnity\r\n        const totalIndemnity = first5YearsIndemnity + exceedingYearsIndemnity + monthlyIndemnity + dailyIndemnity + unpaidLeaveAmount;\r\n\r\n        \/\/ Display results\r\n        const resultHTML = `\r\n            <div class=\"result-grid\">\r\n                <div class=\"result-item\">\r\n                    <strong>Service Duration<\/strong>\r\n                    ${yearsOfService} years, ${months} months, ${days} days\r\n                <\/div>\r\n                <div class=\"result-item\">\r\n                    <strong>Daily Salary<\/strong>\r\n                    ${dailySalary.toFixed(3)} KWD\r\n                <\/div>\r\n                <div class=\"result-item\">\r\n                    <strong>First 5 Years Indemnity<\/strong>\r\n                    ${first5YearsIndemnity.toFixed(3)} KWD\r\n                <\/div>\r\n                <div class=\"result-item\">\r\n                    <strong>Exceeding Years Indemnity<\/strong>\r\n                    ${exceedingYearsIndemnity.toFixed(3)} KWD\r\n                <\/div>\r\n                <div class=\"result-item\">\r\n                    <strong>Monthly Indemnity<\/strong>\r\n                    ${monthlyIndemnity.toFixed(3)} KWD\r\n                <\/div>\r\n                <div class=\"result-item\">\r\n                    <strong>Daily Indemnity<\/strong>\r\n                    ${dailyIndemnity.toFixed(3)} KWD\r\n                <\/div>\r\n                <div class=\"result-item\">\r\n                    <strong>Unpaid Leave Amount<\/strong>\r\n                    ${unpaidLeaveAmount.toFixed(3)} KWD\r\n                <\/div>\r\n                <div class=\"total-amount\" data-theme=\"dark\" data-bs-theme=\"dark\">\r\n                    <strong>Total Indemnity<\/strong>\r\n                    ${totalIndemnity.toFixed(3)} KWD\r\n                <\/div>\r\n            <\/div>\r\n            <button class=\"btn btn-secondary\" onclick=\"window.print()\" class=\"print-button\">Print Results<\/button>\r\n        `;\r\n\r\n        const resultDiv = document.getElementById('result');\r\n        resultDiv.innerHTML = resultHTML;\r\n        resultDiv.style.display = 'block';\r\n        \r\n        \/\/ Smooth scroll to results\r\n        resultDiv.scrollIntoView({ behavior: 'smooth' });\r\n    }\r\n<\/script>\r\n\r\n<style>\r\n#indemnity-calculator {\r\n    max-width: 700px;\r\n    margin-right: auto;\r\n    margin-left: auto;\r\n    padding: 2em;\r\n    box-shadow: 0px 0px 10px var(--shadow-color);\r\n    border-radius: var(--site-border-radius);\r\n}\r\n\r\n#indemnity-calculator .form-grid {\r\n    display: grid;\r\n    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\r\n    gap: 1.5rem;\r\n    margin-bottom: 2rem;\r\n}\r\n\r\n#indemnity-calculator .form-group {\r\n    display: flex;\r\n    flex-direction: column;\r\n}\r\n\r\n#indemnity-calculator label {\r\n    font-weight: 500;\r\n    margin-bottom: 0.5rem;\r\n}\r\n\r\n#indemnity-calculator input:invalid {\r\n    border-color: var(--bs-danger);\r\n}\r\n\r\n#indemnity-calculator .error-message {\r\n    color: var(--bs-danger);\r\n    font-size: 0.875rem;\r\n    margin-top: 0.5rem;\r\n    display: none;\r\n}\r\n\r\n#indemnity-calculator .result {\r\n    margin-top: 2rem;\r\n    padding: 1.5rem;\r\n    background: var(--bg-color);\r\n    border-radius: 0.5rem;\r\n    animation: fadeIn 0.3s ease-in;\r\n    box-shadow: 0px 0px 4px var(--shadow-color);\r\n}\r\n\r\n#indemnity-calculator .result-grid {\r\n    display: grid;\r\n    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\r\n    gap: 1.5rem;\r\n    margin-bottom: 2em;\r\n}\r\n\r\n#indemnity-calculator .result-item {\r\n    background: var(--bg-color-2);\r\n    padding: 1rem;\r\n    border-radius: 0.5rem;\r\n    transition: transform 0.2s ease;\r\n}\r\n\r\n#indemnity-calculator .result-item:hover {\r\n    transform: translateY(-2px);\r\n}\r\n\r\n#indemnity-calculator .result-item strong {\r\n    display: block;\r\n    margin-bottom: 0.5rem;\r\n    font-size: 0.875rem;\r\n    text-transform: uppercase;\r\n}\r\n\r\n#indemnity-calculator .total-amount {\r\n    grid-column: 1 \/ -1;\r\n    padding: 1.5rem;\r\n    text-align: center;\r\n    border-radius: 0.5rem;\r\n    background: var(--bg-color);\r\n}\r\n<\/style><\/div><\/div><strong>\u00a0<\/strong><\/p>\n<h2><strong>How to Use Kuwait Indemnity Calculator<\/strong><\/h2>\n<p>You can use the Kuwait Indemnity Calculator by following these simple steps:<\/p>\n<ul>\n<li><strong>Step 1:<\/strong> Go to the Kuwait Indemnity Calculator.<\/li>\n<li><strong>Step <\/strong><strong>2<\/strong><strong>:<\/strong> Select your start date according to the calendar used in the calculator.<\/li>\n<li><strong>Step <\/strong><strong>3<\/strong><strong>:<\/strong> Select your end of service date according to the calendar used in the calculator.<\/li>\n<li><strong>Step <\/strong><strong>4<\/strong><strong>:<\/strong> Input your monthly salary upon termination of their contract.<\/li>\n<li><strong>Step <\/strong><strong>5<\/strong><strong>:<\/strong> Input the number of unpaid leave days.<\/li>\n<li><strong>Step <\/strong><strong>6<\/strong><strong>:<\/strong> Click the &#8220;<strong>Calculate Indemnity<\/strong>&#8221; button.<\/li>\n<\/ul>\n<h2><strong>Kuwait Labor Law and Indemnity<\/strong><\/h2>\n<p>The current Kuwaiti Labor Law includes all the details related to Indemnity in Chapter Three, which begins with Article 41 and continues through Article 54. This means that 14 articles are derived from the law, including the method of calculating the gratuity and the cases in which an employee is deprived of it.<\/p>\n<h2><strong>Who is entitled to Indemnity <\/strong><strong>Benefits in Kuwait<\/strong><\/h2>\n<p>All private sector employees in Kuwait are entitled to end-of-service benefits upon the expiration of their contract for the specified period, or upon termination of the contract for reasons related to the employer, as determined by the Kuwaiti Labor Law.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-5246\" src=\"https:\/\/menbrkuwait.com\/wp-content\/uploads\/2025\/03\/Who-is-entitled-to-Indemnity-benefits-in-Kuwait-600x400.jpeg\" alt=\"Who is entitled to Indemnity benefits in Kuwait\" width=\"600\" height=\"400\" srcset=\"https:\/\/menbrkuwait.com\/wp-content\/uploads\/2025\/03\/Who-is-entitled-to-Indemnity-benefits-in-Kuwait-600x400.jpeg 600w, https:\/\/menbrkuwait.com\/wp-content\/uploads\/2025\/03\/Who-is-entitled-to-Indemnity-benefits-in-Kuwait-1024x682.jpeg 1024w, https:\/\/menbrkuwait.com\/wp-content\/uploads\/2025\/03\/Who-is-entitled-to-Indemnity-benefits-in-Kuwait-768x512.jpeg 768w, https:\/\/menbrkuwait.com\/wp-content\/uploads\/2025\/03\/Who-is-entitled-to-Indemnity-benefits-in-Kuwait-1536x1023.jpeg 1536w, https:\/\/menbrkuwait.com\/wp-content\/uploads\/2025\/03\/Who-is-entitled-to-Indemnity-benefits-in-Kuwait-360x240.jpeg 360w, https:\/\/menbrkuwait.com\/wp-content\/uploads\/2025\/03\/Who-is-entitled-to-Indemnity-benefits-in-Kuwait.jpeg 1600w\" sizes=\"auto, (max-width: 600px) 100vw, 600px\" \/><\/p>\n<h2><strong>Key Components of Kuwait Indemnity Calculator<\/strong><\/h2>\n<p>The following are the elements upon which indemnity calculation in Kuwait depends:<\/p>\n<ul>\n<li><strong>Number of years of service:<\/strong> The value of indemnity in Kuwait varies depending on the number of years of service. An employee may not be entitled to the full gratuity if they terminate their contract before 10 years of service with the same employer.<\/li>\n<li><strong>Monthly salary value:<\/strong> The value of the indemnity in Kuwait increases with the increase in the employee&#8217;s monthly salary, while its value decreases with the decrease in the salary of an employee working in the private sector.<\/li>\n<li><strong>Reason for termination of the employment contract:<\/strong> The value of indemnity varies depending on the reason for terminating the employment contract. The current labor law in Kuwait stipulates several cases in which an employee is deprived of the gratuity, in whole or in part.<\/li>\n<li><strong>Number of paid leave days:<\/strong> An employee receives a gratuity for the days of paid vacation they have not taken, according to the Kuwaiti labor law. Therefore, the number of vacation days significantly affects the value of the gratuity.<\/li>\n<\/ul>\n<h2><strong>Steps to Calculate Your Indemnity in Kuwait<\/strong><\/h2>\n<p>You can calculate your indemnity in Kuwait based on length of service, in addition to many other details. Here&#8217;s how to calculate your indemnity :<\/p>\n<h3><strong>Calculate Kuwait Indemnity for the First Five Years<\/strong><\/h3>\n<p>You can calculate Kuwait indemnity for the first five years, follow these simple steps:<\/p>\n<ul>\n<li><strong>Indemnity for the First Five Years<\/strong> = (Daily Salary \u00d7 15) \u00d7 Number of Years<\/li>\n<\/ul>\n<h3><strong>Calculate Kuwait Indemnity for Years Exceeding Five<\/strong><\/h3>\n<p>To calculate Kuwait indemnity for years exceeding five, follow these simple steps:<\/p>\n<ul>\n<li><strong>Indemnity for Years Exceeding Five<\/strong> = (Daily Salary \u00d7 30) \u00d7 Number of Exceeding Years<\/li>\n<\/ul>\n<h3><strong>Calculate Kuwait Indemnity for Months and Days Beyond Full Years<\/strong><\/h3>\n<p>You can calculate Kuwait indemnity for months and days beyond full years, follow these easy steps:<\/p>\n<ul>\n<li><strong>For service less than 5 years:<\/strong>\n<ul>\n<li>Monthly Indemnity = (Number of Months \u00f7 12) \u00d7 (Daily Salary \u00d7 15)<\/li>\n<li>Daily Indemnity = (Number of Days \u00f7 365) \u00d7 (Daily Salary \u00d7 15)<\/li>\n<\/ul>\n<\/li>\n<li><strong>For service more than 5 years:<\/strong>\n<ul>\n<li>Monthly Indemnity = (Number of Months \u00f7 12) \u00d7 (Daily Salary \u00d7 30)<\/li>\n<li>Daily Indemnity = (Number of Days \u00f7 365) \u00d7 (Daily Salary \u00d7 30)<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<h3><strong>Calculate Paid Leave Balance for Indemnity in Kuwait<\/strong><\/h3>\n<p>To calculate paid leave balance for indemnity in Kuwait, follow these simple steps:<\/p>\n<ul>\n<li>Paid Leave Balance Amount for Indemnity = (Number of Paid Leave Days) \u00d7 Daily Salary<\/li>\n<\/ul>\n<h3><strong>Calculate Total Indemnity in Kuwait<\/strong><\/h3>\n<p>You can calculate Total indemnity in Kuwait, follow these simple steps:<\/p>\n<ul>\n<li>Total Indemnity = First 5 Years Indemnity + Exceeding Years Indemnity + Monthly Indemnity + Daily Indemnity + Paid Leave Balance Amount<\/li>\n<\/ul>\n<p><strong> <img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-5248\" src=\"https:\/\/menbrkuwait.com\/wp-content\/uploads\/2025\/03\/Calculate-Total-Indemnity-in-Kuwait-571x400.jpeg\" alt=\"Calculate Total Indemnity in Kuwait\" width=\"571\" height=\"400\" srcset=\"https:\/\/menbrkuwait.com\/wp-content\/uploads\/2025\/03\/Calculate-Total-Indemnity-in-Kuwait-571x400.jpeg 571w, https:\/\/menbrkuwait.com\/wp-content\/uploads\/2025\/03\/Calculate-Total-Indemnity-in-Kuwait-768x538.jpeg 768w, https:\/\/menbrkuwait.com\/wp-content\/uploads\/2025\/03\/Calculate-Total-Indemnity-in-Kuwait-360x252.jpeg 360w, https:\/\/menbrkuwait.com\/wp-content\/uploads\/2025\/03\/Calculate-Total-Indemnity-in-Kuwait.jpeg 1024w\" sizes=\"auto, (max-width: 571px) 100vw, 571px\" \/><\/strong><\/p>\n<h2><strong>Indemnity Calculation Formula in Kuwait for the government sector<\/strong><\/h2>\n<p>The following table shows how to calculate indemnity in Kuwait for the government sector:<\/p>\n<table style=\"width: 100%;\" width=\"100%\">\n<tbody>\n<tr>\n<td style=\"width: 54.7927%;\" width=\"46%\"><strong>Category<\/strong><\/td>\n<td style=\"width: 44.2073%;\" width=\"53%\"><strong>Indemnity Calculation Method<\/strong><\/td>\n<\/tr>\n<tr>\n<td style=\"width: 54.7927%;\" width=\"46%\">About the first 5 years, for those who do not deserve a pension.<\/td>\n<td style=\"width: 44.2073%;\" width=\"53%\">Pension settlement salary\u00d712\u00d710% \u00d75<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 54.7927%;\" width=\"46%\">About the second 5 years, for those who do not deserve a pension.<\/td>\n<td style=\"width: 44.2073%;\" width=\"53%\">Pension settlement salary\u00d712\u00d712% \u00d75<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 54.7927%;\" width=\"46%\">About the third 5 years, for those who do not deserve a pension.<\/td>\n<td style=\"width: 44.2073%;\" width=\"53%\">Pension settlement salary\u00d712\u00d715% \u00d75<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 54.7927%;\" width=\"46%\">For the years following the first 15 years of service, for those who do not deserve a pension.<\/td>\n<td style=\"width: 44.2073%;\" width=\"53%\">Pension settlement salary\u00d712\u00d720% \u00d75<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 54.7927%;\" width=\"46%\">Male pensioners up to the age of 55, for those who are entitled to a pension.<\/td>\n<td style=\"width: 44.2073%;\" width=\"53%\">One full month\u2019s salary for each year of subscription, provided that it does not exceed 18 months.<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 54.7927%;\" width=\"46%\">Female pensioners up to the age of 50, for those who are entitled to a pension.<\/td>\n<td style=\"width: 44.2073%;\" width=\"53%\">One full month\u2019s salary for each year of subscription, provided that it does not exceed 18 months.<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 54.7927%;\" width=\"46%\">Male pensioners up to the age of 56, for those who are entitled to a pension.<\/td>\n<td style=\"width: 44.2073%;\" width=\"53%\">Salary of 19 months<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 54.7927%;\" width=\"46%\">Female pensioners up to the age of 51, for those who are entitled to a pension.<\/td>\n<td style=\"width: 44.2073%;\" width=\"53%\">Salary of 19 months<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 54.7927%;\" width=\"46%\">Male pensioners up to the age of 57, for those who are entitled to a pension.<\/td>\n<td style=\"width: 44.2073%;\" width=\"53%\">Salary of 20 months<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 54.7927%;\" width=\"46%\">Female pensioners up to the age of 52, for those who are entitled to a pension.<\/td>\n<td style=\"width: 44.2073%;\" width=\"53%\">Salary of 20 months<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 54.7927%;\" width=\"46%\">Male pensioners up to the age of 58, for those who are entitled to a pension.<\/td>\n<td style=\"width: 44.2073%;\" width=\"53%\">Salary of 21 months<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 54.7927%;\" width=\"46%\">Female pensioners up to the age of 53, for those who are entitled to a pension.<\/td>\n<td style=\"width: 44.2073%;\" width=\"53%\">Salary of 21 months<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 54.7927%;\" width=\"46%\">Male pensioners over the age of 58, for those who are entitled to a pension.<\/td>\n<td style=\"width: 44.2073%;\" width=\"53%\">Salary of 21 months<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 54.7927%;\" width=\"46%\">Female pensioners over the age of 53, for those who are entitled to a pension.<\/td>\n<td style=\"width: 44.2073%;\" width=\"53%\">Salary of 21 months<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2><strong>Deducting Part of Indemnity Cases in Kuwait<\/strong><\/h2>\n<p>The following table shows cases of deducting part of the indemnity in Kuwait:<\/p>\n<table style=\"width: 100%;\" width=\"100%\">\n<tbody>\n<tr>\n<td style=\"width: 54.2835%;\" width=\"72%\"><strong>Duration of service<\/strong><\/td>\n<td style=\"width: 44.7165%;\" width=\"27%\"><strong>Indemnity deduction<\/strong><\/td>\n<\/tr>\n<tr>\n<td style=\"width: 54.2835%;\" width=\"72%\">The worker terminates the unlimited period contract from his own part, and the term of his service is not less than 3 years and did not complete 5 years.<\/td>\n<td style=\"width: 44.7165%;\" width=\"27%\">Half of indemnity is deducted.<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 54.2835%;\" width=\"72%\">The worker terminates the unlimited period contract from his own part, and the term of his service is not less than 5 years and did not complete 10 years.<\/td>\n<td style=\"width: 44.7165%;\" width=\"27%\">One third of indemnity is deducted.<\/td>\n<\/tr>\n<tr>\n<td style=\"width: 54.2835%;\" width=\"72%\">The worker terminates the unlimited period contract from his own part, and the term of his service is not less than 10 years<\/td>\n<td style=\"width: 44.7165%;\" width=\"27%\">No deduction from indemnity<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2><strong>Cases of Indemnity Eligibility in Kuwait<\/strong><\/h2>\n<p>An employee is entitled to indemnity upon termination of his or her employment in Kuwait in any of the following cases:<\/p>\n<ul>\n<li>The employer fails to comply with the terms of the contract and the provisions of the Labor Law.<\/li>\n<li>The employer or his or her representative assaults the employee.<\/li>\n<li>The employee&#8217;s continued employment is harmful to his or her health, based on a report from the Medical Arbitration Committee at the Ministry of Health.<\/li>\n<li>The employee is acquitted of a punishable offense brought against him or her by the employer.<\/li>\n<li>The employer commits acts against the employee that violate public morals.<\/li>\n<li>The employee dies, becomes unable to continue working, or becomes ill after exhausting his or her sick leave.<\/li>\n<li>The issuance of a judgment declaring the employer bankrupt.<\/li>\n<li>The establishment is permanently closed.<\/li>\n<li>The employer terminates the employment contract.<\/li>\n<li>The expiration of the employment contract without renewal. The employee&#8217;s employment contract terminates due to her marriage within one year of the marriage.<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-5250\" src=\"https:\/\/menbrkuwait.com\/wp-content\/uploads\/2025\/03\/Cases-of-Indemnity-Eligibility-in-Kuwait-600x400.jpeg\" alt=\"Cases of Indemnity Eligibility in Kuwait\" width=\"600\" height=\"400\" srcset=\"https:\/\/menbrkuwait.com\/wp-content\/uploads\/2025\/03\/Cases-of-Indemnity-Eligibility-in-Kuwait-600x400.jpeg 600w, https:\/\/menbrkuwait.com\/wp-content\/uploads\/2025\/03\/Cases-of-Indemnity-Eligibility-in-Kuwait-1024x682.jpeg 1024w, https:\/\/menbrkuwait.com\/wp-content\/uploads\/2025\/03\/Cases-of-Indemnity-Eligibility-in-Kuwait-768x512.jpeg 768w, https:\/\/menbrkuwait.com\/wp-content\/uploads\/2025\/03\/Cases-of-Indemnity-Eligibility-in-Kuwait-1536x1023.jpeg 1536w, https:\/\/menbrkuwait.com\/wp-content\/uploads\/2025\/03\/Cases-of-Indemnity-Eligibility-in-Kuwait-360x240.jpeg 360w, https:\/\/menbrkuwait.com\/wp-content\/uploads\/2025\/03\/Cases-of-Indemnity-Eligibility-in-Kuwait.jpeg 1600w\" sizes=\"auto, (max-width: 600px) 100vw, 600px\" \/><\/p>\n<h2><strong>Calculation of Indemnity According to Kuwait Labor Law by\u00a0<\/strong><strong>Example <\/strong><\/h2>\n<p>Suppose Mahmoud has worked for a private company in Kuwait for 8 years, 8 months, and 22 days. His monthly salary is 1,500 Kuwaiti dinars, and he has 13 days of unused paid leave. What is the compensation amount in this case?<\/p>\n<ul>\n<li><strong>Daily salary<\/strong> = 1500 KWD \u00f7 26 days = 57.69 KWD<\/li>\n<li><strong>Indemnity for the first five years<\/strong> = (57.69 KWD \u00d7 15) \u00d7 5 years = 4326.75 KWD<\/li>\n<li><strong>Indemnity for years exceeding five years<\/strong> = (57.69 KWD \u00d7 13) \u00d7 3 = 2249.91 KWD<\/li>\n<li><strong>Monthly bonus<\/strong> = (8 months \u00f7 12 months) \u00d7 (57.69 KWD \u00d7 13) = 499.98 KWD<\/li>\n<li><strong>Daily Indemnity<\/strong> = (22 days \u00f7 365 days) \u00d7 (57.69 KWD \u00d7 13) = 45.20 KWD<\/li>\n<li><strong>Paid leave balance for Indemnity<\/strong> = (13 days) \u00d7 57.69 KWD = 749.97 KWD<\/li>\n<li><strong>Total Indemnity<\/strong> = 2249.91 KWD + 4326.75 KWD + 499.98 KWD + 45.20 KWD + 749.97 KWD = 7871.81 KWD<\/li>\n<\/ul>\n<h2><strong>The Importance of Kuwait Indemnity Calculator<\/strong><\/h2>\n<p>The benefits of using an indemnity calculator in Kuwait can be identified as follows:<\/p>\n<ul>\n<li><strong>Transparency:<\/strong> Helps you understand your employee&#8217;s end-of-service rights.<\/li>\n<li><strong>Preparing for end-of-service benefits:<\/strong> Knowing what an employee will receive at the end of their service helps you prepare for retirement.<\/li>\n<li><strong>Understanding rights and obligations:<\/strong> Helps you understand your rights at the end of your service.<\/li>\n<\/ul>\n<h2><strong>Essential Legal Terms Regarding Kuwait Indemnity<\/strong><\/h2>\n<p>There are several legal terms you should know about retirement and employee rights, including:<\/p>\n<ul>\n<li><strong>Labor Law:<\/strong> The law that governs the employee&#8217;s relationship with management.<\/li>\n<li><strong>Retirement:<\/strong> The state of ceasing employment upon reaching retirement age.<\/li>\n<li><strong>Salary Certificate:<\/strong> A document detailing an employee&#8217;s entitlements.<\/li>\n<li><strong>Basic Salary:<\/strong> The amount of the salary without any additions or deductions.<\/li>\n<li><strong>Length of Service:<\/strong> The number of years an employee has served with the company.<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-5252\" src=\"https:\/\/menbrkuwait.com\/wp-content\/uploads\/2025\/03\/Essential-Legal-Terms-Regarding-Kuwait-Indemnity-400x400.jpeg\" alt=\"Essential Legal Terms Regarding Kuwait Indemnity\" width=\"400\" height=\"400\" srcset=\"https:\/\/menbrkuwait.com\/wp-content\/uploads\/2025\/03\/Essential-Legal-Terms-Regarding-Kuwait-Indemnity-400x400.jpeg 400w, https:\/\/menbrkuwait.com\/wp-content\/uploads\/2025\/03\/Essential-Legal-Terms-Regarding-Kuwait-Indemnity-150x150.jpeg 150w, https:\/\/menbrkuwait.com\/wp-content\/uploads\/2025\/03\/Essential-Legal-Terms-Regarding-Kuwait-Indemnity-768x768.jpeg 768w, https:\/\/menbrkuwait.com\/wp-content\/uploads\/2025\/03\/Essential-Legal-Terms-Regarding-Kuwait-Indemnity-360x360.jpeg 360w, https:\/\/menbrkuwait.com\/wp-content\/uploads\/2025\/03\/Essential-Legal-Terms-Regarding-Kuwait-Indemnity.jpeg 1024w\" sizes=\"auto, (max-width: 400px) 100vw, 400px\" \/><\/p>\n<h2><strong>Considerations and Exceptions in Kuwait Indemnity<\/strong><\/h2>\n<p>There are some exceptions and adjustments that should be taken into account when calculating indemnity, including:<\/p>\n<ul>\n<li><strong>Resignation:<\/strong> Employees typically receive half their salary for each year of service if they resign before completing five years.<\/li>\n<li><strong>Non-fault termination:<\/strong> Compensation is typically half a month&#8217;s salary for the first five years and a full month&#8217;s salary for each additional year.<\/li>\n<li><strong>Fault termination:<\/strong> Compensation is typically not granted, but this may vary depending on the contract or company policy.<\/li>\n<li><strong>Over five years of service:<\/strong> After five years, compensation is converted to a full month&#8217;s salary for each additional year.<\/li>\n<li><strong>Adjustments:<\/strong> Calculations may be adjusted based on specific employment contracts, company policies, or additional benefits offered by the employer.<\/li>\n<\/ul>\n<h2><strong>Conclusion<\/strong><\/h2>\n<p>Kuwaiti Labor Law guarantees the right of workers to receive indemnity upon the expiration of their contract or termination for one of the reasons specified by law. A portion of the gratuity may be received if the worker terminates the contract after at least three years of employment.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Using Kuwait Indemnity Calculator helps you determine the amount of Indemnity you will receive based on your number of years of service, the number of paid leave accrued, and your&#8230;<\/p>\n","protected":false},"author":4,"featured_media":5261,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[30],"tags":[132],"class_list":["post-5242","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-services","tag-indemnity-calculator"],"acf":[],"views":570,"_links":{"self":[{"href":"https:\/\/menbrkuwait.com\/en\/wp-json\/wp\/v2\/posts\/5242","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/menbrkuwait.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/menbrkuwait.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/menbrkuwait.com\/en\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/menbrkuwait.com\/en\/wp-json\/wp\/v2\/comments?post=5242"}],"version-history":[{"count":9,"href":"https:\/\/menbrkuwait.com\/en\/wp-json\/wp\/v2\/posts\/5242\/revisions"}],"predecessor-version":[{"id":7322,"href":"https:\/\/menbrkuwait.com\/en\/wp-json\/wp\/v2\/posts\/5242\/revisions\/7322"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/menbrkuwait.com\/en\/wp-json\/wp\/v2\/media\/5261"}],"wp:attachment":[{"href":"https:\/\/menbrkuwait.com\/en\/wp-json\/wp\/v2\/media?parent=5242"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/menbrkuwait.com\/en\/wp-json\/wp\/v2\/categories?post=5242"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/menbrkuwait.com\/en\/wp-json\/wp\/v2\/tags?post=5242"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}