:root {

  --color-primary-700: #1c5464; 
  --color-secondary-700: #0caca4; 
  --color-highlight-100: #dae3e4;

  --color-gold-600:  #e5b867; 
  --color-cyan-600:  #0085a5;  
  --color-green-600: #4d9e84;  
  --color-neutral-600: #737396; 

  --color-warning-600: var(--color-gold-600);
  --color-info-600:    var(--color-cyan-600);
  --color-teal-600:    var(--color-cyan-600);
  --color-success-600: var(--color-green-600);
  --color-success-500: var(--color-green-600);
  --color-success-400: var(--color-green-600);

  --color-text-900: #0a0e1c;
  --color-text-800: #212121;
  --color-text-700: #2c2c2c;
  --color-text-600: #444444; 
  --color-text-500: #666666;
  --color-text-400: #717171;
  --color-text-300: #777777;
  --color-text-200: #7b7b7b;

  --color-border-300: #e3e3e3;
  --color-border-400: #d6d6d6;
  --color-border-500: #c9c9c9;
  --color-border-600: #c5c5c5;
  --color-border-700: #c4c4c4;
  --color-border-800: #b5bcc4;
  --color-border-muted: #ced4da;

  --color-bg-0:   #ffffff;
  --color-bg-50:  #f8f8f8;
  --color-bg-100: #f6f6f6;
  --color-bg-150: #f5f6f8;
  --color-bg-200: #f6f7fa;
  --color-bg-300: #f1f4f9;
  --color-bg-400: #eceef5;
  --color-bg-500: #dfe5ef;


  --brand-primary:    var(--color-primary-700);
  --brand-secondary:  var(--color-secondary-700);
  --text-default:     var(--color-text-600);
  --text-on-white:    var(--color-primary-700);
  --surface-default:  var(--color-bg-150);
  --surface-card:     var(--color-bg-0);
  --border-default:   var(--color-border-300);
  --warning:          var(--color-warning-600);
  --success:          var(--color-success-600);
  --info:             var(--color-info-600);


  --tint-primary-20:    rgba(28, 84, 100, 0.20);
  --tint-primary-8:     rgba(28, 84, 100, 0.08);
  --overlay-primary-75: rgba(28, 84, 100, 0.75);
  --overlay-primary-97: rgba(28, 84, 100, 0.97);
  --ring-secondary:     rgba(12, 172, 164, 0.15);
  --overlay-secondary:     rgba(14, 198, 189, 0.102);

  --shadow-1: 0 0 35px rgba(140, 152, 164, 0.13);
  --client-overlay-bg: rgba(28, 84, 100, 0.5);

  --shadow-2: 0 0 35px rgba(58, 93, 131, 0.922);
  --shadow-3:    rgba(38, 89, 103, 0.065);

  --text-hero: #fff;

  --client-logo-h: clamp(120px, 12vw, 170px); /* height grows with viewport */
  --client-logo-w: 90%;  

  --value-pattern-url: url('../images/kpath/pattren/pattren4.png');
  --value-pattern-url2: url('../images/kpath/pattren/pattren3.png');
  --value-pattern-url3: url('../images/kpath/pattren/pattren5.png');


  --wiz-bg:            var(--surface-card);
  --wiz-border:        var(--border-default);
  --wiz-text:          var(--text-default);
  --wiz-num-bg:        var(--brand-secondary);   
  --wiz-num-bg-active: var(--brand-primary);     
  --wiz-num-bg-done:   var(--color-green-600); 
  --wiz-num-fg:        #fff;
  --wiz-ring:          var(--ring-secondary);  

  --header-h: 75px;
  
}
@supports (color: color-mix(in srgb, black 50%, white)) {
  :root {
    --overlay-primary-97: color-mix(in srgb, var(--color-primary-700) 97%, transparent);
    --overlay-primary-75: color-mix(in srgb, var(--color-primary-700) 75%, transparent);
    --tint-primary-20:    color-mix(in srgb, var(--color-primary-700) 20%, transparent);
    --tint-primary-8:     color-mix(in srgb, var(--color-primary-700) 8%,  transparent);
    --ring-secondary:     color-mix(in srgb, var(--color-secondary-700) 15%, #fff);
  }
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
}


:root { --header-h: 60px; } /* set your real header height */
html { scroll-behavior: auto !important; } /* prevent double-animation */
[id^="section-"], section[id] { scroll-margin-top: var(--header-h); }

a:hover,
a:focus {
  text-decoration: none !important;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--color-text-600);
}

p {
  margin: 0;
  color: var(--color-text-600);
}

input,
textarea,
a,
button {
  outline: none !important;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--brand-primary);
}

a:hover {
  color: var(--brand-primary);
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

a {
  text-decoration: none;
}

body {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  background-color: var(--surface-default);
  color: var(--color-text-600);
  overflow-x: hidden;
}

/* Tajawal */
@font-face{
  font-family: "Tajawal";
  src: 
       url("../fonts/Tajawal/Tajawal-Light.ttf")   format("truetype");
  font-weight: 200;
  font-style: normal; font-display: swap;
}
@font-face{
  font-family: "Tajawal";
  src: 
      
       url("../fonts/Tajawal/Tajawal-Regular.ttf")   format("truetype");
  font-weight: 400;
  font-style: normal; font-display: swap;
}
@font-face{
  font-family: "Tajawal";
  src: 
      
       url("../fonts/Tajawal/Tajawal-Medium.ttf")   format("truetype");
  font-weight: 500;
  font-style: normal; font-display: swap;
}
@font-face{
  font-family: "Tajawal";
  src: 
       url("../fonts/Tajawal/Tajawal-Bold.ttf")   format("truetype");
  font-weight: 700;
  font-style: normal; font-display: swap;
}
@font-face{
  font-family: "Tajawal";
  src: 
       url("../fonts/Tajawal/Tajawal-ExtraBold.ttf")   format("truetype");
  font-weight: 900;
  font-style: normal; font-display: swap;
}

/* SF Pro Display (your files are OTF: declare as opentype) */
@font-face{
  font-family: "SFPRODISPLAYB";
  src: 
       url("../fonts/sf-pro-display/SFPRODISPLAYREGULAR.woff")  format("woff"),
       url("../fonts/sf-pro-display/SFPRODISPLAYREGULAR.OTF")   format("opentype");
  font-weight: 400;
  font-style: normal; font-display: swap;
}
@font-face{
  font-family: "SFPRODISPLAYB";
  src: 
       url("../fonts/sf-pro-display/SFPRODISPLAYMEDIUM.woff")  format("woff"),
       url("../fonts/sf-pro-display/SFPRODISPLAYMEDIUM.OTF")   format("opentype");
  font-weight: 500;
  font-style: normal; font-display: swap;
}
@font-face{
  font-family: "SFPRODISPLAYB";
  src: 
       url("../fonts/sf-pro-display/SFPRODISPLAYBOLD.woff")  format("woff"),
       url("../fonts/sf-pro-display/SFPRODISPLAYBOLD.OTF")   format("opentype");
  font-weight: 700;
  font-style: normal; font-display: swap;
}


html[dir="rtl"] body { text-align: right; direction: rtl; font-family: "Tajawal" , "SFPRODISPLAYB"; }
html[dir="rtl"] .font-light { font-weight: 200; }
html[dir="rtl"] .font-bold { font-weight: 900; }
html[dir="rtl"] .font-medium { font-weight: 400; }
html[dir="rtl"] .font-semi-bold { font-weight: 600; }

html[dir="ltr"] body { font-family: "Tajawal" ,"SFPRODISPLAYB", sans-serif; }
html[dir="ltr"] .font-light { font-weight: 200; }
html[dir="ltr"] .font-bold { font-weight: 900; }
html[dir="ltr"] .font-medium { font-weight: 400; }
html[dir="ltr"] .font-semi-bold { font-weight: 600; }


.form-group {
  margin-bottom: 15px;
}

.form-control {
  height: 48px;
  background-color: var(--color-bg-0);
  border: 1px solid var(--color-border-800);
  border-radius: 4px;
  box-shadow: none;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--color-text-800);
}
.form-control.form-sm {
  height: 45px;
}

.form-control:focus {
  box-shadow: none;
  background-color: var(--color-bg-0);
  border-color: var(--brand-primary);
}

textarea.form-control {
  height: auto;
}

.main-wrapper {
  position: relative;
  min-height: 100%;
}

button {
  cursor: pointer;
}

.pointer {
  cursor: pointer;
}

.main-content {
  padding: 60px 0px;
}

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: none;
}

::-moz-placeholder {
  color: var(--color-text-500) !important;
  font-size: 14px !important;
}

:-ms-input-placeholder {
  color: var(--color-text-500) !important;
  font-size: 14px !important;
}

::placeholder {
  color: var(--color-text-500) !important;
  font-size: 14px !important;
}

::-moz-placeholder {
  color: var(--color-text-500) !important;
  font-size: 14px !important;
}

::-ms-placeholder {
  color: var(--color-text-500) !important;
  font-size: 14px !important;
}

::-o-placeholder {
  color: var(--color-text-500) !important;
  font-size: 14px !important;
}

::-webkit-placeholder {
  color: var(--color-text-500) !important;
  font-size: 14px !important;
}

.loader-page {
  background: var(--color-bg-50);
  color: var(--color-bg-0);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-page span {
  position: absolute;
  display: inline-block;
  background-color: var(--brand-primary);
  width: 80px;
  height: 80px;
  border-radius: 100%;
  -webkit-animation: loader3 1.5s linear infinite;
  animation: loader3 1.5s linear infinite;
}

.loader-page span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  0% {
    transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
@-webkit-keyframes loader3 {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}
.text-gray {
  color: var(--color-text-muted) !important;
}

.text-warning {
  color: var(--color-warning-600) !important;
}

.bg-warning {
  background-color: var(--color-warning-600) !important;
}

.text-primary {
  color: var(--brand-primary) !important;
}

.bg-primary {
  background-color: var(--brand-primary) !important;
}

.text-primary-light {
  color: var(--color-teal-600) !important;
}

.text-orge {
  color: var(--brand-secondary) !important;
}

.box-shadow {
  box-shadow: 0 0 35px rgba(140, 152, 164, 0.13);
}

.rounded-15 {
  border-radius: 15px;
}

.rounded-25 {
  border-radius: 25px;
}

.bg-light {
  background-color: var(--color-bg-50) !important;
}

.text-underline {
  text-decoration: underline;
}

.btn {
  padding: 12px 40px;
  font-size: 16px;
  border-radius: 8px;
  text-align: center;
}
@media (max-width: 991px) {
  .btn {
    font-size: 12px;
    min-width: auto;
    padding: 10px 20px;
  }
}

.btn-primary {
  color: var(--color-bg-0);
  background: var(--brand-primary);
  border: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-primary::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  background-color: var(--brand-secondary);
  transition: all 0.3s ease-in-out;
  top: 0;
  border-radius: 8px;
  z-index: -1;
}
.btn-primary:hover,
.btn-primary:focus {
  color: var(--color-bg-0);
  background: var(--brand-primary);
  border: 0;
  box-shadow: none !important;
}
.btn-primary:hover::before,
.btn-primary:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-primary-light {
  color: var(--brand-primary);
  background: var(--tint-primary-20);
  border: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-primary-light::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  background-color: var(--brand-primary);
  transition: all 0.3s ease-in-out;
  top: 0;
  border-radius: 8px;
  z-index: -1;
}
.btn-primary-light:hover,
.btn-primary-light:focus {
  color: var(--color-bg-0);
  background: var(--tint-primary-20);
  border: 0;
  box-shadow: none !important;
}
.btn-primary-light:hover::before,
.btn-primary-light:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-primary-light-2 {
  color: var(--brand-primary);
  background: rgba(255, 255, 255, 0.2);
  border: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-primary-light-2::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  background-color: var(--brand-secondary);
  transition: all 0.3s ease-in-out;
  top: 0;
  border-radius: 8px;
  z-index: -1;
}
.btn-primary-light-2:hover,
.btn-primary-light-2:focus {
  color: var(--color-bg-0);
  background: rgba(255, 255, 255, 0.2);
  border: 0;
  box-shadow: none !important;
}
.btn-primary-light-2:hover::before,
.btn-primary-light-2:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-primary-light-3 {
  color: var(--color-bg-0);
  background: var(--color-teal-600);
  border: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-primary-light-3::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  background-color: var(--brand-primary);
  transition: all 0.3s ease-in-out;
  top: 0;
  border-radius: 8px;
  z-index: -1;
}
.btn-primary-light-3:hover,
.btn-primary-light-3:focus {
  color: var(--color-bg-0);
  background: var(--color-teal-600);
  border: 0;
  box-shadow: none !important;
}
.btn-primary-light-3:hover::before,
.btn-primary-light-3:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-orge {
  color: var(--color-bg-0);
  background: var(--brand-secondary);
  border: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-orge::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  background-color: var(--color-info-600);
  transition: all 0.3s ease-in-out;
  top: 0;
  border-radius: 8px;
  z-index: -1;
}
.btn-orge:hover,
.btn-orge:focus {
  color: var(--color-bg-0) !important;
  background: var(--brand-secondary);
  border: 0;
  box-shadow: none !important;
}
.btn-orge:hover::before,
.btn-orge:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}
.btn-green {
  color: var(--color-bg-0);
  background: var(--color-success-500);
  border: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-green::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  background-color: var(--brand-primary);
  transition: all 0.3s ease-in-out;
  top: 0;
  border-radius: 8px;
  z-index: -1;
}
.btn-green:hover,
.btn-green:focus {
  color: var(--color-bg-0) !important;
  background: var(--color-success-500);
  border: 0;
  box-shadow: none !important;
}
.btn-green:hover::before,
.btn-green:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-outline-orge {
  color: var(--brand-secondary);
  border: 1px solid var(--brand-secondary);
  background-color: var(--color-bg-0);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-outline-orge:hover {
  color: var(--color-bg-0);
  background-color: var(--brand-secondary);
}
/* .btn-outline-orge::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  background-color: var(--brand-secondary);
  transition: all 0.3s ease-in-out;
  top: 0;
  border-radius: 8px;
  z-index: -1;
}
.btn-outline-orge:hover,
.btn-outline-orge:focus {
  color: var(--color-bg-0) !important;
  background: var(--color-bg-0);
  box-shadow: none !important;
}
.btn-outline-orge:hover::before,
.btn-outline-orge:focus::before {
  width: 100%;
  left: 0;
  right: auto;
} */

.btn-outline-primary {
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: var(--color-bg-0);
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  box-shadow: none !important;
}

.btn-warning {
  background-color: var(--color-success-600);
  color: var(--color-bg-0) !important;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 0;
}
.btn-warning::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  background-color: var(--brand-primary);
  transition: all 0.3s ease-in-out;
  top: 0;
  border-radius: 8px;
  z-index: -1;
}
.btn-warning:hover,
.btn-warning:focus {
  background-color: var(--color-success-600) !important;
  color: var(--color-bg-0) !important;
}
.btn-warning:hover::before,
.btn-warning:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-outline-warning {
  border-color: var(--color-warning-600) !important;
  color: var(--color-warning-600) !important;
}
.btn-outline-warning:hover,
.btn-outline-warning:focus {
  background-color: var(--color-warning-600) !important;
  color: var(--color-bg-0) !important;
}

.btn-white {
  color: var(--brand-primary);
  background: var(--color-bg-0);
  border: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-white::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  background-color: var(--brand-secondary);
  transition: all 0.3s ease-in-out;
  top: 0;
  border-radius: 8px;
  z-index: -1;
}
.btn-white:hover,
.btn-white:focus {
  color: var(--color-bg-0) !important;
  background: var(--color-bg-0) !important;
  border: 0;
  box-shadow: none !important;
}
.btn-white:hover::before,
.btn-white:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
    .input-group-btn
  ) {
  width: 100%;
}

.bootstrap-select > select.mobile-device:focus + .dropdown-toggle,
.bootstrap-select .dropdown-toggle:focus {
  outline: 0px auto -webkit-focus-ring-color !important;
  outline-offset: 0px;
}

.bootstrap-select > .dropdown-toggle {
  background-color: var(--color-bg-0);
  border: 1px solid var(--color-border-800);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--color-text-900) !important;
  height: 48px;
  border-radius: 4px;
  box-shadow: none;
}
.bootstrap-select > .dropdown-toggle.bs-placeholder {
  color: var(--color-border-400) !important;
}

.bootstrap-select.select-small > .dropdown-toggle {
  padding: 10px 16px;
  height: 44px;
}

.bootstrap-select.rounded-10 > .dropdown-toggle {
  border-radius: 10px;
}

.bootstrap-select.text-gray > .dropdown-toggle.bs-placeholder {
  color: var(--color-border-400) !important;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus {
  background-color: var(--color-bg-0) !important;
  border-color: var(--brand-primary) !important;
  box-shadow: none;
}

.bootstrap-select .dropdown-menu li.selected.active a:hover {
  color: var(--color-bg-0);
}

.bootstrap-select .dropdown-toggle::after {
  content: unset;
}
.bootstrap-select .dropdown-toggle::before {
  position: absolute;
  content: "\f078";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  font-size: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #212529;
  font-size: 14px;
  inset-inline-end: 15px;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 0.4rem 1.5rem;
  transition: all 0.2s ease-in-out;
  margin-bottom: 2px;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #35498e !important;
  background-color: #eaecf3;
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
  background-color: var(--color-bg-0) !important;
  border-color: var(--brand-primary) !important;
  box-shadow: 0px 2px 10.45px 0.55px rgba(66, 66, 66, 0.0784313725);
}

.dropdown-menu {
  border: 0;
  border-radius: 4px;
  box-shadow: 0px 3px 32px rgba(0, 0, 0, 0.1215686275);
  border: 0px solid rgba(221, 221, 221, 0.5019607843);
  min-width: 208px;
  text-align: right;
  -webkit-animation: animation-dropdown-menu-fade-in 0.4s ease 1,
    animation-dropdown-menu-move-up 0.4s ease-out 1;
  animation: animation-dropdown-menu-fade-in 0.4s ease 1,
    animation-dropdown-menu-move-up 0.4s ease-out 1;
}
.dropdown-menu.dropdown-lg {
  min-width: 350px;
  max-width: 100%;
}

@-webkit-keyframes animation-dropdown-menu-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes animation-dropdown-menu-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bootstrap-select.bg-transparent .dropdown-toggle {
  box-shadow: none;
}

.bootstrap-select.select-country > .dropdown-toggle {
  border: 0px solid #d6dae8 !important;
  border-radius: 8px !important;
}

html[dir="ltr"] .dropdown-menu {
  text-align: left;
}

@media (max-width: 991px) {
  .main-header {
    padding: 10px 0;
  }
  .main-header .menu-nav {
    border-bottom: 1px solid #eaecf3;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .main-header .logo img {
    max-height: 35px;
  }
  .main-header .btn-outline-primary {
    padding: 10px;
    width: 100%;
  }
  .main-header .menu-container .main-menu .menu_item .menu_link.req {
    padding: 8px 20px !important;
  }
  .active-body {
    overflow: hidden;
  }
  .mobile-menu-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    visibility: hidden;
    background-color: rgba(51, 51, 51, 0.51);
  }
  .mobile-menu-overlay-active {
    visibility: visible;
  }
  .menu--mobile {
    min-width: 100px;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 9999;
    background: var(--color-bg-0);
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease-in-out;
  }
  .menu--mobile > .container {
    padding-left: 0;
    padding-right: 0;
    max-width: calc(100% - 0px);
  }
  .menu--mobile .list-main-menu {
    width: 100%;
  }
  .menu--mobile .main-menu .menu_item.w-m-100 {
    width: 100%;
  }
  .menu--mobile .main-menu .menu_item .menu_link {
    color: #707070 !important;
    padding: 10px 30px;
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 14px;
    position: relative;
  }
  .menu--mobile .main-menu .menu_item .menu_link.active::before {
    position: absolute;
    content: "";
    inset-inline-start: 15px;
    height: 80%;
    background-color: var(--color-success-600);
    width: 2px;
    border-radius: 5px;
  }
  .menu--mobile .main-menu .menu_item .btn {
    border-radius: 0px !important;
    width: 100%;
    font-weight: 600;
    padding: 10px 0px;
    text-align: center;
    height: 40px;
  }
  .menu--mobile .main-menu .menu_item .btn.btn-lang {
    width: 40px;
    line-height: 12px;
  }
  .btn-close-header-mobile {
    color: #000;
    cursor: pointer;
  }
  .menu-mobile-active {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}
.m-checkbox {
  position: relative;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: var(--color-text-900);
}

/* Hide the browser's default checkbox */
.m-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.m-checkbox .checkmark {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid var(--color-teal-600);
  left: 0px;
  top: 50%;
  display: block;
  transform: translateY(-50%);
}

/* Create the checkmark/indicator (hidden when not checked) */
.m-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.m-checkbox input:checked ~ .checkmark:after {
  display: flex;
  align-items: center;
  justify-content: center;
}

.m-checkbox .checkmark:after {
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  background-color: var(--color-teal-600);
  color: var(--color-bg-0);
  width: 20px;
  height: 20px;
  border-radius: 2px;
  content: "\f00c";
  font-family: "Font Awesome 6 free";
  font-weight: 900;
}

.m-radio {
  position: relative;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: var(--color-text-900);
}
@media (max-width: 991px) {
  .m-radio {
    font-size: 12px;
    margin-bottom: 7px;
  }
}

.m-radio .checkmark {
  position: absolute;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: var(--color-bg-0);
  left: 0px;
  top: 50%;
  display: block;
  transition: opacity 0.3s ease-in-out;
  transform: translateY(-50%);
  border: 1px solid var(--color-border-700);
}
@media (max-width: 991px) {
  .m-radio .checkmark {
    width: 16px;
    height: 16px;
    border-width: 1px;
  }
}

.m-radio .checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* Hide the browser's default radio */
.m-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Show the checkmark when checked */
.m-radio input:checked ~ .checkmark {
  background-color: var(--color-secondary-700);
  border-color: var(--color-secondary-700);
}

.m-radio input:checked ~ .checkmark:after {
  opacity: 1;
}

.m-radio .checkmark:after {
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  font-size: 12px;
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  color: var(--color-bg-0);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

html[dir="rtl"] .m-checkbox {
  padding-right: 30px;
}
html[dir="rtl"] .m-checkbox .checkmark {
  right: 0px;
}
html[dir="rtl"] .m-radio {
  padding-right: 30px;
}
html[dir="rtl"] .m-radio .checkmark {
  right: 0px;
}

html[dir="ltr"] .m-checkbox {
  padding-left: 30px;
}
html[dir="ltr"] .m-checkbox .checkmark {
  left: 0px;
}
html[dir="ltr"] .m-radio {
  padding-left: 30px;
}
html[dir="ltr"] .m-radio .checkmark {
  left: 0px;
}

@media (min-width: 992px) {
  .main-header {
    display: flex;
    align-items: center;
  }
  .main-header .logo img {
    max-height: 60px;
  }
  .main-header .menu--mobile {
    display: flex;
    align-items: center;
    flex: auto;
  }
  .main-header .menu-container {
    position: relative;
  }
  .main-header .menu-container .main-menu .menu_item {
    display: inline-block;
    position: relative;
  }
  .main-header .menu-container .main-menu .menu_item .menu_link {
    cursor: pointer;
    display: flex;
    align-items: center;
    line-height: 45px;
    position: relative;
    color: var(--color-text-700);
    margin: 0px 22px;
    transition: all 0.2s ease-in-out;
    font-size: 17px;
    font-family: "Tajawal";
    transition: color 0.2s ease-in-out;
  }
  .main-header .menu-container .main-menu .menu_item .menu_link:hover,
  .main-header .menu-container .main-menu .menu_item .menu_link.active {
    color: var(--brand-primary);
  }
  .main-header .menu-container .main-menu .menu_item .btn {
    font-family: "Tajawal";
    height: 40px;
    padding: 6px 32px;
    text-align: center;
  }
  .main-header .menu-container .main-menu .menu_item .btn-lang {
    width: 40px;
    padding: 2px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .main-header .menu-container .main-menu .menu_item .menu_link {
    font-size: 12px;
    margin: 0px 15px;
  }
}
.menu_top.height {
  height: 95px;
}

.main-header {
  background-color: var(--color-bg-0);
  border-bottom: 2px solid rgba(53, 62, 120, 0.1);
  position: fixed;
  top: 0px;
  right: 0;
  width: 100%;
  height: 100px;
  transition: all 0.4s ease-in-out;
  z-index: 3;
}
@media (min-width: 992px) {
  .main-header.fixed-header {
    height: 70px;
  }
}
@media (max-width: 991px) {
  .main-header {
    height: auto;
  }
}

@media (min-width: 1400px) {
  .container {
    width: 1200px;
    max-width: 100%;
  }
}
.section {
  padding: 50px 0px;
}
@media (max-width: 991px) {
  .section {
    padding: 30px 0px;
  }
}

.section-home {
  position: relative;
}
.section-home .home-title span {
  color: #19716c;
}
@media (min-width: 992px) {
  .section-home {
    padding: 195px 0 100px;
  }
  .section-home .home-title {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  .section-home {
    padding-top: 80px;
    text-align: center;
  }
  .section-home .home-title {
    font-size: 24px;
  }
  .section-home .home-text {
    font-size: 16px;
  }
}
.section-home .btn {
  min-width: 180px;
}
@media (max-width: 991px) {
  .section-home .btn {
    padding: 10px 40px;
    font-size: 16px;
  }
}


.section-info {
  background: var(--brand-primary); 
  background: linear-gradient(
    90deg,
    var(--overlay-primary-75) 0%,
    var(--brand-primary) 100%
  );
  position: relative;
  z-index: 1;
}
.section-info .col-illustration img{
  display:block;
  width: 130%;
  max-width:none;
  opacity:.6;
  object-fit:contain;
  position:relative;
  inset-inline-start:0;     
  transform: translateY(6%);
 z-index: -1;
}
@media (max-width: 992px){
  .section-info .col-illustration{ overflow:hidden; }
  .section-info .col-illustration img{
    width: 30%;
    transform: translateY(3%);
  }
}
@media (max-width: 576px){
  .section-info .col-illustration{
    overflow: visible;        
  }
  .section-info .col-illustration img{
    width: min(92vw, 560px);  
    inset-inline-start:auto;   
    margin-inline:auto;      
    transform:none;           
  }
}
.section-info::before {
  position: absolute;
  width: 50%;
  inset-inline-end: 0;
  background:  url(../images/kpath/pattren/kpath-pattren2.png);
  background-repeat: no-repeat;
   opacity: 0.08;
  z-index: -1;
  height: 100%;
  content: "";
  top: 0;
}

.title-section {
  position: relative;
  font-size: 36px;
}
@media (max-width: 991px) {
  .title-section {
    font-size: 24px;
  }
}

.list-service {
  box-shadow: 0 0 35px rgba(140, 152, 164, 0.13);
  border-radius: 16px;
  padding: 40px;
  background-color: var(--color-bg-0);
}

@media (min-width: 992px) {
  .list-service [class*="col-"]:nth-of-type(1),
  .list-service [class*="col-"]:nth-of-type(3) {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }
  .list-service [class*="col-"]:nth-of-type(1),
  .list-service [class*="col-"]:nth-of-type(2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .list-service [class*="col-"]:nth-of-type(1) {
    padding: 0 30px 30px 0;
  }
  .list-service [class*="col-"]:nth-of-type(2) {
    padding: 0 30px 30px 30px;
  }
  .list-service [class*="col-"]:nth-of-type(3) {
    padding: 30px 30px 30px 30px;
  }
  .list-service [class*="col-"]:nth-of-type(4) {
    padding: 30px 30px 30px 30px;
  }
}
@media (max-width: 992px) {
  .list-service [class*="col-"] {
    padding: 10px;
  }
  .list-service [class*="col-"]:nth-of-type(1),
  .list-service [class*="col-"]:nth-of-type(2),
  .list-service [class*="col-"]:nth-of-type(3) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}
.widget_item-serve .widget_item-icon {
  flex: 0 0 auto;
  background-color: #edf2f7;
  color: var(--color-secondary-700);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.widget_item-serve .widget_item-icon img {
  max-height: 60px;
}
.widget_item-serve h3 {
  color: var(--color-primary-700);
}

.line {
  position: relative;
  width: 25px;
  height: 3px;
  background-color: var(--color-teal-600);
}
.line::after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  background-color: var(--color-teal-600);
  border-radius: 50%;
}

.title-portaHouse {
  font-size: 46px;
  color: var(--brand-primary);
}

.bg-light-warning {
  background-color: var( --overlay-secondary) !important;
}

.section-bg-1 {
  background: var(--value-pattern-url);
  position: relative;
  z-index: 1;
}
.section-bg-1::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: var(--overlay-primary-97);
  z-index: -1;
}

.section-bg-2 {
  background: url(../images/bg-started.png);
  position: relative;
  z-index: 1;
}
.section-bg-2::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: var(--overlay-primary-97);
  z-index: -1;
}

.widget_item-brand .widget_item-image {
  height: 50px;
}
.widget_item-brand .widget_item-image img {
  max-height: 50px;
}

.list-steps [class*="col"]:not(:last-of-type) .widget_item-step::before {
  position: absolute;
  content: url(../images/steps/arrow.svg);
  inset-inline-end: -25px;
  top: 26%;
}
@media (max-width: 991px) {
  .list-steps
    [class*="col"]:not(:last-of-type):nth-child(even)
    .widget_item-step::before {
    content: unset;
  }
}

.widget_item-step {
  position: relative;
}
.widget_item-step .widget_item-icon {
  background-color: var(--color-bg-0);
  border: 1px solid var(--color-border-400);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .widget_item-step .widget_item-icon {
    width: 160px;
    height: 160px;
  }
}
.widget_item-step .widget_item-icon img {
  max-height: 70px;
}

.title-entry {
  background-color: rgba(53, 62, 120, 0.1);
  padding: 5px 15px;
  border-radius: 4px;
  display: inline-block;
}

.widget_item-project .widget_item-image {
  position: relative;
  height: 0;
  padding-top: 55%;
}
.widget_item-project .widget_item-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 15px;
}
@media (min-width: 992px) {
  .widget_item-project .widget_item-title {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .widget_item-project .widget_item-title {
    font-size: 20px;
  }
}

.section-project {
  background-color: var(--color-bg-200);
}

.widget_item-faq {
  margin-bottom: 20px;
}
.widget_item-faq .widget_item-head {
  padding: 24px 27px;
  cursor: pointer;
}
.widget_item-faq .widget_item-head:not(.collapsed) .fa-chevron-right:before {
  content: "\f078";
}
.widget_item-faq .widget_item-icon {
  width: 40px;
  flex: 0 0 auto;
}
.widget_item-faq .widget_item-icon img {
  max-width: 30px;
}
.widget_item-faq .widget_item-inner {
  padding: 10px 68px 30px;
  font-size: 16px;
}

.margin-bottom--155px {
  margin-bottom: -155px;
}

.widget_item-product {
  display: block;
  margin-bottom: 20px;
}
.widget_item-product .widget_item-content {
  position: relative;
  cursor: pointer;
  background-color: var(--color-bg-0);
  padding: 30px;
  border: 1px solid var(--color-border-300);
  border-radius: 4px;
  transition: border 0.2s ease-in-out;
}
.widget_item-product .widget_item-content::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-text-900);
  inset-inline-end: 10px;
  border-radius: 50%;
  top: 20px;
  display: flex;
  align-items: center;
}
.widget_item-product .widget_item-content .widget_item-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(59, 130, 246, 0.08);
}
.widget_item-product input:checked + .widget_item-content {
  border-color: var(--brand-secondary);
}
.widget_item-product input:checked + .widget_item-content::before {
  content: "\f058";
  font-family: "Font Awesome 6 free";
  color: var(--brand-secondary);
  border: 0;
  font-size: 16px;
  font-weight: 900;
}

.widget_item-details .widget_item-content,
.widget_item-address .widget_item-content,
.widget_item-payment .widget_item-content {
  background-color: var(--color-bg-0);
  padding: 10px;
  border: 1px solid var(--color-border-300);
  border-radius: 4px;
}

.widget_item-address,
.widget_item-payment {
  position: relative;
}
.widget_item-address .widget_item-content,
.widget_item-payment .widget_item-content {
  position: relative;
  background-color: var(--color-bg-0);
  padding: 10px;
  border: 1px solid var(--color-border-300);
  border-radius: 4px;
  cursor: pointer;
}
.widget_item-address .widget_item-content::before,
.widget_item-payment .widget_item-content::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-text-900);
  inset-inline-end: 10px;
  border-radius: 50%;
  top: 14px;
  display: flex;
  align-items: center;
}
.widget_item-address input:checked + .widget_item-content,
.widget_item-payment input:checked + .widget_item-content {
  border-color: var(--brand-secondary);
}
.widget_item-address input:checked + .widget_item-content::before,
.widget_item-payment input:checked + .widget_item-content::before {
  content: "\f058";
  font-family: "Font Awesome 6 free";
  color: var(--brand-secondary);
  border: 0;
  font-size: 16px;
  font-weight: 900;
}

.img-flag {
  max-width: 30px;
}

.add-address {
  display: none;
}

.add-payment {
  display: none;
}

.order-details {
  padding: 16px;
  border-radius: 6px;
  border: 1px solid #e9e9e9;
  background-color: var(--color-bg-100);
}
.order-details .order-head {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.account {
  box-shadow: 0 12px 24px rgba(2, 17, 34, 0.04);
  border-radius: 6px;
}
.account .account-header {
  padding: 55px 10px 70px;
  border-radius: 6px 6px 0 0;
  text-align: center;
  background: var(--value-pattern-url);
  position: relative;
  z-index: 1;
}
.account .account-header::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: var(--brand-primary);
  opacity: 0.94;
  z-index: -1;
  border-radius: 6px 6px 0 0;
  content: "";
}


.account .account-content {
  background-color: var(--color-bg-0);
  padding: 50px 30px 30px;
  border-radius: 0 0 6px 6px;
}
.account .logo {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  width: 160px;
  height: 55px;
  background-color: var(--color-bg-0);
  position: relative;
  margin: -80px auto 25px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
.account .logo img {
  max-height: 40px;
}

.widget_item-type {
  display: block;
  width: 100%;
}
.widget_item-type .widget_item-content {
  padding: 16px;
  border-radius: 6px;
  border: 1px solid #e9e9e9;
  background-color: var(--color-bg-0);
  transition: border-color 0.2s ease-in-out;
  cursor: pointer;
}
.widget_item-type .widget_item-content .widget_item-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(59, 130, 246, 0.08);
}
.widget_item-type input:checked + .widget_item-content {
  border-color: var(--brand-secondary);
}

.inputs-verification {
  display: flex;
  align-items: center;
}
.inputs-verification .form-control {
  text-align: center;
  border: 1px solid var(--color-border-300);
  border-radius: 4px;
  background-color: #f9f9f9;
  flex: 1 1 0;
  font-weight: bold;
}
.inputs-verification .form-control:not(:last-of-type) {
  -webkit-margin-end: 20px;
  margin-inline-end: 20px;
}

@media (min-width: 992px) {
  .modal-dialog {
    max-width: 600px;
  }
  .font-size-lg-24 {
    font-size: 24px !important;
  }
  .font-size-lg-22 {
    font-size: 22px !important;
  }
  .font-size-lg-36 {
    font-size: 36px !important;
  }
  .font-size-lg-40 {
    font-size: 40px !important;
  }
  .sectoin-content {
    padding: 150px 0;
  }
}
@media (max-width: 991px) {
  .sectoin-content {
    padding: 90px 0;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: unset;
  }
}
.main-footer {
  background-color: var(--color-bg-300);
  padding: 200px 0 60px;
}
.main-footer .link-footer a {
  color: var(--color-text-700);
  display: inline-block;
  font-size: 15px;
  padding: 4px 12px;
  position: relative;
  transition: color 200ms;
  cursor: pointer;
}
.main-footer .link-footer a:hover {
  color: var(--brand-primary) !important;
}

.social-media {
  display: flex;
  align-items: center;
}

.social-media li a {
  width: 30px;
  height: 30px;
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 50%;
  transition: background-color 0.3s ease-in-out;
  background-color: var(--color-bg-0);
}
.social-media li a i {
  transition: color 0.3s ease-in-out;
}
.social-media li a:hover {
  background-color: var(--brand-secondary);
  color: var(--color-bg-0);
}

.social-media li:not(:last-of-type) {
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
}

.social-media li a:hover {
  color: var(--color-bg-0);
}

@media (min-width: 992px) {
  html[dir="rtl"] .list-service [class*="col-"]:nth-of-type(1),
  html[dir="rtl"] .list-service [class*="col-"]:nth-of-type(3) {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 0;
  }
  html[dir="rtl"] .list-service [class*="col-"]:nth-of-type(1) {
    padding: 0 30px 0 30px;
  }
} /*# sourceMappingURL=main.css.map */

/*  */



.section-page-header {
  background-color: var(--text-on-white);
  position: relative;
  z-index: 1;
}

.section-page-header::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: var(--value-pattern-url3);
  z-index: -1;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.16;
  background-size: cover;
}

.section-page-header .page-title {
  font-size: 40px;
  color: var(--text-hero);
}

.breadcrumb {
  background: transparent;
  margin-bottom: 20px;
  padding: 0;
}
.breadcrumb .breadcrumb-item {
  color: var(--color-primary-700);
  font-size: 14px;
}
@media (max-width: 991px) {
  .breadcrumb .breadcrumb-item {
    font-size: 14px;
  }
}
.breadcrumb .breadcrumb-item a {
  color: #777777;
  transition: color 0.2s ease-in-out;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
  padding-right: 0px;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "\f054";
  font-family: "Font Awesome 6 free";
  color: #666666;
  float: left;
  font-size: 14px;
  border-radius: 50%;
  padding: 0;
  width: 32px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 10px;
  margin-top: 1px;
  font-weight: bold;
}
@media (max-width: 991px) {
  .breadcrumb-item + .breadcrumb-item::before {
    font-size: 14px;
    margin-top: 3px;
  }
}

.widget_item-blog {
  border: 1px solid var(--color-bg-100);
  border-radius: 6px;
}

.widget_item-blog .widget_item-image {
  height: 0;
  padding-top: 71%;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.widget_item-blog .widget_item-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  object-fit: cover;
  border-radius: 6px;
  transition: all 0.7s ease-in-out;
}

.widget_item-blog .widget_item-image img:hover {
  transform: scale(1.1);
}

.widget_item-blog .widget_item-desc {
  height: 68px;
  overflow: hidden;
}

.widget_item-blog .widget_item-more {
  color: var(--brand-secondary);
}

.widget_item-blog .widget_item-title a {
  color: var(--color-text-900);
  transition: color 0.2s ease-in-out;
}

.widget_item-blog .widget_item-title a:hover {
  color: var(--brand-primary);
}

.widget_item-blog.widget_2 .widget_item-image {
  height: 0;
  padding-top: 29%;
  position: relative;
  width: 200px;
  flex: 0 0 auto;
  margin-inline-end: 12px;
}

.swiper-action {
  position: absolute;
  bottom: -40px;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 50%;
  transform: translateX(50%);
}
.swiper-action .swiper-next,
.swiper-action .swiper-prev {
  margin: 0px 10px;
  border: 1px solid var(--color-border-700);
  color: var(--color-border-700);
  background-color: var(--color-bg-0);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.swiper-action .swiper-next:hover,
.swiper-action .swiper-prev:hover {
  background-color: var(--brand-secondary);
  color: var(--color-bg-0);
}
.swiper-action .swiper-next.swiper-button-disabled,
.swiper-action .swiper-prev.swiper-button-disabled {
  opacity: 0.3;
}

/*  */
.widget_item-product--2 {
  padding: 90px 0;
}
.widget_item-product--2:nth-child(odd) {
  background-color: var(--color-bg-0);
}
.widget_item-product--2:nth-child(even) {
  background-color: var(--color-bg-200);
}
.widget_item-product--2:nth-child(even) > .container > .row {
  flex-direction: row-reverse;
}
.widget_item-product--2 .widget_item-desc {
  max-height: 256px;
  overflow: hidden;
}
.widget_item-product--2 .widget_item-image {
  height: 0;
  padding-top: 66%;
  position: relative;
}

.widget_item-product--2 .widget_item-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  object-fit: cover;
  border-radius: 6px;
}

@media (max-width: 991px) {
  .widget_item-product--2 {
    padding: 20px 0;
  }
  .widget_item-product--2 .widget_item-image {
    margin: 20px 0px;
  }
}

/*  */
.form-contact .form-control {
  border: 1px solid #e8e8e8;
}
.form-contact .form-control:focus {
  border: 1px solid var(--brand-primary);
}

.section-info-contact {
  background-color: rgba(241, 244, 249, 0.6);
}

.widget_item-infoContact {
  border-radius: 6px;
  border: 1px solid rgba(0, 41, 92, 0.116);
  padding: 45px 10px;
}

.widget_item-infoContact .widget_item-link {
  color: var(--color-text-600);
}
.widget_item-infoContact .widget_item-link:hover {
  color: var(--brand-secondary);
}

.divider {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}

.title-section-tag {
  background-color: rgba(58, 91, 113, 0.1);
  border-radius: 10px;
  padding: 15px 50px;
  display: inline-block;
}
/*  */
.widget_item-team .widget_item-image {
  height: 0;
  padding-top: 117%;
  position: relative;
}
.widget_item-team .widget_item-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 8px;
}

.aside {
  border: 1px solid var(--color-border-500);
  border-radius: 6px;
  padding: 30px;
  position: sticky;
  top: 10px;
}

.aside li a {
  padding: 10px 0;
  color: var(--color-text-600);
  display: block;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.aside li a.active {
  color: var(--brand-primary);
}

.line-gradient {
  background: linear-gradient(
    280deg,
    rgba(255, 255, 255, 1) 0%,
    var( --color-secondary-700) 100%
  );
  width: 60px;
  height: 7px;
  border-radius: 30px;
}
.main-header.none-fixed {
  position: relative !important;
}

.main-footer.bg-footer {
  background-color: var(--color-bg-500);
}
.main-footer.footer-padding-50 {
  padding: 50px 0 !important;
}

@media (max-width: 991px) {
  .section-page-header {
    padding: 20px 0;
  }
  .section-page-header .page-title {
    font-size: 30px;
  }
  .widget_item-info * {
    font-size: 16px;
  }
}

/* 
 */

@media (min-width: 992px) {
  .panel.panel-user .logo {
    display: none;
  }
  .panel.panel-admin .logo {
    filter: brightness(0) invert(1);
  }
  .panel.panel-user .main-header {
    padding-inline-start: 330px;
    padding-inline-end: 60px;
  }
  .panel .main-header {
    height: 80px;
  }
  .panel .main-header .container {
    width: 100%;
  }
  .panel.panel-admin .main-header{
    background-color: var(--brand-primary);
    color: var(--color-bg-0);
  }
  .panel.panel-admin .main-header .menu-container .main-menu .menu_item .menu_link ,
  .panel.panel-admin .main-header .menu-container .main-menu .menu_item button{
    color: var(--color-bg-0);
  }
  .panel.panel-admin .main-header .menu-container .main-menu .menu_item .image-lang{
    filter: brightness(0) invert(1);
  }
}

.footer-bottom {
  z-index: 5;
  position: relative;
}

.main-grid-fluid-page {
  min-height: calc(100vh - 62px);
  padding-bottom: 20px;
}

.main-aside {
  position: fixed;
  z-index: 2;
  width: 300px;
  top: 0;
  height: 100%;
  background-color: var(--color-bg-0);
  inset-inline-start: 0;
}

.aside-menu .menu-nav {
  padding: 20px;
}

.aside-menu .menu-nav .menu-item {
  margin-bottom: 10px;
}

.aside-menu .menu-nav .menu-item .menu-link {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  transition: background-color 0.2s ease-in-out;
}

.aside-menu .menu-nav .menu-item .menu-icon {
  width: 24px;
  flex: 0 0 auto;
  margin-inline-end: 14px;
  display: inline-block;
}

.aside-menu .menu-nav .menu-item .menu-link .menu-icon img {
  transition: filter 0.2s ease-in-out;
  width: 24px;
}

.aside-menu .menu-nav .menu-item .menu-text {
  color: var(--color-text-600);
  font-weight: 500;
  font-size: 16px;
  transition: color 0.2s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0;
}

.aside-menu .menu-nav .menu-item.active .menu-link,
.aside-menu .menu-nav .menu-item:hover .menu-link {
  background-color: var(--brand-primary);
}

.aside-menu .menu-nav .menu-item.active .menu-text,
.aside-menu .menu-nav .menu-item:hover .menu-text {
  color: var(--color-bg-0);
}
.aside-menu .menu-nav .menu-item.active .menu-link .menu-icon img,
.aside-menu .menu-nav .menu-item:hover .menu-link .menu-icon img {
  filter: brightness(0) invert(1);
}

.main-content-page-grid {
  padding-top: 140px;
  padding-inline-start: 330px;
  padding-inline-end: 60px;
}

.dashboard-icon {
  width: 74px;
  height: 70px;
  margin: 0px auto;
  background-color: var(--brand-primary)1f;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-bottom: 16px;
}

.font-size-14 {
  font-size: 14px;
}

.font-size-16 {
  font-size: 16px;
}

.table-custom thead tr td {
  font-weight: 500;
  color: #6360aa;
}

.table-custom tbody tr td {
  color: var(--color-text-600);
}

.table-custom thead tr td,
.table-custom tbody tr td {
  padding: 18px 10px;
}

.text-success {
  color: var(--color-success-600) !important;
}

.tab-tickets .nav-item .nav-link {
  background-color: var(--color-bg-0);
  font-weight: 500;
  font-size: 16px;
  color: var(--brand-primary);
  padding: 6px 25px;
}
.tab-tickets .nav-item .nav-link.active {
  background-color: var(--brand-primary);
  color: var(--color-bg-0);
}

.tab-tickets .nav-item:not(:last-of-type) {
  margin-inline-end: 15px;
}

.image-order-product img {
  width: 100px;
  height: 100px;
  border-radius: 6px;
  object-fit: cover;
}

.widgets-tickets {
  border-left: 3px solid var(--overlay-primary-97);
  margin-inline-start: 10px;
}

.widget_item-ticket .widget_item-content {
  border: 1px solid var(--color-border-600);
  padding: 11px 20px;
}

.widget_item-ticket {
  padding-inline-start: 40px;
  position: relative;
  margin-bottom: 24px;
  margin-inline-start: 10px;
  z-index: 1;
}

.widget_item-ticket .widget_item-content {
  border-radius: 6px;
}

.widget_item-ticket::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid var(--brand-secondary);
  inset-inline-start: -21px;
  top: 50%;
  border-radius: 50%;
  z-index: 1;
  background-color: var(--color-bg-0);
  transform: translateY(-50%);
}

.widget_item-ticket::after {
  border: 1px solid var(--color-border-600);
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  inset-inline-start: 32px;
  position: absolute;
  border-radius: 5px;
  display: inline-block;
  border-right: 3px solid var(--color-bg-0);
  border-top: 3px solid var(--color-bg-0);
  transform: translateY(-50%) rotate(45deg);
  z-index: -1;
}

.widget_item-ticket .widget_item-date {
  color: #717171;
}

.widget_item-ticket .widget_item-title {
  color: var(--color-text-700);
}

.widget_item-ticket.ticket-send .widget_item-content {
  background-color: var(--brand-primary);
}

.widget_item-ticket.ticket-send .widget_item-date,
.widget_item-ticket.ticket-send .widget_item-title {
  color: var(--color-bg-0);
}

.add-ticket {
  background-color: #f0f2f5;
  border-radius: 6px;
  padding: 6px;
}

.btn-success-light {
  background-color: rgba(17, 165, 66, 0.2);
}

.btn-success-light:hover,
.btn-success-light:focus {
  background-color: rgba(17, 165, 66, 1);
  color: var(--color-bg-0);
}

.dropdown-menu.dropdown-user .icon {
  max-width: 20px;
}
@media (max-width: 1200px) {
  .panel .main-header .h5,
  .panel .main-header .h6 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .table-custom thead {
    display: none;
  }
  .table-custom tbody tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #eee;
  }
  .table-custom tbody tr td {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .table-custom tbody tr td::before {
    content: attr(data-title);
    font-size: 12px;
    font-weight: 400;
  }
  .main-content-page-grid {
    padding-top: 85px;
    padding-inline-start: 20px;
    padding-inline-end: 20px;
  }
  .main-aside {
    inset-inline-start: -300px;
    transition: all 0.3s ease-in-out;
  }
  .main-aside.active {
    inset-inline-start: 0;
    width: 100%;
  }
  .dropdown-menu.dropdown-user {
    min-width: 100%;
  }
}
html[dir="rtl"] .main-aside {
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}

html[dir="rtl"] .widget_item-ticket::after {
  border: 1px solid var(--color-border-600);
  border-left: 3px solid var(--color-bg-0);
  border-bottom: 3px solid var(--color-bg-0);
}

html[dir="ltr"] .main-aside {
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

html[dir="rtl"] .btn-send-ticket {
  transform: rotate(180deg);
}


.panel.panel-admin .main-aside{
  z-index: 2;
}

.width-90{
  width: 90px;
}

.height-90{
  height: 90px;
}

.table .image-product{
  width: 30px;
  height: 30px;
  border: 1px solid var(--color-border-600);
  object-fit: cover;
}

.table-product thead tr td{
  color: #1F2653;
}

.table-product tbody tr:nth-child(odd) td{
  background-color: var(--color-bg-0);
  padding: 8px 10px;
}

.font-size-12{
  font-size: 12px !important;
}


.progress-custom {
  background-color: var(--color-bg-0);
  height: 3px;
  position: relative;
  overflow:unset
}

.progress-custom::before,
.progress-custom::after{
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: var(--color-border-600);
  border: 2px solid var(--color-bg-0);
  border-radius: 50%;
}
.progress-custom::before{
  left: 0;
}
.progress-custom::after{
  right: 0;
}
.progress-custom .progress-bar{
  position: relative;
  overflow:unset;
  background-color: var(--brand-secondary);
}

.progress-custom .progress-bar::before,
.progress-custom .progress-bar::after{
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: var(--brand-secondary);
  border: 2px solid var(--brand-primary);
  border-radius: 50%;
}
.progress-custom .progress-bar::before{
  left: 0;
}
.progress-custom .progress-bar::after{
  right: 0;
}

.table-custom-2.table{
  border-radius: 5px;
  overflow: hidden;
}
.table-custom-2.table thead td{
  background-color:var(--color-border-muted);
}

.pagination .page-link{
  background-color: var(--color-bg-0);
  border-color: var(--color-border-muted);
  color: var(--color-text-200);
  min-width: 50px;
  text-align: center;
  margin: 0px 6px;
  border-radius: 5px;
}

.pagination .page-item.active .page-link{
  background-color: var(--brand-primary);
}
.pagination .page-item.active .page-link{
  color: var(--color-bg-0);
}

.bg-gray-2{
  background-color: var(--color-bg-400);
}

.widget_item-images .widget_item-image{
position: relative;
height: 0;
padding-top: 96%;
}
.widget_item-images .widget_item-image img{
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  border-radius: 5px;
}

body.hide-aside .main-content-page-grid {
  padding-inline-start: 130px;
}

body.hide-aside .main-aside {
  position: fixed;
  z-index: 2;
  width: 106px;
}


body.hide-aside .aside-menu .menu-nav .menu-item .menu-text{
  display: none;
}

body.hide-aside .aside-menu .menu-nav {
  padding-top: 28px;
}




/*RTL*/
.ms-auto { margin-inline-start: auto !important; }
.me-auto { margin-inline-end:   auto !important; } 

.me-1 { margin-inline-end: .25rem !important; }
.me-2 { margin-inline-end: .5rem  !important; }
.me-3 { margin-inline-end: 1rem   !important; }
.me-4 { margin-inline-end: 1.5rem !important; }
.me-5 { margin-inline-end: 3rem   !important; }

.ms-1 { margin-inline-start: .25rem !important; }
.ms-2 { margin-inline-start: .5rem  !important; }
.ms-3 { margin-inline-start: 1rem   !important; }
.ms-4 { margin-inline-start: 1.5rem !important; }
.ms-5 { margin-inline-start: 3rem   !important; }
/*END : RTL


/* START : HEADER SCROLL */
:root { --header-h: 60px; }

/* prevent first-paint flicker */
#siteHeader.init-freeze { transition: none !important; }

/* Base header over hero */
#siteHeader.main-header.header-over-hero{
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: transparent;
  border-bottom: none;
  z-index: 1100;
  transition:
    background-color .25s ease,
    backdrop-filter .25s ease,
    height .25s ease,
    color .2s ease;
}

/* Solid white when past hero / on internal pages */
#siteHeader.has-white-bg,
#siteHeader.fixed-header{
  background: var(--color-bg-0);
  backdrop-filter: saturate(160%) blur(6px);
}

/* --- Exclusive logo swap ---
   DEFAULT BEFORE/AT INIT = LIGHT (white ink) */
#siteHeader .logo-img { display:none; height: var(--header-h); width:auto; }
#siteHeader .logo-img.logo-light { display:block; }                 /* default = light */
#siteHeader[data-ink="dark"]  .logo-img.logo-light { display:none; }
#siteHeader[data-ink="dark"]  .logo-img.logo-dark  { display:block; }

/* Links & lang button by ink (default = light) */
#siteHeader .menu-container .main-menu .menu_item .menu_link{
  position: relative; padding-bottom: 1px !important;
  color:#fff; /* default (light) */
}
#siteHeader[data-ink="dark"] .menu-container .main-menu .menu_item .menu_link{ color: var(--brand-primary); }

#siteHeader .menu-container .main-menu .menu_item .menu_link::after{
  content:""; position:absolute; left:0; bottom:-0.01em !important;
  height:2px; width:100%; background: var(--brand-secondary);
  transform: scaleX(0); transform-origin: left center; transition: transform .28s ease;
}
#siteHeader .menu-container .main-menu .menu_item .menu_link:hover::after{ transform: scaleX(1); }
#siteHeader .menu-container .main-menu .menu_item .menu_link.active{ color: var(--brand-secondary); }
#siteHeader .menu-container .main-menu .menu_item .menu_link.active::after{ transform: scaleX(0); }

/* Lang button (default = light) */
#siteHeader .btn-outline-primary.btn-lang{
  color:#fff; border-color:#fff; background: transparent;
}
#siteHeader .btn-outline-primary.btn-lang:hover,
#siteHeader .btn-outline-primary.btn-lang:focus{
  color:#fff; border-color:#fff; background: var(--brand-secondary); box-shadow:none;
}
#siteHeader[data-ink="dark"] .btn-outline-primary.btn-lang{
  color: var(--brand-primary); border-color: var(--brand-primary); background: transparent;
}
#siteHeader[data-ink="dark"] .btn-outline-primary.btn-lang:hover,
#siteHeader[data-ink="dark"] .btn-outline-primary.btn-lang:focus{
  color: var(--color-bg-0); background: var(--brand-primary); border-color: var(--brand-primary);
}

/* Burger icon (default = light) */
#siteHeader .header-mobile__toolbar i { color:#fff; transition: color .2s ease; }
#siteHeader[data-ink="dark"] .header-mobile__toolbar i { color: var(--color-primary-700); }

/* ======= MOBILE ======= */
@media (max-width: 991px){
  #siteHeader .menu--mobile{
    position: fixed; z-index: 1200; top:0; left:0; right:0; bottom:0;
    height:100vh; min-height:100vh; background:var(--color-bg-0);
    overflow-y:auto; transform: translateX(100%); transition: transform .35s ease;
  }
  #siteHeader .menu--mobile.menu-mobile-active{ transform: translateX(0); }

  body.active-body{ overflow:hidden; }
  body.active-body #siteHeader{
    background: var(--color-bg-0);
    backdrop-filter: saturate(160%) blur(6px);
  }
  /* ensure dark logo while drawer is open (better contrast on white) */
  body.active-body #siteHeader .logo-img{ display:none; }
  body.active-body #siteHeader .logo-img.logo-dark{ display:block !important; }

  #siteHeader .menu--mobile .btn-lang{
    color: var(--brand-primary) !important; border-color: var(--brand-primary) !important;
  }
  #siteHeader .menu--mobile .btn-lang:hover,
  #siteHeader .menu--mobile .btn-lang:focus{
    background: var(--brand-secondary) !important; border-color: var(--brand-secondary) !important;
    color: var(--color-bg-0) !important; box-shadow: none !important;
  }

  #siteHeader .menu--mobile .logo .logo-img { display: none !important; }
  #siteHeader .menu--mobile .logo .logo-img.logo-dark { display: block !important; }
 
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  #siteHeader .menu-container .main-menu .menu_item .menu_link::after{ transition: none; }
}
/* END : HEADER SCROLL*/



/* START : HERO SECTION */
/* ---------- HERO SECTION ---------- */
.section-home.hero {
  position: relative;
  z-index: 0;
  --header-offset: clamp(72px, 8vh, 120px);
  min-height: clamp(560px, 85vh, 980px);
  padding-top: var(--header-offset);
  overflow: hidden;

  /* overlay controls */
  --overlay-angle: 270deg;     /* keep same angle on all sizes */
  --overlay-start: 0%;
  --overlay-end: 60%;
  --overlay-tint: color-mix(in srgb, var(--color-primary-700) 65%, transparent);
  --overlay-opacity: 0.18;
}

.section-home.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-image) center 30% / cover no-repeat;
  z-index: -2;
}

/* single definition only (no duplicate later) */
.section-home.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    var(--overlay-angle),
    var(--overlay-tint) var(--overlay-start),
    transparent var(--overlay-end)
  );
  z-index: -1;
  pointer-events: none;
}

/* PNG pattern overlay should fill consistently */
.section-home.hero .hero-overlay-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;           /* was 'contain' */
  object-position: center;     /* stable focus */
  opacity: var(--overlay-opacity);
  pointer-events: none;
  z-index: 0;
  transform: none;             /* remove scale that shifted layout on mobile */
}

/* Optional fine-tune for very small screens: push gradient a bit further */
@media (max-width: 480px) {
  .section-home.hero {
    --overlay-end: 70%;
    --overlay-opacity: 0.22;   /* compensate for smaller canvas */
  }
}

/* Text colors remain the same */
.text-hero-sub,
.text-hero-title,
.text-hero-body {
  color: var(--text-hero, #fff);
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
}

.text-accent { color: var(--brand-secondary) !important; }

.section-home.hero .home-content .col-lg-8,
.section-home.hero .home-content .col-xl-7 {
  max-width: 830px;
  padding-top: 8%;
}

@media (max-width: 991px) {
  .section-home.hero .home-content { text-align: center; }
  .section-home.hero .home-title { font-size: 25px; }
  .section-home.hero .home-text { font-size: 19px; }
  .section-home.hero .hero-overlay-img { object-position: right 100%; }
}
/* END : HERO SECTION */



/*START : SLIDER CLIENTS */
.swiper-project .swiper-wrapper { margin: 0 !important; }
.swiper-project .swiper-slide   { padding: 0 !important; }

.client-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  /* total vertical spacing between rows comes from row heights + padding */
}

.client-logo{
  flex: 0 0 var(--client-logo-h);
  height: var(--client-logo-h);
  width: var(--client-logo-w);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
}

.client-logo img{
  max-height: 100%;
  max-width: 100%;
  width: auto;           /* let it breathe horizontally if needed */
  height: auto;          /* keep aspect ratio */
  object-fit: contain;
  filter: grayscale(80%) contrast(110%);
  opacity: .9;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

.client-card:hover .client-logo img{
  filter: none;
  opacity: 1;
  transform: scale(1.03);
}

@media (max-width: 575.98px){
  :root{
    --client-logo-h: 110px;  
    --client-logo-w: 92%;
  }
}

.client-caption,
.client-overlay{         
  flex: 0 0 auto;
  min-height: 64px;                 
  width: 100%;
  padding-top: 8px;         
  text-align: center;

  opacity: 0;
  visibility: hidden;              
  transition: opacity .25s ease, transform .25s ease;
  transform: translateY(6px);
  background: transparent !important;
}
.client-card:hover .client-caption,
.client-card:hover .client-overlay{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.client-title{
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--color-green-600);
}
.client-desc{
  margin: 4px 0 0;
  font-size: .9rem;
  line-height: 1.35;
  color: var(--color-text-700);
  opacity: .85;
}

@media (max-width: 575.98px){
  .client-desc {
    font-size: .7rem;
    padding: 1rem;
    max-width: 250px;
    margin: 0 auto;
  }
}
/* End : SLIDER CLIENTS */


/* START : VALUE SECTION */
.section-value{
  position: relative;
  background: var(--shadow-3, #585858);
  overflow: hidden;
}

.section-value::before{
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
  opacity:.04;
  background-image: var(--value-pattern-url);
  background-repeat: no-repeat;
  background-position: 0 0;    
  background-size: clamp(800px, 65vw, 1400px) auto;
}
.section-value > .container{ position: relative; z-index: 1; }


.value-illustration img{
  display: inline-block;
  max-width: 95%;         
  height: auto;
  border-radius: 16px; 
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
@media (max-width: 575.98px){
  .value-illustration img{ max-width: 88%; border-radius: 14px; }
}
/*END : VALUE SECTION */ 


/* START : FAQS*/
.widget_item-head .fa-chevron-right,
.widget_item-head .fa-chevron-left{
  transition: transform .2s ease;
}
.widget_item-head .fa-chevron-left{
  transition: transform .2s ease;
}

.widget_item-head:not(.collapsed) .fa-chevron-left{
  transform: rotate(-90deg);  /* ◄ → ▼ */
}
.ms-auto-logic { margin-inline-start:auto !important; }
/* END : FAQS*/

/*START : FOOTER*/
.u-ltr{
  direction: ltr;
  unicode-bidi: isolate;   /* isolates from surrounding RTL */
  white-space: nowrap;     /* optional: prevents awkward wraps */
}
/*  END : FOOTER*/


/*START : CONTACT US */
.text-red{
  color: #dc3545;
  margin-top: .25rem;
  font-size: .875em;
}

.section-contactus {
  position: relative;
  z-index: 1;
}
.section-contactus::before{
  content:"";
  position:absolute;
  opacity:.5;
  background-image: var(--value-pattern-url);
  background-repeat: no-repeat;
  background-position: 0 55;    
  background-size: clamp(800px, 65vw, 1400px) auto;
}
.form-contact { width: 100%; }

/*END : CONTACT US */



/* START : SHARE IDEA*/
#form-share-idea.form-wizard .steps li a{
  /* kill the 36x36 circle on <a> itself so the label can sit below */
  display:block !important;
  width:auto !important;
  height:auto !important;
  padding:0 !important;
  margin:0 !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  color:inherit !important;
}

#form-share-idea.form-wizard .steps li a .title{
  display:flex;
  flex-direction:column;        /* circle on top, label below */
  align-items:center;
  gap:8px;
}

/* the actual circle */
#form-share-idea.form-wizard .steps li a .step-number{
  width:36px; height:36px;
  border-radius:50%;
  border:1px solid #353E78;
  color:#353E78;
  background:#fff;
  display:inline-flex; align-items:center; justify-content:center;
  font-weight:700; font-size:16px; line-height:1;
}

/* active / done colors on the circle (not on the <a>) */
#form-share-idea.form-wizard .steps li.current .step-number,
#form-share-idea.form-wizard .steps li.done    .step-number{
  background:#353E78;
  color:#fff;
  border-color:#353E78;
}

/* label under the circle */
#form-share-idea.form-wizard .steps li a .step-title{
  display:block;
  font-size:14px; line-height:1.3;
  color:#353E78;
  text-align:center;
}

/* hide label on mobile only */
@media (max-width: 991px){
  #form-share-idea.form-wizard .steps li a .step-title{
    display:none !important;
  }
}






/* Previous = outline (brand-secondary) */
.form-wizard#form-share-idea .actions ul li:first-child a{
  background:#fff;
  color:var(--brand-secondary);
  border-color:var(--brand-secondary);
}
.form-wizard#form-share-idea .actions ul li:first-child a:hover,
.form-wizard#form-share-idea .actions ul li:first-child a:focus{
  background:var(--brand-secondary);
  color:#fff;
  box-shadow:0 0 0 3px var(--ring-secondary);
}

/* Next = solid (brand-secondary) */
.form-wizard#form-share-idea .actions ul li:nth-of-type(2) a{
  background:var(--brand-secondary);
  border-color:var(--brand-secondary);
  color:#fff;
}
.form-wizard#form-share-idea .actions ul li:nth-of-type(2) a:hover,
.form-wizard#form-share-idea .actions ul li:nth-of-type(2) a:focus{
  background:color-mix(in srgb, var(--brand-secondary) 88%, #000 12%);
  border-color:color-mix(in srgb, var(--brand-secondary) 88%, #000 12%);
  box-shadow:0 0 0 3px var(--ring-secondary);
}

/* Finish = solid (brand-primary) — appears on last step */
.form-wizard#form-share-idea .actions ul li:last-child a{
  background:var(--brand-primary);
  border-color:var(--brand-primary);
  color:#fff;
}
.form-wizard#form-share-idea .actions ul li:last-child a:hover,
.form-wizard#form-share-idea .actions ul li:last-child a:focus{
  background:color-mix(in srgb, var(--brand-primary) 92%, #000 8%);
  border-color:color-mix(in srgb, var(--brand-primary) 92%, #000 8%);
  box-shadow:0 0 0 3px var(--ring-secondary);
}

.form-wizard#form-share-idea .actions ul li.disabled{ display:none; }

@media (max-width: 991px){
  .form-wizard#form-share-idea .actions ul{
    flex-direction:column;
    align-items:stretch;
    gap:10px;
  }
  .form-wizard#form-share-idea .actions ul li a{
    min-inline-size:100%;
  }
}

html[dir="rtl"] .form-wizard#form-share-idea .actions ul{
  direction: rtl;
}

.form-wizard#form-share-idea .actions a[href="#finish"]{
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color:#fff;
  transition: background-color .18s ease, border-color .18s ease,
              box-shadow .18s ease, filter .18s ease;
}

.form-wizard#form-share-idea .actions a[href="#finish"]:hover,
.form-wizard#form-share-idea .actions a[href="#finish"]:focus{
  /* if color-mix is supported, this slightly darkens */
  background: color-mix(in srgb, var(--brand-primary) 92%, #000 8%);
  border-color: color-mix(in srgb, var(--brand-primary) 92%, #000 8%);
  box-shadow: 0 0 0 3px var(--ring-secondary);
}

@supports not (background: color-mix(in srgb, #000 10%, #fff)){
  .form-wizard#form-share-idea .actions a[href="#finish"]:hover,
  .form-wizard#form-share-idea .actions a[href="#finish"]:focus{
    filter: brightness(0.92);
    box-shadow: 0 0 0 3px var(--ring-secondary);
  }
}

.widget_item-type .widget_item-content {
  border: 2px solid #E3E3E3;
  border-radius: 12px;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
  background-color: #fff;
  cursor: pointer;
}

/* Hover effect */
.widget_item-type:hover .widget_item-content {
  border-color: var(--brand-secondary, #353E78);
}

/* Checked (active) state */
.widget_item-type input[type="radio"]:checked + .widget_item-content {
  border-color: var(--brand-secondary, #353E78);
  background-color: rgba(53, 62, 120, .05);
  box-shadow: 0 0 0 3px rgba(53, 62, 120, .15);
}

.widget_item-type input[type="radio"]:focus-visible + .widget_item-content {
  outline: none;
  border-color: var(--brand-primary, #353E78);
  box-shadow: 0 0 0 3px rgba(53, 62, 120, .15);
}

.widget_item-content * {
  transition: color .2s ease;
}

#err-applicant_type { display:none; }

.widget_item-type input[type="radio"].error + .widget_item-content {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220,53,69,.15);
}

.widget_item-type input[type="radio"].valid + .widget_item-content {
  border-color: #198754;
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.force-ltr {
  direction: ltr !important;
  unicode-bidi: isolate; 
}
.phone-ltr {
  direction: ltr !important;
  text-align: left !important;
}
.phone-group[dir="ltr"] { unicode-bidi: isolate; }

.phone-prefix { white-space: nowrap; }

.phone-input {
  direction: ltr !important;
  text-align: left !important;
}
/* END : SHARE IDEA */

.btn-orge:disabled,
.btn-orge[disabled]{
  background: var(--brand-primary) !important;
  border-color: var(--brand-secondary) !important;
  color: var(--color-bg-0) !important;
  opacity: 1 !important;
}
