@charset "UTF-8";
@font-face {
  font-family: sansArabic;
  src: url("./../../webfonts/The Sans Arab/The Sans/TheSans-Bold.otf") format("opentype");
}
@font-face {
  font-family: sansArabic;
  src: url("./../../webfonts/The Sans Arab/The Sans/TheSans-Plain.otf") format("opentype");
}
@font-face {
  font-family: sansArabic;
  src: url("./../../webfonts/The Sans Arab/The Sans/TheSansArab-Black.ttf") format("opentype");
}
@font-face {
  font-family: sansArabic;
  src: url("./../../webfonts/The Sans Arab/The Sans/TheSansArab-Bold.ttf") format("opentype");
}
@font-face {
  font-family: sansArabic;
  src: url("./../../webfonts/The Sans Arab/The Sans/TheSansArab-Light.ttf") format("opentype");
}
:target {
  scroll-margin-top: 100px;
}

.fancybox__container {
  z-index: 1999;
}

.fancybox__track,
.fancybox__content,
.carousel__track {
  direction: ltr !important;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background-color: #ffffff;
}

::-webkit-scrollbar-thumb {
  background: black;
  height: 300px;
}

* {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
  font-family: sansArabic;
}

body {
  background-color: #ffffff;
  overflow-x: hidden;
  position: relative;
}

html[lang=ar] {
  direction: rtl;
}

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

a {
  text-decoration: none;
}

button,
input,
textarea {
  border: none;
  outline: none;
  background: none;
}

input[type=tel] {
  direction: rtl;
}

.dropdown-link {
  position: relative;
  transition: 0.3s;
  display: inline-flex;
}
.dropdown-link .card-header {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  transition: all 0.24s ease;
}
.dropdown-link .card-header:hover .email {
  color: #043b59 !important;
}
.dropdown-link .card-header:focus-visible {
  outline: 2px solid rgba(4, 59, 89, 0.35);
  outline-offset: 4px;
  border-radius: 10px;
}
.dropdown-link .card-header:hover {
  box-shadow: none;
}
.dropdown-link .card-header .user-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.dropdown-link .card-header .user-info .avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(165, 207, 241, 0.1019607843);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dropdown-link .card-header .user-info .avatar svg {
  width: 30px;
  fill: #043b59;
}
.dropdown-link .card-header .user-info .email {
  font-size: 1.02rem;
  color: #000;
  font-weight: 600;
  position: relative;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .dropdown-link .card-header .user-info .email {
    font-size: 14px;
  }
}
.dropdown-link .card-header .user-info .email::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(0, 0, 0, 0.75);
  border-bottom: 2px solid rgba(0, 0, 0, 0.75);
  transform: rotate(135deg) translateY(0px);
  transform-origin: 75% 65%;
  transition: transform 0.24s ease;
}
.dropdown-link .card-header .user-info .email:hover::after {
  border-right-color: #043b59;
  border-bottom-color: #043b59;
}
.dropdown-link .menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  inset-inline-end: 0;
  min-width: 170px;
  padding: 6px 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px) scale(0.96);
  transform-origin: top right;
  transition: all 0.24s ease;
  z-index: 1;
}
.dropdown-link .menu .menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  font-size: 15px;
  color: #374151;
  position: relative;
  transition: 0.2s;
}
.dropdown-link .menu .menu-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 59, 89, 0.04);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.dropdown-link .menu .menu-item:hover {
  background: #eff6ff;
}
.dropdown-link .menu .menu-item:hover::before {
  opacity: 1;
}
.dropdown-link .menu .menu-item .icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dropdown-link .menu .menu-item .icon svg {
  width: 18px;
}
.dropdown-link .menu .menu-item .icon.blue {
  background: rgba(165, 207, 241, 0.1019607843);
}
.dropdown-link .menu .menu-item .icon.blue svg {
  fill: #043b59;
}
.dropdown-link .menu .menu-item .icon.red {
  background: #fee2e2;
}
.dropdown-link .menu .menu-item .icon.red svg {
  fill: #ef4444;
}
.dropdown-link .menu .menu-item span {
  font-weight: 600;
}
.dropdown-link .menu .menu-item.logout:hover {
  background: #fff1f1;
}
.dropdown-link .menu .menu-item.logout:hover span {
  color: #dc2626;
}
.dropdown-link.is-open .card-header .user-info .email::after {
  transform: rotate(45deg) translateY(1px);
}
.dropdown-link.is-open .menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 11px 18px;
  border-radius: 11px;
  font-size: 0.96rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.22s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
@media (max-width: 768px) {
  .hero-btn {
    font-size: 14px;
  }
}
.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(4, 59, 89, 0.18);
}
.hero-btn .button-inner,
.hero-btn .button-inner-hover,
.hero-btn .button-inner-static {
  pointer-events: none;
  display: block;
}
.hero-btn .button-inner {
  position: relative;
  z-index: 4;
}
.hero-btn .button-inner-static {
  transition: transform 1.25s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s linear;
}
.hero-btn .button-inner-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(70%);
  transition: transform 1.25s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}
.hero-btn .button-bg {
  position: absolute;
  inset: 0;
  border-radius: 11px;
  overflow: hidden;
  z-index: 1;
}
.hero-btn .button-bg-layers {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  width: max(220%, 11rem);
  aspect-ratio: 1/1;
}
.hero-btn .button-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  transform: scale(0);
  opacity: 0.92;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s linear;
}
.hero-btn .button-bg-layer-1 {
  background: rgba(4, 59, 89, 0.95);
}
.hero-btn .button-bg-layer-2 {
  background: rgba(0, 153, 109, 0.95);
}
.hero-btn .button-bg-layer-3 {
  background: rgba(246, 145, 30, 0.96);
}
.hero-btn .button-bg-layer-4 {
  background: rgba(0, 153, 109, 0.96);
}
.hero-btn.primary {
  background: linear-gradient(125deg, #043b59, #00996d);
  color: #ffffff;
}
.hero-btn.primary.ring-hover-down-btn .button-bg-layers {
  bottom: -68%;
}
.hero-btn.primary.ring-hover-down-btn .button-inner-hover {
  color: #ffffff;
  transition-property: transform, opacity, color;
  transition-duration: 1.25s, 0.9s, 0.35s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1), cubic-bezier(0.19, 1, 0.22, 1), ease;
  transition-delay: 0s, 0s, 0s;
}
.hero-btn.primary.ring-hover-down-btn:hover {
  background: rgba(255, 255, 255, 0.82);
  color: #043b59;
  border-color: rgba(4, 59, 89, 0.26);
}
.hero-btn.primary.ring-hover-down-btn:hover .button-inner-static {
  opacity: 0;
  transform: translateY(-70%);
}
.hero-btn.primary.ring-hover-down-btn:hover .button-inner-hover {
  opacity: 1;
  transform: translateY(0);
  color: #043b59;
  transition-delay: 0s, 0s, 0.72s;
}
.hero-btn.primary.ring-hover-down-btn:hover .button-bg-layer-1 {
  transform: scale(1);
  opacity: 0;
  transition-delay: 0s, 0.46s;
}
.hero-btn.primary.ring-hover-down-btn:hover .button-bg-layer-2 {
  transform: scale(1);
  opacity: 0;
  transition-delay: 0.08s, 0.54s;
}
.hero-btn.primary.ring-hover-down-btn:hover .button-bg-layer-3 {
  transform: scale(1);
  opacity: 0;
  transition-delay: 0.16s, 0.62s;
}
.hero-btn.primary.ring-hover-down-btn:hover .button-bg-layer-4 {
  transform: scale(1);
  opacity: 0;
  transition-delay: 0.24s, 0.7s;
}
.hero-btn.secondary {
  color: #043b59;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(4, 59, 89, 0.26);
}
.hero-btn.secondary.ring-hover-btn .button-bg-layers {
  top: -68%;
}
.hero-btn.secondary.ring-hover-btn:hover {
  color: #ffffff;
  border-color: rgba(4, 59, 89, 0.1);
}
.hero-btn.secondary.ring-hover-btn:hover .button-inner-hover {
  color: #ffffff;
}
.hero-btn.secondary.ring-hover-btn:hover .button-inner-static {
  opacity: 0;
  transform: translateY(-70%);
}
.hero-btn.secondary.ring-hover-btn:hover .button-inner-hover {
  opacity: 1;
  transform: translateY(0);
}
.hero-btn.secondary.ring-hover-btn:hover .button-bg-layer-1 {
  transform: scale(1);
}
.hero-btn.secondary.ring-hover-btn:hover .button-bg-layer-2 {
  transition-delay: 0.08s;
  transform: scale(1);
}
.hero-btn.secondary.ring-hover-btn:hover .button-bg-layer-3 {
  transition-delay: 0.16s;
  transform: scale(1);
}
.hero-btn.secondary.ring-hover-btn:hover .button-bg-layer-4 {
  transition-delay: 0.24s;
  transform: scale(1);
}

.row {
  margin: 0;
  padding: 0;
}

.preloader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 4px solid #fff;
  border-right: 4px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.preloader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border-left: 4px solid #ff3d00;
  border-bottom: 4px solid transparent;
  animation: rotation 0.5s linear infinite reverse;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 28px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  z-index: 1200;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28);
}
.whatsapp-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.4);
  outline-offset: 3px;
}

html[lang=ar] .whatsapp-float {
  right: auto;
  left: 24px;
}

@media (max-width: 576px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 18px;
    right: 18px;
  }
  html[lang=ar] .whatsapp-float {
    right: auto;
    left: 18px;
  }
}
.sectionTitle {
  text-align: center;
  font-size: 45px;
  color: black;
  font-weight: 700;
}

.sectionSubtitle {
  text-align: center;
  font-size: 20px;
  margin-bottom: 48px;
  color: #828483;
}

.animatedLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #043b59;
  transition: all 0.3s ease-in-out;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.animatedLink i {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition: width 0.3s ease-in-out;
}
.animatedLink i img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 10px;
}
.animatedLink i span {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 1px solid #043b59;
  border-radius: 100px;
  transition: width 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.animatedLink:hover {
  padding: 0 20px;
  color: #ffffff;
}
.animatedLink:hover i {
  width: 20px;
}
.animatedLink:hover i span {
  width: 100%;
  border: 1px solid #043b59;
  background-color: #043b59;
}

html[lang=en] {
  direction: ltr;
}
html[lang=en] main .hero-recruitment .hero-grid .hero-content .hero-quote {
  border-left: 4px solid #043b59;
  border-right: none;
  padding-left: 1rem;
}
html[lang=en] main .video-section .sectionsubtitle {
  border-right: none;
  border-left: 3px solid #043b59;
  padding-left: 18px;
}
html[lang=en] .animatedLink i {
  transform: rotate(180deg);
}
html[lang=en] .animatedLink i span {
  left: auto;
  right: 0;
}
@media screen and (max-width: 768px) {
  html[lang=en] header nav .nav_links {
    left: calc(-70% - 24px);
    right: auto;
  }
  html[lang=en] header nav .nav_links.active {
    left: -24px;
  }
}
html[lang=en] main form .form-group .inputfield label {
  left: 12px;
}
html[lang=en] input:not(:-moz-placeholder) + label, html[lang=en] textarea:not(:-moz-placeholder) + label {
  left: 12px;
}
html[lang=en] input:focus + label,
html[lang=en] textarea:focus + label,
html[lang=en] input:not(:placeholder-shown) + label,
html[lang=en] textarea:not(:placeholder-shown) + label {
  left: 12px;
}

.breadcrumb {
  background: linear-gradient(rgba(1, 18, 50, 0.76), rgba(5, 24, 62, 0.91)), url(./../images/breadcrumb.jpg) no-repeat center;
  padding: 130px 0;
  position: relative;
  z-index: 1;
}
.breadcrumb .decorative-shape {
  position: absolute;
  bottom: -55px;
  left: 0;
  width: 100%;
  height: 100px;
  transform: scaleY(-1);
}
@media (max-width: 768px) {
  .breadcrumb .decorative-shape {
    bottom: -1px;
  }
}
.breadcrumb .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.breadcrumb h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 6px 0;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(4, 59, 89, 0.04);
  position: relative;
  z-index: 2;
}
.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 10px;
  font-size: 1.08rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  z-index: 2;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0 6px;
  color: #b7864c;
  font-weight: 500;
  position: relative;
}
.breadcrumb li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 25px;
  margin-inline-start: 6px;
  background: url("./../images/arrow.svg") no-repeat center;
  background-size: contain;
  transform: scaleX(-1);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s;
}
.breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.95);
}
@media (max-width: 768px) {
  .breadcrumb {
    padding: 100px 0 50px;
  }
  .breadcrumb h2 {
    font-size: 1.25rem;
  }
  .breadcrumb ul {
    font-size: 0.98rem;
  }
}

.filter-bar-wrapper {
  margin-top: -95px;
  margin-bottom: 2rem;
  position: relative;
  z-index: 11;
}
.filter-bar-wrapper .filter-bar {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid rgba(4, 59, 89, 0.08);
}
.filter-bar-wrapper .filter-form {
  display: flex;
  flex: 1;
  align-items: stretch;
  width: 100%;
  margin: 0;
}
.filter-bar-wrapper .filter-mobile-toggle {
  display: none;
}
.filter-bar-wrapper .filter-mobile-bar {
  display: none;
}
.filter-bar-wrapper .cv-service-tabs--mobile {
  display: none;
}
.filter-bar-wrapper .filter-fields {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: stretch;
  padding: 0 2rem;
}
.filter-bar-wrapper .filter-field {
  padding: 1.4rem 1.2rem;
  border-inline-start: 1px solid #eee;
  text-align: center;
  min-width: 140px;
}
.filter-bar-wrapper .filter-field:first-child {
  border-inline-start: 0;
}
.filter-bar-wrapper .filter-field label {
  color: #7f8790;
  font-size: 1rem;
  margin-bottom: 10px;
  display: block;
  font-weight: 600;
}
.filter-bar-wrapper .filter-field select {
  color: #1a3a2c;
  font-weight: 700;
  font-size: 1.02rem;
  border: 0;
  background: transparent;
  outline: none;
  cursor: pointer;
  text-align: center;
  width: 100%;
  text-overflow: ellipsis;
}
.filter-bar-wrapper .filter-search-wrap {
  position: relative;
  min-width: 124px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.filter-bar-wrapper .filter-search-wrap .filter-search-btn {
  border: 0;
  border-radius: 0;
  min-width: 124px;
  width: 100%;
  padding-inline: 1rem;
  background: linear-gradient(130deg, #f6a713, #ea9809) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.filter-bar-wrapper .filter-search-wrap .filter-search-btn .button-bg {
  border-radius: 0;
}
.filter-bar-wrapper .filter-search-wrap .filter-search-btn .button-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.filter-bar-wrapper .filter-search-wrap .filter-search-btn svg {
  width: 34px;
  height: 34px;
}
.filter-bar-wrapper .filter-search-wrap .filter-search-options {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 8px;
  background: #fdf7ee;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9);
  transition: all 0.35s ease;
}
.filter-bar-wrapper .filter-search-wrap .filter-search-options span {
  display: none;
}
.filter-bar-wrapper .filter-search-wrap .filter-option-btn {
  border: 0;
  min-height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 0.9rem;
  font-weight: 700;
  gap: 8px;
  transition: 0.2s ease;
}
.filter-bar-wrapper .filter-search-wrap .filter-option-clear {
  background: #fff;
  color: #5d6571;
  border: 1px solid rgba(4, 59, 89, 0.18);
}
.filter-bar-wrapper .filter-search-wrap .filter-option-clear:hover {
  color: #043b59;
  border-color: rgba(4, 59, 89, 0.45);
}
.filter-bar-wrapper .filter-search-wrap .filter-option-apply {
  background: linear-gradient(130deg, #f6a713, #ea9809);
  color: #fff;
}
.filter-bar-wrapper .filter-search-wrap .filter-option-apply:hover {
  filter: brightness(0.96);
}
.filter-bar-wrapper .filter-search-wrap:hover .filter-search-btn, .filter-bar-wrapper .filter-search-wrap:focus-within .filter-search-btn {
  opacity: 0;
  transform: scale(0.86);
  pointer-events: none;
}
.filter-bar-wrapper .filter-search-wrap:hover .filter-search-options, .filter-bar-wrapper .filter-search-wrap:focus-within .filter-search-options {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
@media (max-width: 1199px) {
  .filter-bar-wrapper {
    margin-top: -76px;
  }
  .filter-bar-wrapper .filter-fields {
    padding: 0 1rem;
  }
  .filter-bar-wrapper .filter-field {
    min-width: 118px;
    padding: 1.1rem 0.75rem;
  }
  .filter-bar-wrapper .filter-field label,
  .filter-bar-wrapper .filter-field select {
    font-size: 0.93rem;
  }
}
@media (max-width: 992px) {
  .filter-bar-wrapper {
    margin-top: -54px;
  }
  .filter-bar-wrapper .filter-mobile-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-bottom: 1px solid #f1f1f1;
    background: #fff;
  }
  .filter-bar-wrapper .filter-form {
    flex-direction: column;
  }
  .filter-bar-wrapper .filter-form:not(.is-open) .filter-fields,
  .filter-bar-wrapper .filter-form:not(.is-open) .filter-search-wrap {
    display: none;
  }
  .filter-bar-wrapper .filter-mobile-toggle {
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
    border: 0;
    background: #fff;
    color: #1a3a2c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
  }
  .filter-bar-wrapper .filter-mobile-toggle__icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(4, 59, 89, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #043b59;
    font-size: 0.9rem;
  }
  .filter-bar-wrapper .cv-service-tabs--mobile {
    --round: 12px;
    --p-x: 6px;
    --p-y: 5px;
    --w-label: 118px;
    display: flex;
    align-items: center;
    flex: 1;
    margin: 0;
    padding: var(--p-y) var(--p-x);
    border-radius: var(--round);
    overflow-x: auto;
    background: #f4f7f8;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    touch-action: pan-x;
  }
  .filter-bar-wrapper .cv-service-tabs--mobile::-webkit-scrollbar {
    display: none;
  }
  .filter-bar-wrapper .cv-service-tabs--mobile .cv-service-tab {
    border: 0;
    background: transparent;
    border-radius: calc(var(--round) - var(--p-y));
    width: var(--w-label);
    min-width: var(--w-label);
    padding: 10px 8px;
    font-size: 0.86rem;
    font-weight: 700;
    color: #264238;
    transition: 0.25s ease;
    white-space: nowrap;
    scroll-snap-align: start;
  }
  .filter-bar-wrapper .cv-service-tabs--mobile .cv-service-tab.is-active {
    background: #043b59;
    color: #fff;
  }
  .filter-bar-wrapper .filter-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
  }
  .filter-bar-wrapper .filter-field {
    border-inline-start: 0;
    border-bottom: 1px solid #f1f1f1;
  }
  .filter-bar-wrapper .filter-field label {
    font-size: 0.86rem;
    margin-bottom: 6px;
  }
  .filter-bar-wrapper .filter-field select {
    font-size: 0.95rem;
  }
  .filter-bar-wrapper .filter-field:nth-child(odd) {
    border-inline-end: 1px solid #f1f1f1;
  }
  .filter-bar-wrapper .filter-search-wrap {
    width: 100%;
    min-height: 62px;
    border-top: 1px solid #f1f1f1;
  }
  .filter-bar-wrapper .filter-search-wrap .filter-search-btn {
    min-height: 62px;
    display: none;
  }
  .filter-bar-wrapper .filter-search-wrap .filter-search-options {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    width: 100%;
    min-height: 62px;
    justify-content: space-between;
    gap: 10px;
    padding: 10px;
  }
  .filter-bar-wrapper .filter-search-wrap .filter-option-btn {
    flex: 1;
    justify-content: center;
    width: auto;
    height: 44px;
    min-height: 44px;
    border-radius: 12px;
  }
  .filter-bar-wrapper .filter-search-wrap .filter-option-btn span {
    display: inline;
    font-size: 0.92rem;
    line-height: 1;
  }
  .filter-bar-wrapper .filter-search-wrap .filter-option-clear {
    background: #fff;
  }
}
@media (max-width: 576px) {
  .filter-bar-wrapper {
    margin-top: -38px;
    margin-bottom: 1.2rem;
  }
  .filter-bar-wrapper .filter-bar {
    border-radius: 14px;
  }
  .filter-bar-wrapper .filter-fields {
    grid-template-columns: 1fr;
  }
  .filter-bar-wrapper .filter-field {
    border-inline-end: 0 !important;
    padding: 0.9rem 0.75rem;
    text-align: right;
  }
  .filter-bar-wrapper .filter-field label,
  .filter-bar-wrapper .filter-field select {
    text-align: right;
  }
}

html[lang=en] header nav .nav_links .dropdown-link .card-header .user-info .email::after,
html[lang=en] .dropdown-link .card-header .user-info .email::after {
  border-left: 2px solid rgba(0, 0, 0, 0.75);
  border-top: 2px solid rgba(0, 0, 0, 0.75);
  border-right: none !important;
  border-bottom: none !important;
  transform-origin: 40% 50%;
}
html[lang=en] header.page .dropdown-link .card-header .user-info .email::after {
  border-left: 2px solid rgba(255, 255, 255, 0.75) !important;
  border-top: 2px solid rgba(255, 255, 255, 0.75) !important;
  border-right: none !important;
  border-bottom: none !important;
  transform-origin: 40% 50%;
}
html[lang=en] .dropdown-link.is-open .card-header .user-info .email::after {
  transform: rotate(220deg) translateY(1px);
}
html[lang=en] .dropdown-link .menu {
  right: auto;
  left: 0;
}
@media screen and (max-width: 768px) {
  html[lang=en] .dropdown-link .menu.username {
    left: -40px;
  }
}
html[lang=en] .scroll-top-indicator {
  right: unset;
  left: 24px;
}
html[lang=en] svg.arr {
  transform: scaleX(1) !important;
}
html[lang=en] .hero-btn:hover svg.arr {
  transform: scaleX(1) translateX(3px);
}
html[lang=en] main .about-recruitment .about-collage .about-help-badge {
  inset: auto auto 20% 60%;
}
html[lang=en] main .requirements-recruitment .section-head h2::before {
  left: 0;
}
html[lang=en] main .countries .countryCardLink .countryBox .country-main .country-meta {
  padding-left: 1rem;
  padding-right: auto;
}
html[lang=en] main .countries .countryCardLink .countryBox .country-main .country-icon {
  transform: translate(200px, -50px);
}
html[lang=en] main .countries .countryCardLink .country-cta {
  border-radius: 50px 0 20px 0px;
  transform: translateX(222px);
}
html[lang=en] main .countries .countryCardLink .country-cta svg {
  transform: translateX(8px) scaleX(1);
}
html[lang=en] main .call-center .call-agent-card .agent-rating {
  justify-content: flex-start;
}
html[lang=en] .breadcrumb li:not(:last-child)::after {
  transform: scaleX(1);
}
html[lang=en] .vision-mission .vm-card .vm-number {
  left: auto;
  right: 20px;
}
html[lang=en] main .workers-cv-section .cv-service-tabs {
  transform: translate(47%, 47%);
}
html[lang=en] main.cvPage-container .header-info {
  padding: 36px 46px 36px 36px;
}
html[lang=en] main.cvPage-container .section-line::before {
  content: "";
  right: auto;
  left: 100%;
}
html[lang=en] main.cvPage-container .cv-sidebar {
  left: 20px;
  right: auto;
}
html[lang=en] .icon-tooltip.tips-tooltip {
  left: 0;
  right: auto;
}
html[lang=en] ::marker {
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
  text-transform: none;
  text-indent: 0px !important;
  text-align: end !important;
  -moz-text-align-last: auto !important;
       text-align-last: auto !important;
}
html[lang=en] main .request-success .card-box-container .card-box .steps ul {
  padding-left: 20px;
  padding-right: unset;
  border-left: 2px solid #eee;
  border-right: auto;
}
html[lang=en] main .msnd-video-sec .msnd-video-sec__visual .msnd-video-thumb {
  border-radius: 100px 0px 0 0;
}
html[lang=en] main .msnd-video-sec .msnd-video-sec__text .msnd-features-list .msnd-feature-item:nth-child(even) {
  transform: translateX(50px);
}
html[lang=en] main .msnd-video-sec .msnd-video-sec__text .msnd-features-list .msnd-feature-item:nth-child(even):hover {
  transform: translateX(55px);
}
html[lang=en] main .msnd-video-sec .msnd-video-sec__text .msnd-features-list .msnd-feature-item:hover {
  transform: translateX(4px);
}
html[lang=en] main .contact-page .contact-inner:after {
  left: -15px;
  right: auto;
}
html[lang=en] main .contact-page .contact-info:before {
  content: unset;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 1.5%;
  z-index: 999;
  background: transparent;
}
@media screen and (max-width: 768px) {
  header {
    padding: 2px 12px;
  }
}
header.page .logo {
  filter: brightness(0) invert(1);
}
header.page .nav_links a {
  color: #ffffff;
}
header.page .nav_links a:hover {
  color: #f6911e !important;
}
header.page .nav_links a.active {
  color: #f6911e !important;
}
header.page nav .actions .toggler {
  color: #ffffff;
}
header.page .dropdown-link {
  position: relative;
  transition: 0.3s;
}
header.page .dropdown-link .card-header {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
header.page .dropdown-link .card-header .user-info .email {
  color: #fff !important;
}
header.page .dropdown-link .card-header .user-info .email::after {
  content: "";
  border-right: 2px solid rgba(255, 255, 255, 0.75) !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.75) !important;
}
header nav {
  margin: 8px auto 0;
  width: 100%;
  max-width: 1300px !important;
  padding: 12px 18px !important;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.28s ease;
  font-weight: 600;
  background: transparent;
  border: 1px solid transparent;
}
@media screen and (max-width: 768px) {
  header nav {
    padding: 10px 12px !important;
    border-radius: 12px;
  }
}
header nav .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav .logo img {
  height: 60px;
}
@media screen and (max-width: 768px) {
  header nav .logo img {
    height: 45px;
  }
}
header nav .nav_links {
  gap: 18px;
  transition: 0.25s ease;
  padding: 8px 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
header nav .nav_links a {
  font-size: 15px;
  font-weight: 600;
  transition: 0.2s ease;
  color: black;
  padding: 6px 8px;
  border-radius: 8px;
}
header nav .nav_links a:hover {
  color: #043b59 !important;
}
header nav .nav_links a.active {
  color: #043b59;
}
@media screen and (max-width: 768px) {
  header nav .nav_links {
    position: absolute;
    top: -12px;
    bottom: -12px;
    left: calc(-70% - 24px);
    height: calc(100vh + 16px);
    flex-direction: column;
    align-items: start;
    background: #ffffff;
    width: 70%;
    padding: 80px 24px 30px;
    justify-content: start;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
  header nav .nav_links a {
    color: black !important;
    width: 100%;
  }
  header nav .nav_links a.active {
    color: #043b59 !important;
  }
  header nav .nav_links.active {
    right: -24px;
    border-radius: 0;
    color: #043b59;
    z-index: 11;
  }
}
header nav .actions {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
}
header nav .actions button,
header nav .actions .login-btn {
  color: black;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(4, 59, 89, 0.2);
  transition: 0.22s ease;
  display: flex;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  header nav .actions button,
  header nav .actions .login-btn {
    padding: 6px 9px;
    font-size: 0.82rem;
    min-width: auto;
  }
  header nav .actions button .text,
  header nav .actions .login-btn .text {
    display: none;
  }
}
header nav .actions button:hover,
header nav .actions .login-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(4, 59, 89, 0.14);
}
header nav .actions .language-btn {
  background: rgba(255, 255, 255, 0.85);
}
header nav .actions .login-btn {
  color: #ffffff;
  background: linear-gradient(130deg, #043b59, #00996d);
  border-color: rgba(4, 59, 89, 0.66);
  padding: 8px 12px;
}
header nav .actions .toggler {
  display: none;
  color: #043b59;
  background-color: transparent !important;
  border: none;
}
@media screen and (max-width: 768px) {
  header nav .actions .toggler {
    display: flex;
  }
}
header nav.sticky {
  padding: 10px 18px !important;
  margin-top: 6px;
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(4, 59, 89, 0.14);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  animation: navDropIn 0.32s ease-out;
}
header nav.sticky .toggler {
  color: #043b59;
}
header nav.sticky .logo img {
  filter: none;
}
@media screen and (max-width: 768px) {
  header nav.sticky {
    padding: 8px 12px !important;
  }
}

/* ===== Notifications Page (moved from notifications.html) ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}
@keyframes emptyPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}
.profile .notif-panel {
  display: grid;
  gap: 8px;
}
.profile .notif-settings {
  display: grid;
  gap: 8px;
}
.profile .card {
  background: #ffffff;
  border-radius: 24px;
  padding: 22px 24px;
  box-shadow: 0 4px 24px rgba(4, 59, 89, 0.07);
  border: 1px solid rgba(4, 59, 89, 0.09);
  margin-bottom: 20px;
  animation: fadeUp 0.45s ease both;
}
@media screen and (max-width: 768px) {
  .profile .card {
    padding: 12px;
  }
}
.profile .card:nth-child(1) {
  animation-delay: 0.04s;
}
.profile .card:nth-child(2) {
  animation-delay: 0.1s;
}
.profile .card:nth-child(3) {
  animation-delay: 0.16s;
}
.profile .card:nth-child(4) {
  animation-delay: 0.22s;
}
.profile .card:nth-child(5) {
  animation-delay: 0.28s;
}
.profile .card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.profile .card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px 0;
  font-size: clamp(18px, 2.5vw, 20px);
  font-weight: 700;
  color: #043b59;
}
.profile .title-ico {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 0.88rem;
  background: linear-gradient(135deg, rgba(4, 59, 89, 0.08), rgba(0, 153, 109, 0.1));
  color: #043b59;
}
.profile .filter-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.profile .f-tab {
  border: 1.5px solid rgba(4, 59, 89, 0.09);
  background: #ffffff;
  color: #6b7c8d;
  border-radius: 12px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.profile .f-tab .f-count {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 50px;
  background: #f4f7fa;
  color: #6b7c8d;
  font-size: 0.67rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.profile .f-tab:hover {
  border-color: #043b59;
  color: #043b59;
}
.profile .f-tab.is-active {
  background: #043b59;
  color: #ffffff;
  border-color: #043b59;
  box-shadow: 0 4px 14px rgba(4, 59, 89, 0.22);
}
.profile .f-tab.is-active .f-count {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}
.profile .toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.profile .toolbar-left {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
  flex-wrap: wrap;
}
.profile .results-count {
  font-size: 0.83rem;
  color: #6b7c8d;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  background: #f4f7fa;
  border: 1px solid rgba(4, 59, 89, 0.09);
}
.profile .toolbar-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 9px;
  border: 1.5px solid rgba(4, 59, 89, 0.09);
  background: #ffffff;
  color: #6b7c8d;
  font-size: 0.83rem;
  font-weight: 600;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.profile .toolbar-btn:hover {
  border-color: #043b59;
  color: #043b59;
}
.profile .toolbar-btn.danger:hover {
  border-color: #dc2626;
  color: #dc2626;
  background: #fff5f5;
}
.profile .notif-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.profile .notif-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 16px;
  border-radius: 16px;
  margin-bottom: 6px;
  position: relative;
  border: 1.5px solid rgba(4, 59, 89, 0.09);
  background: #ffffff;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
  animation: slideIn 0.35s ease both;
}
.profile .notif-item:nth-child(1) {
  animation-delay: 0.03s;
}
.profile .notif-item:nth-child(2) {
  animation-delay: 0.07s;
}
.profile .notif-item:nth-child(3) {
  animation-delay: 0.11s;
}
.profile .notif-item:nth-child(4) {
  animation-delay: 0.15s;
}
.profile .notif-item:nth-child(5) {
  animation-delay: 0.19s;
}
.profile .notif-item:nth-child(6) {
  animation-delay: 0.23s;
}
.profile .notif-item:hover {
  border-color: rgba(4, 59, 89, 0.18);
  box-shadow: 0 4px 24px rgba(4, 59, 89, 0.07);
  transform: translateX(-3px);
}
.profile .notif-item.is-unread {
  background: linear-gradient(135deg, rgba(4, 59, 89, 0.03) 0%, rgba(0, 153, 109, 0.025) 100%);
  border-color: rgba(4, 59, 89, 0.15);
}
.profile .notif-ico {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative;
}
.profile .notif-item:hover .notif-ico {
  transform: scale(1.08);
}
.profile .notif-ico.order {
  background: rgba(4, 59, 89, 0.08);
  color: #043b59;
}
.profile .notif-ico.success {
  background: rgba(0, 153, 109, 0.1);
  color: #00996d;
}
.profile .notif-ico.warning {
  background: rgba(246, 145, 30, 0.11);
  color: #f6911e;
}
.profile .notif-ico.alert {
  background: rgba(220, 38, 38, 0.09);
  color: #dc2626;
}
.profile .notif-ico.info {
  background: rgba(124, 58, 237, 0.09);
  color: #7c3aed;
}
.profile .notif-ico.system {
  background: rgba(107, 124, 141, 0.1);
  color: #6b7c8d;
}
.profile .unread-dot {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f6911e;
  border: 2px solid #ffffff;
  animation: pulseDot 2s ease-in-out infinite;
}
.profile .notif-body {
  flex: 1;
  min-width: 0;
}
.profile .notif-body .notif-head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.profile .notif-body .notif-head h6 {
  font-size: 14px;
  font-weight: 700;
  color: #0d2233;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}
.profile .notif-item.is-unread .notif-body .notif-head h6 {
  color: #043b59;
}
.profile .notif-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 9px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.profile .notif-tag.order {
  background: rgba(4, 59, 89, 0.08);
  color: #043b59;
}
.profile .notif-tag.success {
  background: rgba(0, 153, 109, 0.1);
  color: #00996d;
}
.profile .notif-tag.warning {
  background: rgba(246, 145, 30, 0.11);
  color: #f6911e;
}
.profile .notif-tag.alert {
  background: rgba(220, 38, 38, 0.09);
  color: #dc2626;
}
.profile .notif-tag.info {
  background: rgba(124, 58, 237, 0.09);
  color: #7c3aed;
}
.profile .notif-tag.system {
  background: rgba(107, 124, 141, 0.1);
  color: #6b7c8d;
}
.profile .notif-body p {
  font-size: 0.85rem;
  color: #6b7c8d;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.profile .notif-body .notif-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.profile .notif-body .notif-meta time {
  font-size: 0.75rem;
  color: #6b7c8d;
  display: flex;
  align-items: center;
  gap: 5px;
}
.profile .notif-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: #043b59;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 6px;
  background: rgba(4, 59, 89, 0.08);
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  flex-shrink: 0;
}
.profile .notif-link:hover {
  background: rgba(4, 59, 89, 0.18);
}
.profile .notif-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
  opacity: 0;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.profile .notif-item:hover .notif-actions {
  opacity: 1;
}
.profile .na-btn {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  border: 1.5px solid rgba(4, 59, 89, 0.09);
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  color: #6b7c8d;
  background: #ffffff;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.profile .na-btn:hover {
  border-color: #043b59;
  color: #043b59;
}
.profile .na-btn.del:hover {
  border-color: #dc2626;
  color: #dc2626;
  background: #fff5f5;
}
.profile .date-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.profile .date-divider span {
  font-size: 10px;
  font-weight: 700;
  color: #6b7c8d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  padding: 3px 12px;
  border-radius: 50px;
  background: #f4f7fa;
  border: 1px solid rgba(4, 59, 89, 0.09);
}
.profile .date-divider::before,
.profile .date-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(4, 59, 89, 0.09);
}
.profile .notif-empty {
  text-align: center;
  padding: 60px 20px;
}
.profile .notif-empty .e-art {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(4, 59, 89, 0.08), rgba(0, 153, 109, 0.1));
  border: 2px dashed rgba(4, 59, 89, 0.14);
  font-size: 2.1rem;
  color: #043b59;
  animation: emptyPulse 3s ease-in-out infinite;
}
.profile .notif-empty h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.profile .notif-empty p {
  font-size: 0.88rem;
  color: #6b7c8d;
  max-width: 300px;
  margin: 0 auto;
  line-height: 1.65;
}
.profile .settings-grid {
  display: grid;
  gap: 10px;
}
.profile .setting-row {
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid #d9e1ed;
  border-radius: 12px;
  background: #f7fafc;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.profile .setting-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.profile .setting-ico {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 0.92rem;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.profile .setting-ico.blue {
  background: rgba(4, 59, 89, 0.08);
  color: #043b59;
}
.profile .setting-ico.green {
  background: rgba(0, 153, 109, 0.1);
  color: #00996d;
}
.profile .setting-ico.orange {
  background: rgba(246, 145, 30, 0.11);
  color: #f6911e;
}
.profile .setting-ico.purple {
  background: rgba(124, 58, 237, 0.09);
  color: #7c3aed;
}
.profile .setting-text h6 {
  margin: 0 0 3px;
  font-size: 14px;
  font-weight: 800;
  color: #17202f;
}
.profile .setting-text p {
  font-size: 0.77rem;
  color: #6b7c8d;
  margin-bottom: 0;
}
.profile .toggle {
  width: 46px;
  height: 25px;
  border-radius: 99px;
  flex-shrink: 0;
  background: rgba(4, 59, 89, 0.09);
  position: relative;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: none;
}
.profile .toggle.on {
  background: linear-gradient(135deg, #043b59, #00996d);
}
.profile .toggle::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.profile .toggle.on::after {
  right: calc(100% - 22px);
}
.profile .notif-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(4, 59, 89, 0.09);
}
.profile .pg-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 10px;
  border: 1.5px solid rgba(4, 59, 89, 0.09);
  background: #ffffff;
  color: #0d2233;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.profile .pg-btn:hover:not(:disabled) {
  border-color: #043b59;
  color: #043b59;
}
.profile .pg-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.profile .pg-info {
  padding: 8px 18px;
  border-radius: 10px;
  background: rgba(4, 59, 89, 0.08);
  color: #043b59;
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid rgba(4, 59, 89, 0.18);
}
.profile .complaints-overview__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .profile .complaints-overview__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.profile .complaints-overview__head h4 {
  margin: 0 0 4px 0;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: #043b59;
}
.profile .complaints-overview__head p {
  margin: 0;
  font-size: 13px;
  color: #6b7c8d;
}
.profile .complaints-overview .hero-btn {
  font-size: 14px;
}
.profile .complaints-overview .hero-btn i {
  font-size: 16px;
}
@media screen and (max-width: 576px) {
  .profile .complaints-overview .hero-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
  .profile .complaints-overview .hero-btn i {
    font-size: 14px;
  }
  .profile .complaints-overview .hero-btn span {
    display: none;
  }
}
.profile .complaints-overview .complaints-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .profile .complaints-overview .complaints-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .profile .complaints-overview .complaints-stat-grid {
    grid-template-columns: 1fr;
  }
}
.profile .complaints-overview .complaints-stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid rgba(4, 59, 89, 0.09);
  border-radius: 12px;
  padding: 12px;
  background: #f9fbff;
}
.profile .complaints-overview .complaints-stat small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #6b7c8d;
  text-transform: capitalize;
}
.profile .complaints-overview .complaints-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #043b59;
}
.profile .complaints-overview .complaints-stat:hover {
  box-shadow: 0 4px 12px rgba(4, 59, 89, 0.1);
}
.profile .complaints-table-section {
  margin-top: 24px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(4, 59, 89, 0.07);
  border: 1px solid rgba(4, 59, 89, 0.09);
}
.profile .complaints-table-section .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 992px) {
  .profile .complaints-table-section .table-responsive {
    border-radius: 16px;
  }
}
.profile .complaints-table-section .complaints-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
}
.profile .complaints-table-section .complaints-table thead {
  background: linear-gradient(90deg, #f8f9fb 0%, #f4f7fa 100%);
}
.profile .complaints-table-section .complaints-table thead tr {
  border-bottom: 2px solid #f0f4f8;
}
.profile .complaints-table-section .complaints-table thead th {
  padding: 16px;
  text-align: right;
  font-weight: 700;
  color: #043b59;
  font-size: 13px;
  white-space: nowrap;
}
.profile .complaints-table-section .complaints-table tbody tr {
  border-bottom: 1px solid #f0f4f8;
  transition: all 0.3s ease;
}
.profile .complaints-table-section .complaints-table tbody tr:hover {
  background: rgba(0, 153, 109, 0.03);
}
.profile .complaints-table-section .complaints-table tbody tr:last-child {
  border-bottom: none;
}
.profile .complaints-table-section .complaints-table tbody td {
  padding: 16px;
  color: #333;
  vertical-align: middle;
}
.profile .complaints-table-section .complaint-type-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.profile .complaints-table-section .complaint-type-badge.type-service {
  background: rgba(246, 145, 30, 0.15);
  color: #f6911e;
}
.profile .complaints-table-section .complaint-type-badge.type-worker {
  background: rgba(0, 153, 109, 0.15);
  color: #00996d;
}
.profile .complaints-table-section .complaint-type-badge.type-process {
  background: rgba(4, 59, 89, 0.15);
  color: #043b59;
}
.profile .complaints-table-section .complaint-type-badge.type-payment {
  background: rgba(124, 58, 237, 0.15);
  color: #7c3aed;
}
.profile .complaints-table-section .complaint-type-badge.type-documentation {
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
}
.profile .complaints-table-section .complaint-type-badge.type-other {
  background: rgba(107, 124, 141, 0.15);
  color: #6b7c8d;
}
.profile .complaints-table-section .status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.profile .complaints-table-section .status-badge.pending {
  background: rgba(246, 145, 30, 0.2);
  color: #d97706;
}
.profile .complaints-table-section .status-badge.in-review {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}
.profile .complaints-table-section .status-badge.resolved {
  background: rgba(0, 153, 109, 0.2);
  color: #00996d;
}
.profile .complaints-table-section .status-badge.rejected {
  background: rgba(220, 38, 38, 0.2);
  color: #dc2626;
}
.profile .complaints-table-section .details-truncate {
  display: block;
  color: #6b7c8d;
  max-width: 240px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  .profile .complaints-table-section .details-truncate {
    max-width: 100%;
    white-space: normal;
    line-height: 1.7;
  }
}
.profile .complaints-table-section .view-reply-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #edf1f5;
  background: #fff;
  color: #043b59;
  cursor: pointer;
  transition: 0.25s ease;
  font-size: 14px;
}
.profile .complaints-table-section .view-reply-btn:hover {
  border-color: #043b59;
  background: rgba(4, 59, 89, 0.05);
}
@media screen and (max-width: 768px) {
  .profile .complaints-table-section .complaints-table thead {
    display: none;
  }
  .profile .complaints-table-section .complaints-table tbody {
    display: block;
    width: 100%;
  }
  .profile .complaints-table-section .complaints-table tr {
    display: block;
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 14px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  }
  .profile .complaints-table-section .complaints-table td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border: none;
    font-size: 13px;
    text-align: left;
  }
  .profile .complaints-table-section .complaints-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: #043b59;
    font-size: 12px;
    flex-shrink: 0;
    min-width: 85px;
    text-align: right;
  }
  .profile .complaints-table-section .complaints-table td > * {
    text-align: left;
  }
  .profile .complaints-table-section .complaints-table td:not(:last-child) {
    border-bottom: 1px dashed #f1f1f1;
  }
  .profile .complaints-table-section .complaints-table td:nth-child(3)::before {
    margin-bottom: 4px;
  }
  .profile .complaints-table-section .complaints-table td:nth-child(3) .details-truncate {
    width: 100%;
  }
  .profile .complaints-table-section .complaints-table td:nth-child(5) {
    align-items: center;
  }
  .profile .complaints-table-section .complaints-table td:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.complaints-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.complaints-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.complaints-modal .modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 21, 46, 0.6);
  backdrop-filter: blur(3px);
  z-index: 0;
}
.complaints-modal .modal-panel {
  position: relative;
  width: min(520px, 100vw - 28px);
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(7, 19, 40, 0.4);
  display: grid;
  gap: 0;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
}
@media screen and (max-width: 576px) {
  .complaints-modal .modal-panel {
    width: calc(100vw - 20px);
    border-radius: 16px;
  }
}
.complaints-modal .modal-header {
  padding: 24px;
  border-bottom: 1px solid #f4f7fa;
  position: relative;
  display: flex;
  gap: 16px;
}
.complaints-modal .modal-header .modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f4f7fa;
  background: #ffffff;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  color: #043b59;
  font-size: 16px;
}
.complaints-modal .modal-header .modal-close:hover {
  border-color: #043b59;
  background: rgba(4, 59, 89, 0.05);
}
.complaints-modal .modal-header h3 {
  margin: 0 0 4px 0;
  font-size: 18px;
  font-weight: 700;
  color: #043b59;
}
.complaints-modal .modal-header p {
  margin: 0;
  font-size: 13px;
  color: #6b7c8d;
}
.complaints-modal .modal-form {
  padding: 24px;
  display: grid;
  gap: 16px;
}
.complaints-modal .modal-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.complaints-modal .modal-form .form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #043b59;
}
.complaints-modal .modal-form .form-group input,
.complaints-modal .modal-form .form-group select,
.complaints-modal .modal-form .form-group textarea {
  padding: 10px 14px;
  border: 1px solid #d1d9e9;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  background: #ffffff;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.complaints-modal .modal-form .form-group input:focus,
.complaints-modal .modal-form .form-group select:focus,
.complaints-modal .modal-form .form-group textarea:focus {
  outline: none;
  border-color: #00996d;
  box-shadow: 0 0 0 3px rgba(0, 153, 109, 0.1);
}
.complaints-modal .modal-form .form-group input::-moz-placeholder, .complaints-modal .modal-form .form-group select::-moz-placeholder, .complaints-modal .modal-form .form-group textarea::-moz-placeholder {
  color: #6b7c8d;
}
.complaints-modal .modal-form .form-group input::placeholder,
.complaints-modal .modal-form .form-group select::placeholder,
.complaints-modal .modal-form .form-group textarea::placeholder {
  color: #6b7c8d;
}
.complaints-modal .modal-form .form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.complaints-modal .modal-form .form-group select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23043b59' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: left 10px center;
  background-size: 20px;
  padding-right: 14px;
  padding-left: 34px;
}
.complaints-modal .modal-form .file-upload-group .file-upload-box {
  position: relative;
  padding: 20px;
  border: 2px dashed #d1d9e9;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  text-align: center;
}
.complaints-modal .modal-form .file-upload-group .file-upload-box input {
  display: none;
}
.complaints-modal .modal-form .file-upload-group .file-upload-box i {
  font-size: 28px;
  color: #f6911e;
}
.complaints-modal .modal-form .file-upload-group .file-upload-box .file-upload-text {
  font-size: 13px;
  font-weight: 600;
  color: #043b59;
}
.complaints-modal .modal-form .file-upload-group .file-upload-box .file-upload-hint {
  font-size: 12px;
  color: #6b7c8d;
  margin-top: 4px;
  display: block;
}
.complaints-modal .modal-form .file-upload-group .file-upload-box:hover {
  border-color: #f6911e;
  background: rgba(246, 145, 30, 0.03);
}
.complaints-modal .modal-form .file-upload-group .file-upload-box.has-file {
  border-color: #00996d;
  background: rgba(0, 153, 109, 0.03);
}
.complaints-modal .modal-form .file-upload-group .file-upload-box.has-file i {
  color: #00996d;
}
.complaints-modal .modal-form .file-upload-group .file-upload-box.has-file .file-upload-text {
  color: #00996d;
}
.complaints-modal .modal-form .form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f4f7fa;
}
.complaints-modal .modal-form .form-actions .hero-btn {
  font-size: 14px;
}
.complaints-modal .modal-form .form-actions .form-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  white-space: nowrap;
}
.complaints-modal .modal-form .form-actions .form-btn.secondary {
  background: #f4f7fa;
  color: #043b59;
  border: 1px solid #d1d9e9;
}
.complaints-modal .modal-form .form-actions .form-btn.secondary:hover {
  background: #eff1f5;
  border-color: #043b59;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.details-modal,
.reply-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.details-modal.active,
.reply-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.details-modal .modal-backdrop,
.reply-modal .modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 21, 46, 0.6);
  backdrop-filter: blur(3px);
  z-index: 0;
}
.details-modal .modal-panel,
.reply-modal .modal-panel {
  position: relative;
  width: min(520px, 100vw - 28px);
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(7, 19, 40, 0.4);
  display: grid;
  gap: 0;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
}
@media screen and (max-width: 576px) {
  .details-modal .modal-panel,
  .reply-modal .modal-panel {
    width: calc(100vw - 20px);
    border-radius: 16px;
  }
}
.details-modal .modal-header,
.reply-modal .modal-header {
  padding: 24px;
  border-bottom: 1px solid #f4f7fa;
  position: relative;
  display: flex;
  gap: 16px;
}
.details-modal .modal-header .modal-close,
.reply-modal .modal-header .modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f4f7fa;
  background: #ffffff;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  color: #043b59;
  font-size: 16px;
}
.details-modal .modal-header .modal-close:hover,
.reply-modal .modal-header .modal-close:hover {
  border-color: #043b59;
  background: rgba(4, 59, 89, 0.05);
}
.details-modal .modal-header h3,
.reply-modal .modal-header h3 {
  margin: 0 0 4px 0;
  font-size: 18px;
  font-weight: 700;
  color: #043b59;
}
.details-modal .modal-header p,
.reply-modal .modal-header p {
  margin: 0;
  font-size: 13px;
  color: #6b7c8d;
}
.details-modal .modal-body,
.reply-modal .modal-body {
  padding: 24px;
  color: #333;
  line-height: 1.8;
  font-size: 14px;
}
.details-modal .modal-body p,
.reply-modal .modal-body p {
  margin: 0;
  text-align: right;
  word-wrap: break-word;
  white-space: pre-wrap;
}
.details-modal .modal-footer,
.reply-modal .modal-footer {
  padding: 16px 24px;
  border-top: 1px solid #f4f7fa;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.details-modal .modal-footer .form-btn,
.reply-modal .modal-footer .form-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  white-space: nowrap;
}
.details-modal .modal-footer .form-btn.secondary,
.reply-modal .modal-footer .form-btn.secondary {
  background: #f4f7fa;
  color: #043b59;
  border: 1px solid #d1d9e9;
}
.details-modal .modal-footer .form-btn.secondary:hover,
.reply-modal .modal-footer .form-btn.secondary:hover {
  background: #eff1f5;
  border-color: #043b59;
}

.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #043b59;
  color: #ffffff;
  padding: 13px 26px;
  border-radius: 50px;
  box-shadow: 0 12px 40px rgba(4, 59, 89, 0.3);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.toast i {
  color: #4fffca;
}

.site-footer {
  background: #0a1a24;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  height: 60px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  font-size: 0.88rem;
}

.footer-col h4 {
  color: #043b59;
  font-size: 0.95rem;
  margin-bottom: 14px;
  font-weight: 700;
}

.footer-col ul {
  display: grid;
  gap: 8px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.footer-col ul a:hover {
  color: #043b59;
}

.footer-col ul li {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

.footer-bottom {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.88rem;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.footer-social a:hover {
  background: #043b59;
}

.wa-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 1200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.wa-float:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .profile .notif-actions {
    opacity: 1;
  }
  .profile .toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
}
.notif-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

@media (max-width: 992px) {
  .profile .card-head {
    flex-wrap: wrap;
    gap: 12px;
  }
  .profile .card-head .card-title {
    margin-bottom: 0;
  }
  .profile .card-head .toolbar-left {
    width: 100%;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .profile .filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .profile .filter-tabs::-webkit-scrollbar {
    display: none;
  }
  .profile .notif-item {
    gap: 12px;
    padding: 14px 12px;
  }
  .profile .notif-item .notif-actions {
    opacity: 1;
    flex-direction: row;
    gap: 6px;
  }
  .profile .notif-body .notif-head {
    flex-wrap: wrap;
    gap: 4px;
  }
  .profile .notif-body .notif-head h6 {
    font-size: 13px;
    flex: 1 1 100%;
  }
  .profile .notif-body p {
    font-size: 0.82rem;
  }
  .profile .notif-body .notif-meta {
    flex-wrap: wrap;
    gap: 8px;
  }
  .profile .notif-ico {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
    border-radius: 12px;
  }
  .profile .toolbar-left {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
  }
  .profile .toolbar-left .toolbar-btn {
    flex: 1 1 auto;
    justify-content: center;
    font-size: 0.8rem;
    padding: 7px 10px;
  }
  .profile .setting-row {
    gap: 10px;
    padding: 10px 12px;
  }
  .profile .setting-left {
    gap: 10px;
    flex: 1;
    min-width: 0;
  }
  .profile .setting-text {
    min-width: 0;
  }
  .profile .setting-text h6 {
    font-size: 13px;
    white-space: normal;
  }
  .profile .setting-text p {
    font-size: 0.72rem;
    white-space: normal;
  }
  .profile .setting-ico {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 0.85rem;
    flex-shrink: 0;
  }
}
@media (max-width: 576px) {
  .profile .card {
    padding: 14px 12px;
  }
  .profile .card-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .profile .card-head .toolbar-left {
    width: 100%;
    gap: 8px;
  }
  .profile .card-head .toolbar-left .toolbar-btn {
    flex: 1 1 auto;
    justify-content: center;
    font-size: 0.78rem;
    padding: 8px 10px;
  }
  .profile .card-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .profile .notif-item {
    gap: 10px;
    padding: 12px 10px;
    flex-wrap: nowrap;
  }
  .profile .notif-item .notif-actions {
    flex-direction: column;
    gap: 5px;
  }
  .profile .notif-item .notif-actions .na-btn {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
  .profile .notif-ico {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 0.9rem;
  }
  .profile .notif-body .notif-head h6 {
    font-size: 13px;
    line-height: 1.4;
    white-space: normal;
    flex: 1 1 100%;
  }
  .profile .notif-body .notif-head .notif-tag {
    font-size: 9px;
    padding: 2px 7px;
  }
  .profile .notif-body p {
    font-size: 0.8rem;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  .profile .notif-body .notif-meta {
    gap: 6px;
  }
  .profile .notif-body .notif-meta time {
    font-size: 0.72rem;
  }
  .profile .notif-body .notif-meta .notif-link {
    font-size: 0.72rem;
    padding: 2px 8px;
  }
  .profile .date-divider {
    margin: 12px 0 8px;
  }
  .profile .setting-row {
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    padding: 10px;
  }
  .profile .setting-left {
    gap: 8px;
  }
  .profile .setting-ico {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
  .profile .setting-text h6 {
    font-size: 12px;
    margin-bottom: 2px;
  }
  .profile .setting-text p {
    font-size: 0.68rem;
    line-height: 1.4;
  }
  .profile .toggle {
    flex-shrink: 0;
  }
  .profile .filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 6px;
  }
  .profile .f-tab {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.75rem;
    padding: 6px 10px;
  }
}
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .profile .filter-tabs {
    gap: 4px;
  }
  .profile .f-tab {
    font-size: 0.78rem;
    padding: 6px 12px;
  }
}
@keyframes modalScaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.renew-success-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 1400;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.renew-success-modal.active {
  display: flex;
}

.renew-modal-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  max-width: 620px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  animation: modalScaleIn 0.3s ease-out;
}
@media screen and (max-width: 576px) {
  .renew-modal-content {
    padding: 20px;
    border-radius: 12px;
  }
}

.renew-modal-close {
  position: absolute;
  left: 18px;
  top: 18px;
  border: none;
  background: #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: #043b59;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(4, 59, 89, 0.06);
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  display: grid;
  place-items: center;
}
.renew-modal-close:hover {
  background: rgba(4, 59, 89, 0.08);
  transform: scale(1.05);
}

.renew-modal-body {
  text-align: center;
  padding: 36px 12px;
}
@media screen and (max-width: 576px) {
  .renew-modal-body {
    padding: 24px 0;
  }
}

.renew-success-icon-box {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: linear-gradient(180deg, #e6f8ed, #e6f8ed);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}

.renew-success-icon {
  color: #0f7b49;
  font-size: 36px;
}

.renew-modal-title {
  margin: 0 0 6px;
  color: #043b59;
  font-weight: 800;
  font-size: 18px;
}
@media screen and (max-width: 576px) {
  .renew-modal-title {
    font-size: 16px;
  }
}

.renew-modal-message {
  color: #7a8497;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.renew-modal-btn {
  display: inline-block;
  background: linear-gradient(130deg, #043b59, #00996d);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-size: 14px;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.renew-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(4, 59, 89, 0.25);
}

.contract-info-box {
  background: #f3f7fb;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(4, 59, 89, 0.06);
}

.contract-account-label {
  color: #7a8497;
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 12px;
}

.contract-account-name {
  font-weight: 800;
  color: #043b59;
  margin-bottom: 4px;
}

.contract-details-wrapper {
  flex: 1;
  min-width: 220px;
}

.contract-details-flex {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.contract-detail-tag {
  background: #ffffff;
  border-radius: 999px;
  padding: 6px 12px;
  border: 1px solid #e6eef6;
  font-weight: 800;
  font-size: 13px;
  display: inline-block;
}

.contract-info-description {
  color: #7a8497;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.attachments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .attachments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .attachments-grid {
    grid-template-columns: 1fr;
  }
}

.attachment-upload-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 16px;
  border: 2px dashed rgba(4, 59, 89, 0.2);
  border-radius: 10px;
  background: rgba(4, 59, 89, 0.02);
  text-align: center;
  min-height: 100px;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative;
}
.attachment-upload-box:hover {
  border-color: rgba(4, 59, 89, 0.35);
  background: rgba(4, 59, 89, 0.05);
}
.attachment-upload-box input {
  display: none;
}

.attachment-icon {
  color: #043b59;
  font-size: 24px;
  margin-bottom: 8px;
}

.attachment-label {
  color: #043b59;
  font-weight: 600;
  font-size: 13px;
}

.renewal-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media screen and (max-width: 576px) {
  .renewal-actions-grid {
    grid-template-columns: 1fr;
  }
}

.renewal-submit-btn {
  background: linear-gradient(130deg, #043b59, #00996d);
  color: #ffffff;
  border-radius: 12px;
  min-height: 48px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 800;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
  border: none;
}
.renewal-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(4, 59, 89, 0.25);
}
.renewal-submit-btn:active {
  transform: translateY(0);
}

.renewal-cancel-btn {
  border: 1px solid #d7dde8;
  background: #ffffff;
  color: #043b59;
  border-radius: 12px;
  min-height: 48px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 800;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
}
.renewal-cancel-btn:hover {
  background: #f7fafc;
  border-color: #043b59;
}
.renewal-cancel-btn:active {
  background: #eff1f5;
}

.renewal-terms-section {
  background: #f7fafc;
}

.renewal-terms-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.renewal-terms-label input {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  accent-color: #043b59;
  cursor: pointer;
  flex-shrink: 0;
}

.renewal-terms-text {
  color: #49526a;
  font-size: 13px;
  line-height: 1.6;
}
.renewal-terms-text a {
  color: #043b59;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.renewal-terms-text a:hover {
  text-decoration: underline;
  color: #00996d;
}

.renewal-info-container {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .renewal-info-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

@keyframes navDropIn {
  from {
    transform: translateY(-14px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.scroll-top-indicator {
  --scroll-progress: 0;
  position: fixed;
  right: 24px;
  bottom: 18px;
  z-index: 1190;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s;
}
.scroll-top-indicator.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top-indicator__meter {
  width: 4px;
  height: 68px;
  border-radius: 99px;
  background: #121212;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.scroll-top-indicator__fill {
  display: block;
  width: 100%;
  height: calc(var(--scroll-progress) * 100%);
  margin-top: auto;
  background: linear-gradient(180deg, #e7b048, #eea30e);
  transition: height 0.12s linear;
}
.scroll-top-indicator__text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #e3ad40;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}
.scroll-top-indicator:hover .scroll-top-indicator__text {
  color: #cf9624;
}
.scroll-top-indicator:focus-visible {
  outline: 3px solid rgba(227, 173, 64, 0.35);
  outline-offset: 4px;
  border-radius: 8px;
}
@media (max-width: 576px) {
  .scroll-top-indicator {
    right: 18px;
    bottom: 86px;
  }
  .scroll-top-indicator .scroll-top-indicator__meter {
    height: 74px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-top-indicator,
  .scroll-top-indicator__fill {
    transition: none !important;
  }
}
main .hero-recruitment {
  min-height: 97vh;
  width: 95%;
  background: radial-gradient(circle at 12% 14%, rgba(0, 153, 109, 0.16), transparent 32%), radial-gradient(circle at 92% 86%, rgba(246, 145, 30, 0.18), transparent 34%), linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.88));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.4rem 2.4rem;
  overflow: hidden;
  margin: 10px auto 30px;
  border-radius: 22px;
  border: 1px solid rgba(4, 59, 89, 0.14);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  transition: margin-top 0.28s ease;
}
main .hero-recruitment::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  top: -210px;
  left: -180px;
  background: radial-gradient(circle, rgba(4, 59, 89, 0.14), transparent 72%);
  pointer-events: none;
}
main .hero-recruitment::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  bottom: -200px;
  right: -160px;
  background: radial-gradient(circle, rgba(246, 145, 30, 0.2), transparent 74%);
  pointer-events: none;
}
main .hero-recruitment .hero-visual {
  position: relative;
}
main .hero-recruitment .hero-visual .image-wrapper {
  width: min(480px, 88vw);
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(4, 59, 89, 0.12);
}
main .hero-recruitment .hero-visual .hero-circle {
  width: min(470px, 78vw);
  filter: drop-shadow(0 20px 35px rgba(4, 59, 89, 0.26));
  z-index: 1;
}
main .hero-recruitment .hero-visual .hero-fav {
  position: absolute;
  width: 420px;
  opacity: 0.3;
}
@media screen and (max-width: 576px) {
  main .hero-recruitment .hero-visual .hero-fav {
    width: min(470px, 78vw);
  }
}
main .hero-recruitment .hero-content.text-center {
  position: relative;
  z-index: 3;
  max-width: min(700px, 94vw);
  margin-inline: auto;
}
main .hero-recruitment .hero-content.text-center .hero-title {
  font-size: clamp(2.1rem, 5.4vw, 3.8rem);
  font-weight: 800;
  color: black;
  line-height: 1.1;
  margin-bottom: 10px;
}
main .hero-recruitment .hero-content.text-center .hero-title .accent {
  color: #043b59;
}
main .hero-recruitment .hero-content.text-center > p {
  font-size: clamp(1rem, 2vw, 1.16rem);
  color: #2f4940;
  margin: 0;
  line-height: 1.9;
}
main .hero-recruitment .hero-content.text-center .hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}
main .hero-recruitment .hero-content.text-center .hero-points {
  margin-top: 18px;
  display: grid;
  gap: 8px;
}
main .hero-recruitment .hero-content.text-center .hero-points li {
  color: #2f4a3c;
  font-size: 14px;
  position: relative;
  padding-inline-start: 22px;
}
main .hero-recruitment .hero-content.text-center .hero-points li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(120deg, #00996d, #f6911e);
  position: absolute;
  inset-inline-start: 5px;
  top: 8px;
}
@media (max-width: 992px) {
  main .hero-recruitment {
    width: 96%;
    padding-top: 6.5rem;
  }
}
@media (max-width: 768px) {
  main .hero-recruitment {
    min-height: auto;
    padding: 6rem 1rem 2rem;
    margin: 8px auto 18px;
    border-radius: 16px;
  }
  main .hero-recruitment .hero-content.text-center .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }
  main .hero-recruitment .hero-content.text-center > p {
    font-size: 0.95rem;
  }
  main .hero-recruitment .hero-content.text-center .hero-cta .hero-btn {
    width: 100%;
  }
  main .hero-recruitment .hero-content.text-center .hero-points li {
    font-size: 0.88rem;
  }
}
main .services-recruitment {
  background: url("./../images/church-02.jpg") no-repeat;
  background-position: 110%;
  padding: 80px 0 100px;
}
main .services-recruitment .section-head h2 {
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #043b59;
  margin-bottom: 12px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}
main .services-recruitment .section-head h2::before {
  content: "";
  position: absolute;
  background: url(./../images/navy.svg) no-repeat;
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  opacity: 0.3;
  z-index: -1;
}
main .services-recruitment .section-head p {
  max-width: 600px;
  margin: 16px 0;
  color: #2f4a3c;
  line-height: 1.9;
  font-size: 1rem;
}
main .services-recruitment .services-grid {
  row-gap: 28px;
  margin-top: 42px;
}
main .services-recruitment .services-grid .serviceBox {
  --main-color: #355f75;
  --dark-color: #9fb7c4;
  color: #043b59;
  background: linear-gradient(to right, transparent 50%, var(--dark-color) 50%);
  text-align: center;
  min-height: 100%;
  padding: 34px 24px 30px;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  transition: transform 0.35s ease, filter 0.35s ease;
  cursor: pointer;
}
main .services-recruitment .services-grid .serviceBox::before, main .services-recruitment .services-grid .serviceBox::after {
  content: "";
  border-radius: 30px;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
}
main .services-recruitment .services-grid .serviceBox::before {
  background: var(--main-color);
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  opacity: 0.5;
  transition: transform 0.35s ease;
}
main .services-recruitment .services-grid .serviceBox::after {
  background: linear-gradient(45deg, #fafafa, #fff);
  width: calc(100% - 35px);
  height: calc(100% - 35px);
  border-radius: 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
  transition: box-shadow 0.35s ease;
}
main .services-recruitment .services-grid .serviceBox .service-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 18px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  color: #043b59;
  background: rgba(255, 255, 255, 0.88);
}
main .services-recruitment .services-grid .serviceBox .service-icon img {
  width: 50px;
}
main .services-recruitment .services-grid .serviceBox .service-icon::before {
  content: "";
  border: 2px dashed rgba(4, 59, 89, 0.44);
  border-right: 2px solid transparent;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  animation: serviceIconRing 8s linear infinite;
}
main .services-recruitment .services-grid .serviceBox .service-content .title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #043b59;
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 auto 8px;
  width: -moz-fit-content;
  width: fit-content;
}
main .services-recruitment .services-grid .serviceBox .service-content .description {
  color: #5a5d66;
  font-size: 0.95rem;
  line-height: 1.95;
  margin: 0;
}
main .services-recruitment .services-grid .serviceBox .service-content .hero-btn {
  margin-block: 14px;
  padding: 8px 12px;
}
main .services-recruitment .services-grid .serviceBox .service-content .hero-btn svg {
  width: 16px;
  transform: scaleX(-1);
  fill: #ffffff;
}
main .services-recruitment .services-grid .serviceBox.main-tone {
  --main-color: #355f75;
  --dark-color: #9fb7c4;
}
main .services-recruitment .services-grid .serviceBox.green-tone {
  --main-color: #4f8674;
  --dark-color: #afd3c5;
}
main .services-recruitment .services-grid .serviceBox.orange-tone {
  --main-color: #b7864c;
  --dark-color: #e5c7a2;
}
main .services-recruitment .services-grid .serviceBox:hover {
  transform: translateY(-8px);
  filter: saturate(0.96);
}
main .services-recruitment .services-grid .serviceBox:hover::before {
  transform: translateX(-50%) translateY(-50%) rotate(-180deg) scale(1.02);
}
main .services-recruitment .services-grid .serviceBox:hover::after {
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}
main .services-recruitment .services-grid .serviceBox:hover .service-icon::before {
  animation-duration: 3.4s;
}
@media (max-width: 768px) {
  main .services-recruitment {
    margin-bottom: 30px;
  }
  main .services-recruitment .section-head h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }
  main .services-recruitment .section-head p {
    font-size: 0.92rem;
  }
  main .services-recruitment .services-grid {
    row-gap: 18px;
  }
  main .services-recruitment .services-grid .serviceBox {
    padding: 28px 18px 24px;
  }
}
main .stats-recruitment {
  background: linear-gradient(180deg, rgba(4, 59, 89, 0.04), rgba(0, 153, 109, 0.03));
  padding: 70px 0;
  position: relative;
}
main .stats-recruitment::before {
  content: "";
  position: absolute;
  background: url("./../images/bottomElipse.48b670ee368e6f558769.svg") no-repeat;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  main .stats-recruitment::before {
    background-position: bottom;
  }
}
main .stats-recruitment .section-head {
  margin-bottom: 32px;
  text-align: center;
}
main .stats-recruitment .section-head h2 {
  color: #043b59;
  font-size: clamp(1.65rem, 3.8vw, 2.35rem);
  font-weight: 800;
  margin-bottom: 8px;
}
main .stats-recruitment .section-head p {
  color: #3f4d48;
  line-height: 1.85;
  margin: 0;
}
main .stats-recruitment .serviceBox {
  --accent: #355f75;
  border: 1px solid #ededed;
  padding: 30px 30px 30px 90px;
  position: relative;
  transition: all 0.5s ease 0s;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}
main .stats-recruitment .serviceBox:hover {
  border-color: var(--accent);
}
main .stats-recruitment .serviceBox:hover::before, main .stats-recruitment .serviceBox:hover::after {
  left: 40px;
  opacity: 1;
}
main .stats-recruitment .serviceBox:hover .service-icon {
  opacity: 1;
}
main .stats-recruitment .serviceBox::before, main .stats-recruitment .serviceBox::after {
  content: "";
  display: block;
  width: 50px;
  height: 5px;
  border-radius: 12px;
  background: var(--accent);
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.5s ease 0s;
}
main .stats-recruitment .serviceBox::before {
  top: -3px;
}
main .stats-recruitment .serviceBox::after {
  bottom: -3px;
}
main .stats-recruitment .serviceBox .service-icon {
  display: inline-block;
  position: absolute;
  top: 33%;
  left: 23px;
  font-size: 45px;
  color: var(--accent);
  opacity: 0.3;
  transition: all 0.5s ease-in 0s;
}
main .stats-recruitment .serviceBox .title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 10px;
}
main .stats-recruitment .serviceBox .description {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.8;
  margin: 0;
}
main .stats-recruitment .row > [class*=col-]:nth-child(2) .serviceBox {
  --accent: #4f8674;
}
main .stats-recruitment .row > [class*=col-]:nth-child(3) .serviceBox {
  --accent: #b7864c;
}
main .stats-recruitment .row > [class*=col-]:nth-child(4) .serviceBox {
  --accent: #48685c;
}
@media only screen and (max-width: 990px) {
  main .stats-recruitment .serviceBox {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  main .stats-recruitment {
    padding: 20px 0;
  }
  main .stats-recruitment .serviceBox {
    padding: 24px 20px 24px 78px;
  }
  main .stats-recruitment .serviceBox .service-icon {
    left: 20px;
    font-size: 38px;
  }
}
main .requirements-recruitment {
  padding: 56px 0 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(4, 59, 89, 0.02));
  --req-color-pure: #fff;
  --req-color-primary: #f4f7f8;
  --req-color-secondary: #264238;
  --req-muted: #3d6f5f;
}
main .requirements-recruitment .section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 42px;
}
@media (max-width: 1200px) {
  main .requirements-recruitment .section-head {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }
}
main .requirements-recruitment .section-head h2 {
  color: #043b59;
  font-size: clamp(1.7rem, 4vw, 2rem);
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
}
main .requirements-recruitment .section-head h2::before {
  content: "";
  position: absolute;
  background: url(./../images/green.svg) no-repeat;
  width: 100%;
  height: 142%;
  bottom: -8px;
  left: 61%;
  opacity: 0.5;
  z-index: -1;
  transform: scaleY(-1);
}
main .requirements-recruitment .section-head p {
  margin: 0;
  color: #3a4742;
  line-height: 1.85;
  width: 80%;
}
main .requirements-recruitment .requirements-tabs {
  --round: 12px;
  --p-x: 8px;
  --p-y: 5px;
  --w-label: 220px;
  direction: ltr;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  padding: var(--p-y) var(--p-x);
  border-radius: var(--round);
  position: relative;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  background: var(--req-color-primary);
}
main .requirements-recruitment .requirements-tabs input {
  height: 0;
  width: 0;
  position: absolute;
  overflow: hidden;
  display: none;
  visibility: hidden;
}
main .requirements-recruitment .requirements-tabs .label {
  cursor: pointer;
  outline: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--req-color-secondary);
  background: transparent;
  border-radius: calc(var(--round) - var(--p-y));
  padding: 12px 16px;
  width: var(--w-label);
  min-width: var(--w-label);
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: color 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
}
main .requirements-recruitment .requirements-tabs .label span {
  direction: rtl;
  text-align: center;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}
main .requirements-recruitment .requirements-tabs .label:hover {
  color: var(--req-color-pure);
}
main .requirements-recruitment .requirements-tabs input[class*=rd-]:checked + .label {
  color: var(--req-color-pure);
}
main .requirements-recruitment .requirements-tabs:has(.rd-2 + .label:hover) .rd-1:checked + .label {
  color: var(--req-color-secondary);
}
main .requirements-recruitment .requirements-tabs:has(.rd-1 + .label:hover) .rd-2:checked + .label {
  color: var(--req-color-secondary);
}
main .requirements-recruitment .requirements-tabs .bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: absolute;
  transform-origin: 0 0 0;
  height: 100%;
  width: var(--w-label);
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.33, 0.83, 0.99, 0.98);
}
main .requirements-recruitment .requirements-tabs .bar::before, main .requirements-recruitment .requirements-tabs .bar::after {
  content: "";
  position: absolute;
  height: 4px;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
}
main .requirements-recruitment .requirements-tabs .bar::before {
  top: 0;
  border-radius: 0 0 9999px 9999px;
}
main .requirements-recruitment .requirements-tabs .bar::after {
  bottom: 0;
  border-radius: 9999px 9999px 0 0;
}
main .requirements-recruitment .requirements-tabs .slidebar {
  position: absolute;
  height: calc(100% - var(--p-y) * 4);
  width: var(--w-label);
  border-radius: calc(var(--round) - var(--p-y));
  background: var(--req-muted);
  transform-origin: 0 0 0;
  z-index: 0;
  transition: transform 0.5s cubic-bezier(0.33, 0.83, 0.99, 0.98);
}
main .requirements-recruitment .requirements-tabs .rd-1:checked ~ .bar,
main .requirements-recruitment .requirements-tabs .rd-1:checked ~ .slidebar,
main .requirements-recruitment .requirements-tabs .rd-1 + .label:hover ~ .slidebar {
  transform: translateX(0) scaleX(1);
}
main .requirements-recruitment .requirements-tabs .rd-2:checked ~ .bar,
main .requirements-recruitment .requirements-tabs .rd-2:checked ~ .slidebar,
main .requirements-recruitment .requirements-tabs .rd-2 + .label:hover ~ .slidebar {
  transform: translateX(100%) scaleX(1);
}
main .requirements-recruitment .main-timeline {
  overflow: hidden;
  position: relative;
}
main .requirements-recruitment .main-timeline .timeline {
  --tone: #355f75;
  width: 50%;
  float: left;
  z-index: 1;
  position: relative;
}
main .requirements-recruitment .main-timeline .timeline::before, main .requirements-recruitment .main-timeline .timeline::after {
  content: "";
  display: block;
  clear: both;
}
main .requirements-recruitment .main-timeline .timeline::before {
  content: "";
  width: 40px;
  height: 90%;
  background: var(--tone);
  position: absolute;
  top: 10%;
  right: -20px;
}
main .requirements-recruitment .main-timeline .timeline:last-child::before {
  height: 0;
}
main .requirements-recruitment .main-timeline .timeline .timeline-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--tone);
  overflow: hidden;
  text-align: center;
  position: absolute;
  top: 0;
  right: -40px;
  z-index: 3;
}
main .requirements-recruitment .main-timeline .timeline .timeline-icon::before {
  content: "";
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--tone);
  box-shadow: 0 0 0 4px rgba(4, 59, 89, 0.2);
  margin: auto;
  position: absolute;
  inset: 0;
}
main .requirements-recruitment .main-timeline .timeline .timeline-icon i {
  font-size: 30px;
  color: #303a3b;
  line-height: 80px;
  z-index: 1;
  position: relative;
}
main .requirements-recruitment .main-timeline .timeline .year {
  display: block;
  padding: 0 60px 0 30px;
  font-size: 30px;
  color: #303a3b;
  text-align: right;
  border-bottom: 2px solid #303a3b;
  z-index: 2;
  position: relative;
  font-weight: 800;
}
main .requirements-recruitment .main-timeline .timeline .year::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--tone);
  border: 5px solid #fff;
  box-shadow: 0 0 0 4px var(--tone);
  margin: auto;
  position: absolute;
  bottom: -15px;
  left: 4px;
}
main .requirements-recruitment .main-timeline .timeline .year::after {
  content: "";
  border-left: 10px solid #303a3b;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  position: absolute;
  bottom: -11px;
  left: 50px;
}
main .requirements-recruitment .main-timeline .timeline .timeline-content {
  padding: 18px 60px 18px 40px;
  text-align: right;
  position: relative;
  z-index: 1;
}
main .requirements-recruitment .main-timeline .timeline .timeline-content::before, main .requirements-recruitment .main-timeline .timeline .timeline-content::after {
  content: "";
  width: 80px;
  height: 150px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: -7%;
  right: 15px;
  z-index: -1;
}
main .requirements-recruitment .main-timeline .timeline .timeline-content::after {
  left: auto;
  right: -95px;
}
main .requirements-recruitment .main-timeline .timeline .timeline-content .title {
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--tone);
  margin-top: 0;
  margin-bottom: 8px;
}
main .requirements-recruitment .main-timeline .timeline .timeline-content .description {
  font-size: 0.95rem;
  color: #656a70;
  line-height: 1.9;
  margin: 0;
}
main .requirements-recruitment .main-timeline .timeline:last-child .timeline-content::before, main .requirements-recruitment .main-timeline .timeline:last-child .timeline-content::after {
  width: 0;
  height: 0;
}
main .requirements-recruitment .main-timeline .timeline:nth-child(2) {
  margin-top: 140px;
}
main .requirements-recruitment .main-timeline .timeline:nth-child(even) {
  margin-bottom: 80px;
}
main .requirements-recruitment .main-timeline .timeline:nth-child(odd) {
  margin: -140px 0 0;
}
main .requirements-recruitment .main-timeline .timeline:first-child, main .requirements-recruitment .main-timeline .timeline:last-child:nth-child(even) {
  margin: 0 !important;
}
main .requirements-recruitment .main-timeline .timeline:nth-child(2n)::before {
  right: auto;
  left: -20px;
}
main .requirements-recruitment .main-timeline .timeline:nth-child(2n) .timeline-icon {
  right: auto;
  left: -40px;
}
main .requirements-recruitment .main-timeline .timeline:nth-child(2n) .year {
  padding: 0 30px 0 60px;
  text-align: left;
}
main .requirements-recruitment .main-timeline .timeline:nth-child(2n) .year::before {
  left: auto;
  right: 3px;
}
main .requirements-recruitment .main-timeline .timeline:nth-child(2n) .year::after {
  border-left: none;
  border-right: 10px solid #303a3b;
  right: 50px;
  left: auto;
}
main .requirements-recruitment .main-timeline .timeline:nth-child(2n) .timeline-content {
  padding: 18px 40px 18px 60px;
  text-align: left;
}
main .requirements-recruitment .main-timeline .timeline:nth-child(2n) .timeline-content::before {
  left: -95px;
  right: auto;
}
main .requirements-recruitment .main-timeline .timeline:nth-child(2n) .timeline-content::after {
  left: 15px;
  right: auto;
}
main .requirements-recruitment .main-timeline .timeline:nth-child(2n) {
  --tone: #b7864c;
}
main .requirements-recruitment .main-timeline .timeline:nth-child(3n) {
  --tone: #4f8674;
}
main .requirements-recruitment .main-timeline .timeline:nth-child(4n) {
  --tone: #48685c;
}
@media only screen and (max-width: 990px) {
  main .requirements-recruitment .requirements-tabs {
    --w-label: 190px;
  }
  main .requirements-recruitment .main-timeline .timeline {
    width: 100%;
  }
  main .requirements-recruitment .main-timeline .timeline:nth-child(even), main .requirements-recruitment .main-timeline .timeline:nth-child(odd) {
    margin: 0;
  }
  main .requirements-recruitment .main-timeline .timeline::before, main .requirements-recruitment .main-timeline .timeline:nth-child(2n)::before {
    width: 30px;
    height: 100%;
    left: 25px;
    right: auto;
  }
  main .requirements-recruitment .main-timeline .timeline .timeline-icon, main .requirements-recruitment .main-timeline .timeline:nth-child(2n) .timeline-icon {
    left: 0;
    right: auto;
  }
  main .requirements-recruitment .main-timeline .timeline .year, main .requirements-recruitment .main-timeline .timeline:nth-child(2n) .year {
    text-align: left;
    padding: 0 30px 0 100px;
  }
  main .requirements-recruitment .main-timeline .timeline .year::before, main .requirements-recruitment .main-timeline .timeline:nth-child(2n) .year::before {
    left: auto;
    right: 4px;
  }
  main .requirements-recruitment .main-timeline .timeline .year::after {
    left: auto;
    right: 50px;
    border-right: 10px solid #303a3b;
    border-left: none;
  }
  main .requirements-recruitment .main-timeline .timeline .timeline-content, main .requirements-recruitment .main-timeline .timeline:nth-child(2n) .timeline-content {
    text-align: left;
    padding: 18px 40px 18px 100px;
  }
  main .requirements-recruitment .main-timeline .timeline .timeline-content::before,
  main .requirements-recruitment .main-timeline .timeline .timeline-content::after {
    width: 0;
    height: 0;
  }
}
@media (max-width: 600px) {
  main .requirements-recruitment .requirements-tabs {
    width: 100%;
    justify-content: flex-start;
  }
}
main .about-recruitment {
  padding: 28px 0 18px;
}
main .about-recruitment .about-collage {
  position: relative;
}
main .about-recruitment .about-collage .about-photo {
  position: absolute;
  margin: 0;
  isolation: isolate;
}
main .about-recruitment .about-collage .about-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-mask-image: url("./../images/fav.svg");
  mask-image: url("./../images/fav.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
main .about-recruitment .about-collage .about-help-card {
  position: absolute;
  inset: auto 3% 7% auto;
  width: min(260px, 72%);
  padding: 22px 18px 18px;
  border-radius: 18px;
  background: linear-gradient(155deg, #f6911e, #e38212);
  color: #ffffff;
  box-shadow: 0 18px 30px rgba(246, 145, 30, 0.36);
  text-align: center;
}
main .about-recruitment .about-collage .about-help-card .help-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -48px auto 10px;
  background: #1f4b3c;
  border: 5px solid rgba(255, 255, 255, 0.95);
  font-size: 1.4rem;
}
main .about-recruitment .about-collage .about-help-card h3 {
  font-size: 1.45rem;
  line-height: 1.35;
  margin-bottom: 6px;
  font-weight: 800;
}
main .about-recruitment .about-collage .about-help-card p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.98rem;
}
main .about-recruitment .about-collage .about-help-card a {
  display: inline-block;
  margin-top: 4px;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}
main .about-recruitment .about-collage .about-help-badge {
  position: absolute;
  inset: auto auto 20% -15%;
  z-index: 3;
  width: min(290px, 78%);
  padding: 12px;
  border-radius: 20px;
  border: 1px solid rgba(4, 59, 89, 0.12);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  gap: 12px;
}
main .about-recruitment .about-collage .about-help-badge .service-icon1 {
  width: 132px;
  height: 132px;
  line-height: 132px;
  display: block;
  overflow: hidden;
  position: relative;
  margin: 0;
  flex: 0 0 132px;
}
main .about-recruitment .about-collage .about-help-badge .service-icon1 strong,
main .about-recruitment .about-collage .about-help-badge .service-icon1 span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 400px;
  transition: all 0.5s ease 0s;
}
main .about-recruitment .about-collage .about-help-badge .service-icon1 strong {
  border-width: 10px;
  border-style: solid;
  border-color: #043b59 transparent transparent #043b59;
  transform: rotate(-45deg);
  z-index: 1;
}
main .about-recruitment .about-collage .about-help-badge .service-icon1 span {
  border: 10px solid #e8e3d8;
  transform: rotate(0deg);
  z-index: 0;
}
main .about-recruitment .about-collage .about-help-badge .service-icon1 .icons {
  display: inline-block;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
main .about-recruitment .about-collage .about-help-badge .service-icon1 .icons i {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  color: #ffffff;
  background: #043b59;
  transform: rotateY(0deg);
  transition: all 0.5s ease 0s;
}
main .about-recruitment .about-collage .about-help-badge .badge-copy h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: #043b59;
  line-height: 1.6;
  font-weight: 800;
}
main .about-recruitment .about-collage .about-help-badge .badge-copy p {
  margin: 0;
  color: #3e4a45;
  font-size: 0.92rem;
}
main .about-recruitment .about-collage .about-help-badge .badge-copy a {
  display: inline-block;
  margin-top: 6px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #1f4b3c;
}
main .about-recruitment .about-collage .about-help-badge:hover .service-icon1 strong {
  transform: rotate(315deg);
}
main .about-recruitment .about-collage .about-help-badge:hover .service-icon1 span {
  transform: rotate(-180deg);
}
main .about-recruitment .about-collage .about-help-badge:hover .service-icon1 .icons i {
  transform: rotateY(360deg);
}
main .about-recruitment .about-collage.single-photo {
  min-height: 540px;
}
main .about-recruitment .about-collage.single-photo .about-photo {
  position: absolute;
  inset: 7% 7% 7% 7%;
  width: auto;
  aspect-ratio: auto;
  transform: none !important;
  animation: none !important;
}
main .about-recruitment .about-collage.single-photo .photo-secondary {
  inset: 7% 7% 7% 7%;
  width: auto;
  aspect-ratio: auto;
  transform: none;
}
main .about-recruitment .about-collage.single-photo .photo-main,
main .about-recruitment .about-collage.single-photo .photo-tertiary,
main .about-recruitment .about-collage.single-photo .about-help-card {
  display: none;
}
main .about-recruitment .about-copy {
  padding-inline: clamp(4px, 2vw, 14px);
}
main .about-recruitment .about-copy .experience {
  background: linear-gradient(45deg, #d49e39, rgb(238, 170, 44));
  color: #ffffff;
  padding: 8px 16px;
  font-family: "Vazirmatn", sans-serif;
  font-size: 16px;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  border-radius: 8px;
}
main .about-recruitment .about-copy h2 {
  font-size: clamp(1.8rem, 4.5vw, 2.65rem);
  color: #043b59;
  line-height: 1.35;
  margin-bottom: 12px;
}
main .about-recruitment .about-copy > p {
  color: #30483f;
  line-height: 1.95;
  margin-bottom: 14px;
}
main .about-recruitment .about-copy .about-points {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}
main .about-recruitment .about-copy .about-points li {
  position: relative;
  padding-inline-start: 24px;
  color: #2b4238;
}
main .about-recruitment .about-copy .about-points li::before {
  content: "";
  position: absolute;
  inset-inline-start: 6px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(130deg, #043b59, #f6911e);
}
@media screen and (max-width: 990px) {
  main .about-recruitment .about-copy .about-metrics .serviceBox {
    margin-bottom: 25px;
  }
}
@media (max-width: 992px) {
  main .about-recruitment .about-collage {
    min-height: 560px;
  }
  main .about-recruitment .about-copy .about-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  main .about-recruitment {
    margin: 8px auto 12px;
    padding-top: 8px;
  }
  main .about-recruitment .about-collage {
    min-height: 520px;
  }
  main .about-recruitment .about-collage .photo-main {
    width: min(350px, 75%);
    inset: 9% 10% auto auto;
  }
  main .about-recruitment .about-collage .photo-secondary {
    width: min(190px, 42%);
    inset: 8% auto auto 5%;
  }
  main .about-recruitment .about-collage .photo-tertiary {
    width: min(170px, 36%);
    inset: auto auto 17% 7%;
  }
  main .about-recruitment .about-collage .about-help-card {
    inset: auto 4% 4% auto;
    width: min(230px, 64%);
    padding-inline: 14px;
  }
  main .about-recruitment .about-collage .about-help-card h3 {
    font-size: 1.2rem;
  }
  main .about-recruitment .about-collage .about-help-card a {
    font-size: 1.6rem;
  }
  main .about-recruitment .about-collage .about-help-badge {
    inset: auto auto 2% 2%;
    width: min(255px, 86%);
    padding: 10px;
    gap: 10px;
  }
  main .about-recruitment .about-collage .about-help-badge .service-icon1 {
    width: 102px;
    height: 102px;
    line-height: 102px;
    flex-basis: 102px;
  }
  main .about-recruitment .about-collage .about-help-badge .service-icon1 strong,
  main .about-recruitment .about-collage .about-help-badge .service-icon1 span {
    border-width: 8px;
  }
  main .about-recruitment .about-collage .about-help-badge .service-icon1 .icons i {
    width: 68px;
    height: 68px;
    font-size: 1.6rem;
  }
  main .about-recruitment .about-collage .about-help-badge .badge-copy h3 {
    font-size: 0.88rem;
  }
  main .about-recruitment .about-collage .about-help-badge .badge-copy p {
    font-size: 0.8rem;
  }
  main .about-recruitment .about-collage .about-help-badge .badge-copy a {
    font-size: 1.1rem;
  }
  main .about-recruitment .about-collage.single-photo {
    min-height: 460px;
  }
  main .about-recruitment .about-collage.single-photo .about-photo,
  main .about-recruitment .about-collage.single-photo .photo-secondary {
    inset: 6% 5% 6% 5%;
  }
  main .about-recruitment .about-copy h2 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }
  main .about-recruitment .about-copy .about-metrics {
    grid-template-columns: 1fr;
  }
}
main .about-recruitment {
  padding: 2rem 0 80px;
  position: relative;
  z-index: 11;
  /* ====== RIGHT: Content ====== */
}
main .about-recruitment .about-copy {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
main .about-recruitment .about-copy h2 {
  font-size: clamp(1.65rem, 3.8vw, 2.35rem);
  font-weight: 700;
  color: #1a202c;
  line-height: 1.4;
}
main .about-recruitment .about-copy p {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.9;
}
main .about-recruitment .about-copy span {
  color: #145b2d;
  font-weight: 600;
}
main .about-recruitment {
  /* ====== LEFT: Sphere ====== */
}
main .about-recruitment .about-sphere {
  flex: 0 0 480px;
  position: relative;
  background: #ffffff;
  min-height: 480px;
  overflow: hidden;
}
main .about-recruitment .about-sphere canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
  cursor: grab;
}
main .about-recruitment .about-sphere canvas:active {
  cursor: grabbing;
}
main .about-recruitment {
  /* ====== Tablet ====== */
}
@media (max-width: 1024px) {
  main .about-recruitment .container {
    flex-direction: column !important;
  }
  main .about-recruitment .about-sphere {
    flex: 0 0 auto !important;
    width: 100% !important;
    height: 400px !important;
    min-height: 400px !important;
    border-top: 1px solid #e2e8f0;
  }
  main .about-recruitment .about-copy {
    padding: 2.5rem 2rem;
  }
}
main .about-recruitment {
  /* ====== Mobile ====== */
}
@media (max-width: 768px) {
  main .about-recruitment {
    padding: 1rem 0 40px;
  }
  main .about-recruitment .container {
    border-radius: 12px;
  }
  main .about-recruitment .about-sphere {
    height: 340px !important;
    min-height: 340px !important;
  }
  main .about-recruitment .about-copy {
    padding: 2rem 1.5rem;
  }
  main .about-recruitment .about-copy h2 {
    font-size: 22px;
  }
  main .about-recruitment .about-copy p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  main .about-recruitment .about-sphere {
    height: 280px !important;
    min-height: 280px !important;
  }
  main .about-recruitment .about-copy {
    padding: 1.5rem 1rem;
  }
  main .about-recruitment .about-copy h2 {
    font-size: 20px;
  }
}
main {
  /* ================================================================
         2. VIDEO SECTION — msnd-video-sec
         ================================================================ */
}
main .msnd-video-sec {
  padding: 80px 0;
}
main .msnd-video-sec .msnd-video-sec__text {
  padding: 48px 48px 48px 24px;
  position: relative;
}
main .msnd-video-sec .msnd-video-sec__text .msnd-section-title {
  margin-bottom: 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
main .msnd-video-sec .msnd-video-sec__text .msnd-section-title .msnd-section-title__sub {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #043b59;
  letter-spacing: 0.5px;
}
main .msnd-video-sec .msnd-video-sec__text .msnd-section-title img {
  width: 160px;
}
main .msnd-video-sec .msnd-video-sec__text .msnd-section-title h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #043b59;
  margin-bottom: 0;
  line-height: 1.3;
}
main .msnd-video-sec .msnd-video-sec__text .msnd-video-sec__hint {
  line-height: 2;
  color: #777777;
  font-size: 0.97rem;
  margin-bottom: 32px;
}
main .msnd-video-sec .msnd-video-sec__text .msnd-features-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 70%;
}
main .msnd-video-sec .msnd-video-sec__text .msnd-features-list .msnd-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 10px;
  border: 1px solid #eaeef2;
  box-shadow: 0 4px 24px rgba(4, 59, 89, 0.07);
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  will-change: transform;
  /* stagger effect للكروت الزوجية */
}
main .msnd-video-sec .msnd-video-sec__text .msnd-features-list .msnd-feature-item:nth-child(even) {
  transform: translateX(-50px);
}
main .msnd-video-sec .msnd-video-sec__text .msnd-features-list .msnd-feature-item:hover {
  border-color: rgba(165, 207, 241, 0.1019607843);
  box-shadow: 0 12px 40px rgba(4, 59, 89, 0.13);
  transform: translateX(-4px);
}
main .msnd-video-sec .msnd-video-sec__text .msnd-features-list .msnd-feature-item {
  /* الحفاظ على stagger مع hover */
}
main .msnd-video-sec .msnd-video-sec__text .msnd-features-list .msnd-feature-item:nth-child(even):hover {
  transform: translateX(-55px);
}
main .msnd-video-sec .msnd-video-sec__text .msnd-features-list .msnd-feature-item .msnd-feature-item__icon {
  font-size: 1.7rem;
  width: 44px;
  flex-shrink: 0;
  color: #043b59;
  text-align: center;
}
main .msnd-video-sec .msnd-video-sec__text .msnd-features-list .msnd-feature-item .msnd-feature-item__body h3 {
  font-size: 0.98rem;
  font-weight: 800;
  color: #043b59;
  margin-bottom: 4px;
}
main .msnd-video-sec .msnd-video-sec__text .msnd-features-list .msnd-feature-item .msnd-feature-item__body p {
  color: #777777;
  font-size: 0.87rem;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 767px) {
  main .msnd-video-sec .msnd-video-sec__text .msnd-features-list .msnd-feature-item {
    padding: 14px 14px;
    /* إلغاء الإزاحة على الموبايل */
    transform: none !important;
  }
  main .msnd-video-sec .msnd-video-sec__text .msnd-features-list .msnd-feature-item:hover {
    transform: translateY(-2px) !important;
  }
}
main .msnd-video-sec .msnd-video-sec__text .msnd-features-list {
  /* تابلت */
}
@media (max-width: 1024px) {
  main .msnd-video-sec .msnd-video-sec__text .msnd-features-list {
    width: 100%;
  }
  main .msnd-video-sec .msnd-video-sec__text .msnd-features-list .msnd-feature-item:nth-child(even) {
    transform: translateX(-10px);
  }
}
main .msnd-video-sec .msnd-video-sec__text .msnd-features-list {
  /* موبايل صغير */
}
@media (max-width: 767px) {
  main .msnd-video-sec .msnd-video-sec__text .msnd-features-list {
    width: 100%;
  }
}
@media (max-width: 991px) {
  main .msnd-video-sec .msnd-video-sec__text {
    padding: 36px 16px 28px;
  }
}
main .msnd-video-sec .msnd-video-sec__visual {
  position: relative;
}
main .msnd-video-sec .msnd-video-sec__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: rgba(4, 59, 89, 0.0705882353);
  transform: translate(7px, -7px);
  z-index: -1;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
}
main .msnd-video-sec .msnd-video-sec__visual {
  /* &::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 100px;
        background:  #043b59;
        transform: translate(14px, -14px);
        opacity: 0.12;
        z-index: -2;
        transition: 0.35s;
        } */
}
main .msnd-video-sec .msnd-video-sec__visual .msnd-video-thumb {
  position: relative;
  height: 100%;
  min-height: 420px;
  border-radius: 0 100px 0 0;
  background: url("./../images/s2.webp") center/cover no-repeat;
  overflow: hidden;
}
main .msnd-video-sec .msnd-video-sec__visual .msnd-video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4, 59, 89, 0.4) 0%, rgba(4, 59, 89, 0.1) 100%);
}
main .msnd-video-sec .msnd-video-sec__visual .msnd-video-thumb .msnd-video-thumb__play {
  width: 80px;
  height: 80px;
  font-size: 30px;
  padding-left: 5px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: #043b59;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #ffffff;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
main .msnd-video-sec .msnd-video-sec__visual .msnd-video-thumb .msnd-video-thumb__play::before {
  content: "";
  width: 130%;
  height: 130%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: play-button 1s infinite linear;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
main .msnd-video-sec .msnd-video-sec__visual .msnd-video-thumb .msnd-video-thumb__play:hover {
  background: #145b2d;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  main .msnd-video-sec .msnd-video-sec__visual .msnd-video-thumb {
    border-radius: 16px;
    min-height: 280px;
  }
}
@media (max-width: 991px) {
  main .msnd-video-sec {
    padding: 50px 0;
  }
  main .msnd-video-sec .msnd-video-sec__visual {
    order: -1;
  }
}
@keyframes play-button {
  0% {
    width: 100%;
    height: 100%;
    border: 0px solid #ffffff;
  }
  100% {
    width: 130%;
    height: 130%;
    border: 10px solid rgba(255, 255, 255, 0.1254901961);
  }
}
main {
  /* ================================================================
         3. TRIP — msnd-trip
         ================================================================ */
}
main .msnd-trip {
  padding: 80px 0;
  background: #f4f7fa;
}
main .msnd-trip .msnd-trip__header {
  text-align: center;
  margin-bottom: 48px;
}
main .msnd-trip .msnd-trip__header .msnd-section-title .msnd-section-title__sub {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: #145b2d;
  margin-bottom: 6px;
}
main .msnd-trip .msnd-trip__header .msnd-section-title h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #043b59;
  margin-bottom: 14px;
}
main .msnd-trip .msnd-trip__header .msnd-trip__hint {
  max-width: 760px;
  margin: 0 auto;
  line-height: 2;
  color: #777777;
  font-size: 0.97rem;
}
main .msnd-trip .msnd-trip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  main .msnd-trip .msnd-trip__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
main .msnd-trip .msnd-trip-card {
  border: 1px solid rgba(4, 59, 89, 0.15);
  border-radius: 10px;
  text-align: center;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
main .msnd-trip .msnd-trip-card:hover {
  box-shadow: 0 12px 40px rgba(4, 59, 89, 0.13);
  transform: translateY(-6px);
}
main .msnd-trip .msnd-trip-card:hover .msnd-trip-card__label {
  background: #043b59;
  color: #ffffff;
}
main .msnd-trip .msnd-trip-card .msnd-trip-card__img {
  height: 190px;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 16px;
  width: 100%;
}
@media (max-width: 767px) {
  main .msnd-trip .msnd-trip-card .msnd-trip-card__img {
    height: 140px;
  }
}
main .msnd-trip .msnd-trip-card .msnd-trip-card__label {
  background: rgba(4, 59, 89, 0.2);
  color: #043b59;
  padding: 16px 20px;
  font-weight: 800;
  font-size: 1rem;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border-top: 1px solid #eaeef2;
}
main {
  /* ================================================================
         4. STEPS — msnd-steps
         ================================================================ */
}
main .msnd-steps {
  padding: 80px 0;
  background: linear-gradient(rgba(244, 247, 250, 0.94), rgba(244, 247, 250, 0.96)), url(assets/images/musanedHead.webp) center/cover no-repeat fixed;
}
main .msnd-steps .msnd-steps__header {
  margin-bottom: 48px;
}
main .msnd-steps .msnd-steps__header .msnd-section-title .msnd-section-title__sub {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: #145b2d;
  margin-bottom: 6px;
}
main .msnd-steps .msnd-steps__header .msnd-section-title h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #043b59;
}
main .msnd-steps .msnd-steps__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1199px) {
  main .msnd-steps .msnd-steps__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  main .msnd-steps .msnd-steps__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 420px) {
  main .msnd-steps .msnd-steps__grid {
    grid-template-columns: 1fr;
  }
}
main .msnd-steps .msnd-step-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(4, 59, 89, 0.07);
  border: 1px solid #eaeef2;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative;
  overflow: hidden;
}
main .msnd-steps .msnd-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(4, 59, 89, 0.13);
  border-color: transparent;
}
main .msnd-steps .msnd-step-card:hover::after {
  transform: scaleX(1);
}
main .msnd-steps .msnd-step-card:hover .msnd-step-card__icon {
  color: #145b2d;
}
main .msnd-steps .msnd-step-card .msnd-step-card__num {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(4, 59, 89, 0.2);
  color: #043b59;
  font-size: 0.78rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .msnd-steps .msnd-step-card .msnd-step-card__icon {
  font-size: 2.6rem;
  color: #043b59;
  margin-bottom: 18px;
  display: block;
  transition: color 0.3s ease;
}
main .msnd-steps .msnd-step-card h5 {
  font-size: 0.9rem;
  font-weight: 800;
  color: #043b59;
  margin-bottom: 12px;
  line-height: 1.45;
}
main .msnd-steps .msnd-step-card p {
  color: #777777;
  font-size: 0.82rem;
  line-height: 1.85;
  margin: 0;
}
@media (max-width: 767px) {
  main .msnd-steps .msnd-step-card {
    padding: 22px 14px;
  }
  main .msnd-steps .msnd-step-card .msnd-step-card__icon {
    font-size: 2rem;
    margin-bottom: 12px;
  }
}
main {
  /* ================================================================
         5. FEES — msnd-fees
         ================================================================ */
}
main .msnd-fees {
  padding: 80px 0;
  background: #ffffff;
  text-align: center;
}
main .msnd-fees .msnd-fees__header {
  margin-bottom: 24px;
}
main .msnd-fees .msnd-fees__header .msnd-section-title .msnd-section-title__sub {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: #145b2d;
  margin-bottom: 6px;
}
main .msnd-fees .msnd-fees__header .msnd-section-title h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #043b59;
}
main .msnd-fees .msnd-fees__desc {
  max-width: 680px;
  margin: 0 auto 36px;
  color: #777777;
  line-height: 2;
  font-size: 0.97rem;
}
main .msnd-fees .msnd-fees__methods {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
main .msnd-fees .msnd-fees__methods .msnd-fees__method-img {
  height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  border: 1px solid #eaeef2;
  padding: 10px 18px;
  background: #f4f7fa;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
main .msnd-fees .msnd-fees__methods .msnd-fees__method-img:hover {
  box-shadow: 0 12px 40px rgba(4, 59, 89, 0.13);
  transform: translateY(-3px);
  border-color: rgba(165, 207, 241, 0.1019607843);
}
@media (max-width: 480px) {
  main .msnd-fees .msnd-fees__methods .msnd-fees__method-img {
    height: 50px;
    padding: 8px 14px;
  }
}
main {
  /* ================================================================
         6. APP — msnd-app
         ================================================================ */
}
main .msnd-app {
  padding-top: 80px;
  background: rgba(4, 59, 89, 0.2);
}
main .msnd-app .msnd-app__info {
  padding: 32px;
  background: rgba(255, 254, 254, 0.5);
  border-radius: 24px;
  text-align: center;
  margin-bottom: 40px;
  border: #eaeef2;
  box-shadow: 0 4px 24px rgba(4, 59, 89, 0.07);
}
main .msnd-app .msnd-app__info .msnd-app__logo {
  height: 110px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}
main .msnd-app .msnd-app__info h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #043b59;
  margin-bottom: 16px;
  line-height: 1.55;
}
main .msnd-app .msnd-app__info p {
  color: #777777;
  line-height: 2;
  font-size: 0.92rem;
  margin-bottom: 28px;
}
main .msnd-app .msnd-app__info .msnd-app__store-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
main .msnd-app .msnd-app__info .msnd-app__store-links a {
  display: inline-block;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
main .msnd-app .msnd-app__info .msnd-app__store-links a:hover {
  transform: translateY(-3px);
}
main .msnd-app .msnd-app__info .msnd-app__store-links .msnd-app__store-img {
  height: 52px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  main .msnd-app .msnd-app__info .msnd-app__store-links .msnd-app__store-img {
    height: 44px;
  }
}
@media (max-width: 767px) {
  main .msnd-app .msnd-app__info {
    padding: 24px 16px;
  }
}
main .msnd-app .msnd-app__mockup {
  text-align: center;
}
main .msnd-app .msnd-app__mockup .msnd-app__mockup-img {
  width: 100%;
  max-width: 340px;
  -o-object-fit: contain;
     object-fit: contain;
}
main .countries {
  padding: 56px 0;
  background: linear-gradient(rgba(1, 18, 50, 0.76), rgba(5, 24, 62, 0.91)), url(./../images/countries.png) no-repeat center;
  background-size: cover;
  color: white;
  background-attachment: fixed;
}
main .countries .section-head {
  text-align: center;
}
main .countries .section-head h2 {
  font-size: clamp(1.7rem, 4vw, 2rem);
  font-weight: 800;
}
main .countries .countryCardLink {
  display: block;
  color: inherit;
}
main .countries .countryCardLink:hover .country-cta svg, main .countries .countryCardLink:focus-visible .country-cta svg {
  opacity: 1;
  visibility: visible;
  transform: translateX(-4px) scaleX(-1);
}
main .countries .countryCardLink:focus-visible {
  outline: 2px solid rgba(111, 85, 255, 0.45);
  outline-offset: 3px;
  border-radius: 20px;
}
main .countries .countryCardLink .countryBox {
  padding: 18px 18px;
  position: relative;
  border-radius: 20px;
  background: #f2f2f2;
  overflow: visible;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
main .countries .countryCardLink .countryBox:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}
main .countries .countryCardLink .countryBox .country-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
main .countries .countryCardLink .countryBox .country-main .country-meta {
  padding-right: 1rem;
  z-index: 1;
}
main .countries .countryCardLink .countryBox .country-main .country-meta .title {
  color: #202328;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 16px;
  transition: all 0.3s;
}
main .countries .countryCardLink .countryBox .country-main .country-meta .country-price {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.05;
  color: #043b59;
  white-space: nowrap;
  padding-top: 12px;
}
main .countries .countryCardLink .countryBox .country-main .country-meta .country-price .currency {
  font-weight: 100;
  font-size: 1.45rem;
  margin-inline-end: 4px;
}
main .countries .countryCardLink .countryBox .country-main .country-meta .country-details {
  padding-bottom: 8px;
  border-bottom: 1px dashed #d7dee5;
}
main .countries .countryCardLink .countryBox .country-main .country-meta .country-details .country-line {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #1f1f1f;
  font-weight: 700;
}
main .countries .countryCardLink .countryBox .country-main .country-meta .country-details .country-line .label {
  color: #3a424d;
}
main .countries .countryCardLink .countryBox .country-main .country-meta .country-details .country-line .value {
  color: #1f3550;
  text-align: left;
}
main .countries .countryCardLink .countryBox .country-main .country-icon {
  color: #fff;
  background: #043b59;
  font-size: 40px;
  line-height: 100px;
  width: 70px;
  height: 70px;
  margin: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2);
  position: absolute;
  display: flex;
  justify-content: center;
  transform: translate(50px, -50px);
  transition: all 0.3s;
}
main .countries .countryCardLink .countryBox .country-main .country-icon:before, main .countries .countryCardLink .countryBox .country-main .country-icon:after {
  content: "";
  border: 2px solid #f2f2f2;
  border-left: 2px dashed #f2f2f2;
  border-right: 2px dashed #f2f2f2;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: -10px;
  bottom: -8px;
  right: -6px;
  transition: all 0.3s;
}
main .countries .countryCardLink .countryBox .country-main .country-icon:after {
  transform: rotate(-45deg);
  top: -20px;
  left: -20px;
  bottom: -14px;
  right: -12px;
}
main .countries .countryCardLink .countryBox .country-main .country-icon img {
  line-height: inherit;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
main .countries .countryCardLink .countryBox:hover .country-icon:before {
  transform: rotate(-40deg);
}
main .countries .countryCardLink .countryBox:hover .country-icon:after {
  transform: rotate(40deg);
}
main .countries .countryCardLink .countryBox:hover .country-icon img {
  transform: rotateX(360deg);
}
main .countries .countryCardLink .countryBox:hover .country-meta .title {
  color: #043b59;
}
main .countries .countryCardLink .country-cta {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  height: 46px;
  border: 0;
  border-radius: 0 50px 0 20px;
  background: linear-gradient(180deg, rgba(4, 59, 89, 0.09), rgba(0, 153, 110, 0.14));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  /* opacity: 0; */
  /* visibility: hidden; */
  /* transform: translateX(-8px); */
  transition: all 0.25s ease;
}
main .countries .countryCardLink .country-cta svg {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px) scaleX(-1);
  transition: all 0.25s ease;
}
main .call-center {
  padding: 56px 0;
}
main .call-center .section-head {
  text-align: center;
  margin: 0 0 42px;
}
main .call-center .section-head h2 {
  font-size: clamp(1.7rem, 4vw, 2rem);
  font-weight: 800;
  color: #043b59;
}
main .call-center .section-head p {
  max-width: 700px;
  margin: 0 auto;
}
main .call-center .call-center-grid {
  justify-content: center;
}
main .call-center .call-agent-card {
  position: relative;
  min-height: 230px;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  background: #fff;
  padding: 20px 14px 16px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.04);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  animation: callCardEnter 0.55s ease both;
}
main .call-center .call-agent-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(227, 173, 64, 0.1), rgba(227, 173, 64, 0));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}
main .call-center .call-agent-card:hover {
  transform: translateY(-8px);
  border-color: #f1d59d;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
}
main .call-center .call-agent-card:hover::before {
  opacity: 1;
}
main .call-center .call-agent-card .agent-phone-icon {
  position: absolute;
  top: -34px;
  left: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #80c26c;
  display: grid;
  place-items: center;
  font-size: 48px;
  animation: phoneFloat 2.6s ease-in-out infinite;
}
main .call-center .call-agent-card .agent-rating {
  margin: 30px 0 38px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  color: #f1a20d;
  font-size: 20px;
}
main .call-center .call-agent-card .agent-rating i {
  transition: transform 0.2s ease, filter 0.2s ease;
}
main .call-center .call-agent-card:hover .agent-rating i {
  filter: drop-shadow(0 2px 3px rgba(241, 162, 13, 0.45));
}
main .call-center .call-agent-card:hover .agent-rating i:nth-child(1) {
  transform: translateY(-2px);
}
main .call-center .call-agent-card:hover .agent-rating i:nth-child(2) {
  transform: translateY(-4px);
}
main .call-center .call-agent-card:hover .agent-rating i:nth-child(3) {
  transform: translateY(-6px);
}
main .call-center .call-agent-card:hover .agent-rating i:nth-child(4) {
  transform: translateY(-4px);
}
main .call-center .call-agent-card:hover .agent-rating i:nth-child(5) {
  transform: translateY(-2px);
}
main .call-center .call-agent-card .agent-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 26px 12px;
}
main .call-center .call-agent-card .agent-actions a {
  width: 146px;
  height: 48px;
  border-radius: 8px;
  background: #043b59;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  font-size: 25px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
main .call-center .call-agent-card .agent-actions a::before {
  content: "";
  position: absolute;
  top: 0;
  right: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  transform: skewX(-22deg);
  transition: right 0.36s ease;
}
main .call-center .call-agent-card .agent-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 18px rgba(4, 59, 89, 0.14);
  color: #fff;
}
main .call-center .call-agent-card .agent-actions a:hover::before {
  right: 150%;
}
main .call-center .call-agent-card .agent-actions a:active {
  transform: translateY(0);
}
main .call-center .call-agent-card .ribbon {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
main .call-center .call-agent-card .ribbon {
  --r: 0.4em;
  --c: #e3ad40;
  position: absolute;
  bottom: 140px;
  right: -9px;
  min-width: 146px;
  text-align: center;
  z-index: 2;
  line-height: 1.8;
  padding: calc(2 * var(--r)) 0.5em 0;
  border-radius: 0 var(--r) var(--r) 0;
  background: radial-gradient(100% 50% at right, var(--c) 98%, rgba(0, 0, 0, 0) 101%) 0 100%/0.5lh calc(100% - 2 * var(--r)), radial-gradient(100% 50% at left, rgba(0, 0, 0, 0.3333333333) 98%, rgba(0, 0, 0, 0) 101%) 100% 0/var(--r) calc(2 * var(--r)), conic-gradient(at calc(100% - var(--r)) calc(2 * var(--r)), var(--c) 75%, rgba(0, 0, 0, 0) 0) 100% 0/calc(101% - 0.5lh) 100%;
  background-repeat: no-repeat;
  transition: all 0.25s ease;
}
main .call-center .call-agent-card .ribbon small {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 500;
}
main .call-center .call-agent-card:hover .ribbon {
  filter: saturate(1.05);
  --c: #043b59;
}
main .call-center .call-center-grid > div:nth-child(2) .call-agent-card {
  animation-delay: 0.08s;
}
main .call-center .call-center-grid > div:nth-child(3) .call-agent-card {
  animation-delay: 0.16s;
}
@media (max-width: 575px) {
  main .call-center .call-agent-card {
    min-height: 210px;
  }
  main .call-center .call-agent-card .agent-rating {
    font-size: 22px;
    gap: 8px;
    margin-bottom: 28px;
  }
  main .call-center .call-agent-card .agent-actions a {
    width: 46%;
  }
  main .call-center .call-agent-card .ribbon {
    transform: scale(0.9);
    transform-origin: left center;
  }
}
@media (prefers-reduced-motion: reduce) {
  main .call-center .call-agent-card,
  main .call-center .call-agent-card::before,
  main .call-center .call-agent-card .agent-phone-icon,
  main .call-center .call-agent-card .agent-rating i,
  main .call-center .call-agent-card .agent-actions a,
  main .call-center .call-agent-card .agent-actions a::before,
  main .call-center .call-agent-card .ribbon {
    animation: none !important;
    transition: none !important;
  }
}
main .workers-cv-section .cv-service-tabs {
  --round: 12px;
  --p-x: 8px;
  --p-y: 5px;
  --w-label: 170px;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  transform: translate(-47%, 47%);
  padding: var(--p-y) var(--p-x);
  border-radius: var(--round);
  overflow-x: auto;
  background: #f4f7f8;
  scrollbar-width: none;
}
main .workers-cv-section .cv-service-tabs::-webkit-scrollbar {
  display: none;
}
main .workers-cv-section .cv-service-tabs .cv-service-tab {
  border: 0;
  background: transparent;
  border-radius: calc(var(--round) - var(--p-y));
  width: var(--w-label);
  min-width: var(--w-label);
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #264238;
  transition: 0.25s ease;
}
main .workers-cv-section .cv-service-tabs .cv-service-tab.is-active {
  background: #043b59;
  color: #fff;
}
main .workers-cv-section .worker-container {
  background: #f4f7f8;
  padding: 10px;
  border-radius: 20px;
}
main .workers-cv-section .worker-service-card {
  transition: opacity 0.22s ease, transform 0.22s ease;
}
main .workers-cv-section .worker-service-card.is-hidden {
  display: none;
}
main .workers-cv-section .workers-pagination-wrap {
  margin-top: 24px;
  padding: 14px 16px;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 14px;
}
main .workers-cv-section .workers-pagination-status {
  font-size: 0.9rem;
  color: #264238;
  font-weight: 700;
}
main .workers-cv-section .workers-pagination {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
main .workers-cv-section .workers-pagination-btn {
  min-width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(4, 59, 89, 0.2);
  background: #fff;
  color: #043b59;
  font-size: 0.95rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  transition: 0.2s ease;
}
main .workers-cv-section .workers-pagination-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(4, 59, 89, 0.12);
}
main .workers-cv-section .workers-pagination-btn.is-active {
  background: #043b59;
  border-color: transparent;
  color: #fff;
}
main .workers-cv-section .workers-pagination-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
main .workers-cv-section .workers-pagination-separator {
  color: rgba(38, 66, 56, 0.55);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}
main .workers-cv-section .cv-card {
  border: 1px solid #e6e6e6;
  border-radius: 20px;
  background: #fff;
  padding: 20px 0;
  position: relative;
  transition: box-shadow 0.25s ease, transform 0.18s ease;
  overflow: visible;
  height: 100%;
}
main .workers-cv-section .cv-card:hover {
  z-index: 2;
}
main .workers-cv-section .cv-card .cv-img {
  width: min(176px, 100%);
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.09);
  border: 1px solid transparent;
  transition: box-shadow 0.2s ease, border 0.2s ease;
}
main .workers-cv-section .cv-card .cv-img:hover {
  border-color: #f6a713;
}
@media (max-width: 768px) {
  main .workers-cv-section .cv-card .cv-img {
    width: 100%;
    height: 270px;
  }
}
main .workers-cv-section .cv-card .cv-title {
  color: #1a3a2c;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.2px;
}
main .workers-cv-section .cv-card .cv-summary-link {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 14px;
}
main .workers-cv-section .cv-card .cv-summary-link:focus-visible {
  outline: 2px solid rgba(4, 59, 89, 0.22);
  outline-offset: 3px;
}
main .workers-cv-section .cv-card .cv-summary-link:hover .cv-title {
  color: #043b59;
}
main .workers-cv-section .cv-card .worker-id {
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 13px;
  color: #333;
  width: auto;
}
main .workers-cv-section .cv-card .cv-details {
  border: 2px dashed rgba(246, 167, 19, 0.18);
  border-radius: 16px;
  margin-top: 18px;
  padding: 22px 18px 14px;
  text-align: center;
  position: relative;
  min-height: 120px;
}
main .workers-cv-section .cv-card .cv-details .cv-details-grid {
  display: flex;
  margin-top: 10px;
  gap: 8px 18px;
}
main .workers-cv-section .cv-card .cv-details .cv-details-col {
  flex: 1 1 180px;
  min-width: 160px;
  text-align: right;
}
main .workers-cv-section .cv-card .cv-details .cv-detail-item {
  color: #f6a713;
  font-size: 12px;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-start;
  font-weight: 600;
}
main .workers-cv-section .cv-card .cv-details .cv-detail-item span {
  color: #1a3a2c;
  font-weight: 700;
  margin-right: 2px;
}
main .workers-cv-section .cv-card .cv-service-actions {
  margin-top: 12px;
  background: #fdf7ee;
  border-radius: 20px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
main .workers-cv-section .cv-card .cv-service-actions .cv-service-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(4, 59, 89, 0.18);
  background: #fff;
  color: #5d6571;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
main .workers-cv-section .cv-card .cv-service-actions .cv-service-icon svg,
main .workers-cv-section .cv-card .cv-service-actions .cv-service-icon path {
  fill: #5d6571;
  transition: all 0.2s ease;
}
main .workers-cv-section .cv-card .cv-service-actions .cv-service-icon:hover {
  color: #043b59;
  border-color: rgba(4, 59, 89, 0.45);
  transform: translateY(-1px);
}
main .workers-cv-section .cv-card .cv-service-actions .cv-service-icon:hover svg,
main .workers-cv-section .cv-card .cv-service-actions .cv-service-icon:hover path {
  fill: #043b59;
}
main .workers-cv-section .cv-card .cv-service-actions .cv-service-pill {
  flex: 1;
  background: #ececec;
  border-radius: 999px;
  min-height: 48px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  color: #232b33;
  font-size: 1.5rem;
  font-weight: 700;
}
main .workers-cv-section .cv-card .cv-service-actions .hero-btn .button-bg-layer-4 {
  background: rgba(4, 59, 89, 0.96) !important;
}
main .workers-cv-section .cv-card .cv-service-actions .hero-btn.secondary.ring-hover-btn:hover {
  color: #ffffff;
  border-color: rgba(4, 59, 89, 0.1);
}
main .workers-cv-section .cv-card .cv-service-actions .hero-btn.secondary.ring-hover-btn:hover .button-inner-hover {
  color: #ffffff;
}
main .workers-cv-section .cv-card .cv-service-actions .hero-btn.secondary.ring-hover-btn:hover .button-inner-static {
  opacity: 1;
  transform: none;
}
@media (max-width: 992px) {
  main .workers-cv-section .cv-service-tabs {
    --w-label: 150px;
    margin-bottom: 18px;
  }
  main .workers-cv-section .workers-pagination-wrap {
    margin-top: 18px;
    padding: 12px;
    justify-content: center;
    text-align: center;
  }
  main .workers-cv-section .workers-pagination-status {
    width: 100%;
  }
  main .workers-cv-section .workers-pagination-btn {
    min-width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 0.9rem;
  }
  main .workers-cv-section .cv-service-tabs--desktop {
    display: none;
  }
  main .workers-cv-section .cv-card {
    padding: 16px 0;
  }
  main .workers-cv-section .cv-card .row {
    row-gap: 12px;
  }
  main .workers-cv-section .cv-card .col-lg-8 {
    padding-inline: 14px;
  }
  main .workers-cv-section .cv-card .cv-title {
    margin-top: 6px;
  }
  main .workers-cv-section .cv-card .cv-details {
    margin-top: 14px;
    padding: 18px 14px 10px;
  }
  main .workers-cv-section .cv-card .cv-details .cv-details-grid {
    flex-direction: column;
    gap: 0;
  }
  main .workers-cv-section .cv-card .cv-details .cv-details-col {
    min-width: 100%;
    flex: auto;
  }
  main .workers-cv-section .cv-card .cv-service-actions .cv-service-pill {
    font-size: 1.1rem;
    min-height: 44px;
  }
  main .workers-cv-section .cv-card .cv-service-actions .cv-service-icon {
    width: 44px;
    height: 44px;
  }
}
@media (max-width: 576px) {
  main .workers-cv-section .cv-service-tabs {
    width: 100%;
    margin-bottom: 16px;
    justify-content: flex-start;
    --w-label: 132px;
  }
  main .workers-cv-section .cv-service-tabs .cv-service-tab {
    font-size: 0.86rem;
    padding: 10px 8px;
  }
  main .workers-cv-section .filter-mobile-bar {
    gap: 8px;
    padding: 8px;
  }
  main .workers-cv-section .cv-service-tabs--mobile {
    --w-label: 110px;
  }
  main .workers-cv-section .cv-card {
    border-radius: 16px;
    padding: 14px 0 12px;
  }
  main .workers-cv-section .cv-card .cv-img {
    height: 220px;
    border-radius: 12px;
  }
  main .workers-cv-section .cv-card .d-flex.justify-content-between {
    flex-wrap: wrap;
    gap: 8px;
  }
  main .workers-cv-section .cv-card .cv-title {
    text-align: right;
    font-size: 1rem;
  }
  main .workers-cv-section .cv-card .worker-id {
    font-size: 12px;
  }
  main .workers-cv-section .cv-card .cv-details {
    border-radius: 12px;
    padding-top: 20px;
  }
  main .workers-cv-section .cv-card .cv-details .cv-detail-item {
    justify-content: flex-start;
    font-size: 11px;
  }
  main .workers-cv-section .cv-card .cv-service-actions {
    padding: 8px;
    flex-wrap: wrap;
    gap: 8px;
  }
  main .workers-cv-section .cv-card .cv-service-actions .cv-service-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  main .workers-cv-section .cv-card .cv-service-actions .hero-btn {
    min-height: 40px;
  }
  main .workers-cv-section .cv-card .cv-service-actions .cv-service-pill {
    min-height: 40px;
    font-size: 0.95rem;
    padding: 0 12px;
  }
}
main .cvPage {
  position: relative;
  display: flex;
  gap: 12px;
  min-height: 100vh;
  margin: auto;
  background-color: #ffffff;
  isolation: isolate;
  width: 100%;
  max-width: 240mm;
  padding: 0 20px;
  margin: 90px auto;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  z-index: 11;
}
main .cvPage .logo-bg {
  position: absolute;
  width: 502px;
  left: 0px;
  top: 40px;
  text-align: end;
}
main .cvPage .logo-bg img {
  width: 300px;
}
main .cvPage .cv-side {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}
main .cvPage .hero-btn .button-bg-layer-4 {
  background: rgba(4, 59, 89, 0.96) !important;
}
main .cvPage .hero-btn.secondary.ring-hover-btn:hover {
  color: #ffffff;
  border-color: rgba(4, 59, 89, 0.1);
}
main .cvPage .hero-btn.secondary.ring-hover-btn:hover .button-inner-hover {
  color: #ffffff;
}
main .cvPage .hero-btn.secondary.ring-hover-btn:hover .button-inner-static {
  opacity: 1;
  transform: none;
}
main .cvPage .cv-footer {
  position: absolute;
  bottom: 0;
  right: 0px;
}
main .cvPage .cv-footer img {
  width: 100%;
}
main .cvPage .header-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: absolute;
  left: 0px;
  top: 0px;
}
main .cvPage .header-logo .transparent-logo {
  width: 50px;
  display: flex;
  justify-content: end;
}
main .cvPage .header-logo .transparent-logo img {
  width: 100%;
}
main .cvPage .header-logo .logo {
  width: 400px;
  padding: 12px 0;
}
main .cvPage .header-logo .logo img {
  width: 100%;
  height: auto;
}
main .cvPage .title,
main .cvPage .languages .title {
  text-transform: uppercase;
  color: black;
}
main .cvPage .languages .title {
  color: black;
}
main .cvPage table td {
  width: 25%;
  padding: 10px;
  border: 1px solid #ddd;
  vertical-align: middle;
}
main .cvPage table td svg {
  display: block;
  margin: 5px auto 0;
}
main .cvPage .notes-list {
  list-style-type: disc;
  margin: 20px;
}
main .cvPage .notes-list li {
  margin-bottom: 5px;
  font-size: 14px;
  color: #444;
}
main .cvPage .sub {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 12px;
  gap: 4px;
}
main .cvPage .sub .title {
  color: #413f3f;
}
main .cvPage .sub .dis {
  font-weight: bold;
  font-size: 18px;
  color: black;
}
@media (max-width: 768px) {
  main .cvPage .sub .dis {
    font-size: 12px;
  }
}
main .cvPage .special-img {
  background-color: rgba(165, 207, 241, 0.1019607843);
  border-bottom: none;
}
main .cvPage .special-img img {
  padding: 10px;
}
main .cvPage .bar-code {
  background-color: transparent;
}
main .cvPage .bar-code .dis {
  font-size: 12px;
}
main .cvPage .imageCol {
  position: relative;
  top: 0px;
  left: 10px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 200px;
}
@media (max-width: 768px) {
  main .cvPage .imageCol {
    min-width: 20%;
  }
}
main .cvPage .imageCol .mainInfo {
  background-color: rgba(165, 207, 241, 0.1019607843);
  border-radius: 5000px 5000px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 92px 24px 24px;
  height: 100%;
}
main .cvPage .imageCol .image {
  display: flex;
  border-radius: 100%;
  width: 200px;
  height: 200px;
  margin: -70px auto;
  position: relative;
  z-index: 2;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1882352941);
  background-color: #ffffff;
}
@media (max-width: 768px) {
  main .cvPage .imageCol .image {
    width: 100px;
    height: 100px;
  }
}
main .cvPage .imageCol .image::before, main .cvPage .imageCol .image::after {
  content: "";
  display: flex;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main .cvPage .imageCol .image::before {
  width: 110%;
  height: 110%;
  border: 2px solid #043b59;
}
main .cvPage .imageCol .image::after {
  width: 93%;
  height: 93%;
  border: 2px solid #043b59 20;
}
main .cvPage .imageCol .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  border-radius: 100%;
}
main .cvPage .imageCol .logo {
  margin-top: auto;
  width: 100%;
  height: 80px;
  padding: 12px 8px 8px;
}
@media (max-width: 768px) {
  main .cvPage .imageCol .logo {
    height: 60px;
  }
}
main .cvPage .imageCol .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main .cvPage .informationCol {
  flex: 2;
  padding: 150px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
@media (max-width: 768px) {
  main .cvPage .informationCol {
    min-width: 70%;
  }
}
main .cvPage .informationCol .head {
  position: absolute;
  top: 20px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
main .cvPage .informationCol .head .name {
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1;
  gap: 4px;
}
main .cvPage .informationCol .head .name h3 {
  color: #043b59;
  font-weight: bold;
  line-height: 32px;
  font-size: 26px;
}
@media (max-width: 768px) {
  main .cvPage .informationCol .head .name h3 {
    font-size: 18px;
  }
}
main .cvPage .informationCol .head .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
main .cvPage .informationCol .head .logo img {
  height: 60px;
}
@media (max-width: 768px) {
  main .cvPage .informationCol .head .logo img {
    height: 40px;
  }
}
main .cvPage .informationCol .head .logo .experiance {
  background-color: #043b59;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 13px;
  width: 100%;
  text-align: center;
  border-radius: 8px;
}
@media (max-width: 768px) {
  main .cvPage .informationCol .head .logo .experiance {
    padding: 4px 9px;
    font-size: 10px;
  }
}
main .cvPage .informationCol .category {
  display: flex;
  flex-direction: column;
}
main .cvPage .informationCol .category .title {
  display: flex;
  align-items: center;
  gap: 8px;
}
main .cvPage .informationCol .category .title span {
  padding: 8px 0 8px 24px;
}
main .cvPage .informationCol .category .title::before, main .cvPage .informationCol .category .title::after {
  content: "";
  display: flex;
  background-color: #043b59;
}
main .cvPage .informationCol .category .title::before {
  width: 20px;
  height: 40px;
  border-radius: 100px 0 0 100px;
}
main .cvPage .informationCol .category .title::after {
  height: 2px;
  flex: 1;
  border-radius: 10px;
}
main .cvPage .informationCol .category .infoRow {
  position: relative;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
main .cvPage .informationCol .category .infoRow .data {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px 16px;
  flex: 1 calc(30% - 8px);
  background-color: rgba(165, 207, 241, 0.1019607843);
  border-radius: 8px;
}
main .cvPage .informationCol .category .infoRow .data .innerTitle {
  color: #777;
}
main .cvPage .informationCol .category .infoRow .data .innerData {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-weight: bold;
}
main .cvPage .informationCol .category .passportData {
  padding-top: 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  height: -moz-max-content;
  height: max-content;
}
main .cvPage .informationCol .category .passportData .data {
  flex: 1;
  padding: 12px 24px;
  background-color: rgba(165, 207, 241, 0.1019607843);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  white-space: nowrap;
}
main .cvPage .informationCol .category .passportData .data h6 {
  color: #777;
}
main .cvPage .informationCol .category table {
  width: 100%;
}
main .cvPage .informationCol .category table td,
main .cvPage .informationCol .category table th {
  padding: 8px 12px;
  border: 1px solid rgba(165, 207, 241, 0.1019607843);
}
main .cvPage .passportNumbers {
  display: flex;
  align-items: center;
  border: 1px solid rgba(165, 207, 241, 0.1019607843);
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 8px;
}
main .cvPage .passportNumbers span {
  font-weight: bold;
}
main .cvPage #btnSave {
  padding: 10px 30px;
  font-size: 18px;
  background-color: #4caf50;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
main .cvPage .languages {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
main .cvPage .languages .Percentages {
  display: flex;
  gap: 16px;
  justify-content: space-around;
}
@media (max-width: 768px) {
  main .cvPage .languages .Percentages {
    flex-direction: column;
  }
}
main .cvPage .languages .Percentages .percentDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
main .cvPage .languages .Percentages .percentDiv h5 {
  color: black;
}
main .cvPage .percent {
  position: relative;
  width: 90px;
  height: 90px;
  overflow: hidden;
}
main .cvPage .percent .percentNum {
  position: absolute;
  width: 72px;
  height: 72px;
  z-index: 1;
  left: 50%;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background-color: #043b59 20;
  transform: translateX(-50%) translateY(-50%);
  font-size: 18px !important;
  font-weight: bold;
}
main .cvPage .percent .percentNum span {
  font-weight: normal;
  color: #777;
  font-size: 10.8px !important;
}
main .cvPage .percent .slice {
  position: absolute;
  width: 90px;
  height: 90px;
  clip: rect(0px, 90px, 90px, 45px);
}
main .cvPage .percent .bar {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(0deg);
}
main .cvPage .percent.p51 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p51 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p51 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p52 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p52 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p52 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p53 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p53 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p53 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p54 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p54 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p54 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p55 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p55 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p55 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p56 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p56 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p56 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p57 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p57 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p57 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p58 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p58 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p58 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p59 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p59 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p59 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p60 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p60 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p60 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p61 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p61 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p61 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p62 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p62 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p62 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p63 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p63 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p63 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p64 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p64 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p64 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p65 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p65 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p65 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p66 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p66 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p66 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p67 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p67 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p67 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p68 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p68 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p68 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p69 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p69 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p69 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p70 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p70 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p70 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p71 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p71 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p71 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p72 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p72 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p72 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p73 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p73 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p73 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p74 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p74 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p74 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p75 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p75 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p75 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p76 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p76 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p76 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p77 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p77 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p77 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p78 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p78 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p78 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p79 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p79 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p79 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p80 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p80 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p80 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p81 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p81 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p81 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p82 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p82 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p82 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p83 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p83 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p83 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p84 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p84 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p84 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p85 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p85 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p85 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p86 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p86 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p86 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p87 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p87 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p87 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p88 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p88 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p88 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p89 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p89 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p89 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p90 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p90 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p90 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p91 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p91 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p91 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p92 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p92 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p92 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p93 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p93 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p93 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p94 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p94 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p94 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p95 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p95 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p95 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p96 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p96 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p96 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p97 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p97 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p97 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p98 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p98 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p98 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p99 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p99 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p99 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p100 .slice {
  clip: rect(auto, auto, auto, auto);
}
main .cvPage .percent.p100 .bar:after {
  transform: rotate(180deg);
}
main .cvPage .percent.p100 .fill {
  position: absolute;
  border: 3.6px solid #043b59;
  width: 90px;
  height: 90px;
  clip: rect(0px, 45px, 90px, 0px);
  border-radius: 50%;
  transform: rotate(180deg);
}
main .cvPage .percent.p1 .bar {
  transform: rotate(3.6deg);
}
main .cvPage .percent.p2 .bar {
  transform: rotate(7.2deg);
}
main .cvPage .percent.p3 .bar {
  transform: rotate(10.8deg);
}
main .cvPage .percent.p4 .bar {
  transform: rotate(14.4deg);
}
main .cvPage .percent.p5 .bar {
  transform: rotate(18deg);
}
main .cvPage .percent.p6 .bar {
  transform: rotate(21.6deg);
}
main .cvPage .percent.p7 .bar {
  transform: rotate(25.2deg);
}
main .cvPage .percent.p8 .bar {
  transform: rotate(28.8deg);
}
main .cvPage .percent.p9 .bar {
  transform: rotate(32.4deg);
}
main .cvPage .percent.p10 .bar {
  transform: rotate(36deg);
}
main .cvPage .percent.p11 .bar {
  transform: rotate(39.6deg);
}
main .cvPage .percent.p12 .bar {
  transform: rotate(43.2deg);
}
main .cvPage .percent.p13 .bar {
  transform: rotate(46.8deg);
}
main .cvPage .percent.p14 .bar {
  transform: rotate(50.4deg);
}
main .cvPage .percent.p15 .bar {
  transform: rotate(54deg);
}
main .cvPage .percent.p16 .bar {
  transform: rotate(57.6deg);
}
main .cvPage .percent.p17 .bar {
  transform: rotate(61.2deg);
}
main .cvPage .percent.p18 .bar {
  transform: rotate(64.8deg);
}
main .cvPage .percent.p19 .bar {
  transform: rotate(68.4deg);
}
main .cvPage .percent.p20 .bar {
  transform: rotate(72deg);
}
main .cvPage .percent.p21 .bar {
  transform: rotate(75.6deg);
}
main .cvPage .percent.p22 .bar {
  transform: rotate(79.2deg);
}
main .cvPage .percent.p23 .bar {
  transform: rotate(82.8deg);
}
main .cvPage .percent.p24 .bar {
  transform: rotate(86.4deg);
}
main .cvPage .percent.p25 .bar {
  transform: rotate(90deg);
}
main .cvPage .percent.p26 .bar {
  transform: rotate(93.6deg);
}
main .cvPage .percent.p27 .bar {
  transform: rotate(97.2deg);
}
main .cvPage .percent.p28 .bar {
  transform: rotate(100.8deg);
}
main .cvPage .percent.p29 .bar {
  transform: rotate(104.4deg);
}
main .cvPage .percent.p30 .bar {
  transform: rotate(108deg);
}
main .cvPage .percent.p31 .bar {
  transform: rotate(111.6deg);
}
main .cvPage .percent.p32 .bar {
  transform: rotate(115.2deg);
}
main .cvPage .percent.p33 .bar {
  transform: rotate(118.8deg);
}
main .cvPage .percent.p34 .bar {
  transform: rotate(122.4deg);
}
main .cvPage .percent.p35 .bar {
  transform: rotate(126deg);
}
main .cvPage .percent.p36 .bar {
  transform: rotate(129.6deg);
}
main .cvPage .percent.p37 .bar {
  transform: rotate(133.2deg);
}
main .cvPage .percent.p38 .bar {
  transform: rotate(136.8deg);
}
main .cvPage .percent.p39 .bar {
  transform: rotate(140.4deg);
}
main .cvPage .percent.p40 .bar {
  transform: rotate(144deg);
}
main .cvPage .percent.p41 .bar {
  transform: rotate(147.6deg);
}
main .cvPage .percent.p42 .bar {
  transform: rotate(151.2deg);
}
main .cvPage .percent.p43 .bar {
  transform: rotate(154.8deg);
}
main .cvPage .percent.p44 .bar {
  transform: rotate(158.4deg);
}
main .cvPage .percent.p45 .bar {
  transform: rotate(162deg);
}
main .cvPage .percent.p46 .bar {
  transform: rotate(165.6deg);
}
main .cvPage .percent.p47 .bar {
  transform: rotate(169.2deg);
}
main .cvPage .percent.p48 .bar {
  transform: rotate(172.8deg);
}
main .cvPage .percent.p49 .bar {
  transform: rotate(176.4deg);
}
main .cvPage .percent.p50 .bar {
  transform: rotate(180deg);
}
main .cvPage .percent.p51 .bar {
  transform: rotate(183.6deg);
}
main .cvPage .percent.p52 .bar {
  transform: rotate(187.2deg);
}
main .cvPage .percent.p53 .bar {
  transform: rotate(190.8deg);
}
main .cvPage .percent.p54 .bar {
  transform: rotate(194.4deg);
}
main .cvPage .percent.p55 .bar {
  transform: rotate(198deg);
}
main .cvPage .percent.p56 .bar {
  transform: rotate(201.6deg);
}
main .cvPage .percent.p57 .bar {
  transform: rotate(205.2deg);
}
main .cvPage .percent.p58 .bar {
  transform: rotate(208.8deg);
}
main .cvPage .percent.p59 .bar {
  transform: rotate(212.4deg);
}
main .cvPage .percent.p60 .bar {
  transform: rotate(216deg);
}
main .cvPage .percent.p61 .bar {
  transform: rotate(219.6deg);
}
main .cvPage .percent.p62 .bar {
  transform: rotate(223.2deg);
}
main .cvPage .percent.p63 .bar {
  transform: rotate(226.8deg);
}
main .cvPage .percent.p64 .bar {
  transform: rotate(230.4deg);
}
main .cvPage .percent.p65 .bar {
  transform: rotate(234deg);
}
main .cvPage .percent.p66 .bar {
  transform: rotate(237.6deg);
}
main .cvPage .percent.p67 .bar {
  transform: rotate(241.2deg);
}
main .cvPage .percent.p68 .bar {
  transform: rotate(244.8deg);
}
main .cvPage .percent.p69 .bar {
  transform: rotate(248.4deg);
}
main .cvPage .percent.p70 .bar {
  transform: rotate(252deg);
}
main .cvPage .percent.p71 .bar {
  transform: rotate(255.6deg);
}
main .cvPage .percent.p72 .bar {
  transform: rotate(259.2deg);
}
main .cvPage .percent.p73 .bar {
  transform: rotate(262.8deg);
}
main .cvPage .percent.p74 .bar {
  transform: rotate(266.4deg);
}
main .cvPage .percent.p75 .bar {
  transform: rotate(270deg);
}
main .cvPage .percent.p76 .bar {
  transform: rotate(273.6deg);
}
main .cvPage .percent.p77 .bar {
  transform: rotate(277.2deg);
}
main .cvPage .percent.p78 .bar {
  transform: rotate(280.8deg);
}
main .cvPage .percent.p79 .bar {
  transform: rotate(284.4deg);
}
main .cvPage .percent.p80 .bar {
  transform: rotate(288deg);
}
main .cvPage .percent.p81 .bar {
  transform: rotate(291.6deg);
}
main .cvPage .percent.p82 .bar {
  transform: rotate(295.2deg);
}
main .cvPage .percent.p83 .bar {
  transform: rotate(298.8deg);
}
main .cvPage .percent.p84 .bar {
  transform: rotate(302.4deg);
}
main .cvPage .percent.p85 .bar {
  transform: rotate(306deg);
}
main .cvPage .percent.p86 .bar {
  transform: rotate(309.6deg);
}
main .cvPage .percent.p87 .bar {
  transform: rotate(313.2deg);
}
main .cvPage .percent.p88 .bar {
  transform: rotate(316.8deg);
}
main .cvPage .percent.p89 .bar {
  transform: rotate(320.4deg);
}
main .cvPage .percent.p90 .bar {
  transform: rotate(324deg);
}
main .cvPage .percent.p91 .bar {
  transform: rotate(327.6deg);
}
main .cvPage .percent.p92 .bar {
  transform: rotate(331.2deg);
}
main .cvPage .percent.p93 .bar {
  transform: rotate(334.8deg);
}
main .cvPage .percent.p94 .bar {
  transform: rotate(338.4deg);
}
main .cvPage .percent.p95 .bar {
  transform: rotate(342deg);
}
main .cvPage .percent.p96 .bar {
  transform: rotate(345.6deg);
}
main .cvPage .percent.p97 .bar {
  transform: rotate(349.2deg);
}
main .cvPage .percent.p98 .bar {
  transform: rotate(352.8deg);
}
main .cvPage .percent.p99 .bar {
  transform: rotate(356.4deg);
}
main .cvPage .percent.p100 .bar {
  transform: rotate(360deg);
}
main .cvPage .experienceYears {
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  background-color: #043b59;
  width: 100px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  flex-direction: column;
  gap: 2px;
  margin-right: auto;
}
main .cvPage .experienceYears span {
  margin-top: 4px;
  font-size: 40px;
  line-height: 30px;
}
main .cvPage .info_social {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
  padding: 12px 5px;
}
main .cvPage .info_social img {
  height: 110px;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  main .cvPage .info_social img {
    height: 90px;
  }
}
main .cvPage .data {
  display: flex;
  gap: 4px;
  align-items: center;
}
main .cvPage .data .innerTitle {
  color: #777;
}
main .cvPage .data .innerData {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-weight: bold;
}
main .cvPage .socialMedia {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  width: 100%;
}
main .cvPage .socialMedia a {
  border: 1px dashed #d1d1d1;
  padding: 4px;
  padding-left: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  min-width: -moz-fit-content;
  min-width: fit-content;
  gap: 8px;
  flex: 1;
  color: black;
}
main .request-success {
  padding: 0 0 80px;
  position: relative;
  transform: translateY(-170px);
  z-index: 11;
}
@media (max-width: 768px) {
  main .request-success {
    transform: translateY(-95px);
  }
}
main .request-success .success-header {
  margin-bottom: 40px;
}
main .request-success .success-header #lottie {
  width: 165px;
  height: 165px;
  margin: 0 auto;
}
main .request-success .success-header h2 {
  font-weight: 700;
}
main .request-success .success-header p {
  color: #777;
}
main .request-success .card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  flex-direction: unset;
}
main .request-success .card-box-container .card-box {
  height: 100%;
}
main .request-success .card-box-container .card-box.rate {
  padding-top: 24px;
  border-top: 1px dashed #ddd;
}
main .request-success .card-box-container .card-box .phone {
  display: flex;
  align-items: center;
  gap: 6px;
}
main .request-success .card-box-container .card-box .phone b {
  background: rgba(165, 207, 241, 0.1019607843);
  border: 1px dashed #ddd;
  font-size: 14px;
  padding: 4px 8px;
  color: #043b59;
  border-radius: 12px;
}
@media (max-width: 768px) {
  main .request-success .card-box-container .card-box .phone b {
    font-size: 12px;
  }
}
main .request-success .card-box-container .card-box .phone i {
  color: #043b59;
  font-size: 14px;
}
main .request-success .card-box-container .card-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  main .request-success .card-box-container .card-box h4 {
    font-size: 16px;
  }
  main .request-success .card-box-container .card-box h4 svg {
    width: 18px;
    height: 18px;
  }
}
main .request-success .card-box-container .card-box .order-id {
  background: rgba(165, 207, 241, 0.1019607843);
  border: 1px dashed #ddd;
  font-size: 14px;
  padding: 4px 8px;
  color: #043b59;
  border-radius: 12px;
  font-weight: bold;
  text-align: center;
  margin: 10px 0;
}
@media (max-width: 768px) {
  main .request-success .card-box-container .card-box .order-id {
    font-size: 12px;
  }
}
main .request-success .card-box-container .card-box .steps {
  margin-top: 10px;
}
main .request-success .card-box-container .card-box .steps ul {
  padding-right: 20px;
  list-style: decimal;
}
main .request-success .card-box-container .card-box .steps ul li {
  margin-bottom: 6px;
  font-size: 14px;
  padding-right: 10px;
  border-right: 2px solid #eee;
}
main .request-success .card-box-container .card-box .actions {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
main .request-success .card-box-container .card-box .actions .btn-success {
  background: #043b59;
  color: #fff;
  font-weight: 600;
}
main .request-success .card-box-container .card-box .actions .btn-success:hover {
  background: rgb(2.2451612903, 33.1161290323, 49.9548387097);
  transform: translateY(-2px) scale(1.02);
}
main .request-success .card-box-container .card-box .stars {
  display: flex;
  gap: 8px;
  font-size: 22px;
  color: #ccc;
  margin: 10px 0;
}
main .request-success .card-box-container .card-box .stars i {
  cursor: pointer;
  transition: 0.3s;
}
main .request-success .card-box-container .card-box .stars i:hover, main .request-success .card-box-container .card-box .stars i.active {
  color: #fbbf24;
}
main .request-success .card-box-container .card-box textarea {
  width: 100%;
  height: 100px;
  border-radius: 12px;
  padding: 10px;
  border: 1px solid #ddd;
  margin-top: 10px;
  resize: none;
}
main .request-success .card-box-container .card-box .char-count {
  text-align: left;
  font-size: 12px;
  color: #888;
  margin-top: 5px;
}
main .request-success .card-box-container .card-box .submit-review {
  margin-top: 10px;
  background: #00996d;
  color: #fff;
  border-radius: 10px;
  padding: 10px;
}
main .request-success .card-box-container .card-box .submit-review:hover {
  opacity: 0.9;
}
@media screen and (max-width: 567px) {
  main .request-success .hero-btn {
    min-width: auto;
  }
}
main .request-success .hero-btn .button-bg-layer-4 {
  background: #00996d !important;
}
main .request-success .hero-btn.secondary.ring-hover-btn:hover {
  color: #ffffff;
  border-color: rgba(4, 59, 89, 0.1);
}
main .request-success .hero-btn.secondary.ring-hover-btn:hover .button-inner-hover {
  color: #ffffff;
}
main .request-success .hero-btn.secondary.ring-hover-btn:hover .button-inner-static {
  opacity: 1;
  transform: none;
}
main .request-success .hero-btn.primary {
  background: #043b59;
}
main .request-success .hero-btn.primary.ring-hover-down-btn:hover .button-inner-static {
  opacity: 1;
  transform: none;
}
main .contact-page {
  padding: 72px 0 100px;
  /* ---- HEADER ---- */
}
main .contact-page .section-header {
  text-align: center;
  margin-bottom: 60px;
}
main .contact-page .section-header h1 {
  font-size: 38px;
  font-weight: 800;
  color: #043b59;
  margin-bottom: 14px;
  line-height: 1.25;
}
@media (max-width: 768px) {
  main .contact-page .section-header h1 {
    font-size: 26px;
  }
}
main .contact-page .section-header h1 span {
  color: #145b2d;
  position: relative;
}
main .contact-page .section-header p {
  font-size: 15.5px;
  color: #777777;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.85;
}
main .contact-page .contact-main {
  display: flex;
  align-items: stretch;
}
@media (max-width: 992px) {
  main .contact-page .contact-main {
    flex-direction: column;
  }
}
main .contact-page .contact-inner {
  position: relative;
}
main .contact-page .contact-inner:after {
  content: "";
  position: absolute;
  width: 482px;
  right: -15px;
  top: -40px;
  bottom: -40px;
  background-color: #f8fafc;
  z-index: -1;
}
main .contact-page .contact-info {
  margin-left: 95px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  main .contact-page .contact-info {
    margin-left: 40px;
  }
}
@media (max-width: 992px) {
  main .contact-page .contact-info {
    margin-left: 0;
    margin-bottom: 30px;
  }
}
main .contact-page .contact-info:before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -57px;
  z-index: -1;
  width: 0;
  height: 0;
  border-left: 57px solid transparent;
  border-right: 0px solid transparent;
  border-top: 57px solid #d8d8d8;
}
@media (max-width: 768px) {
  main .contact-page .contact-info:before {
    border-left: 0;
    border-right: 0;
    border-top: 57px solid #d8d8d8;
  }
}
main .contact-page .contact-info .contact-details {
  border-radius: 10px 10px 10px 0px;
  box-shadow: 0 4px 24px rgba(4, 59, 89, 0.07);
  padding: 20px;
  background-color: #fff;
}
main .contact-page .contact-info .contact-details .contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
main .contact-page .contact-info .contact-details {
  /* 💎 الكارد */
}
main .contact-page .contact-info .contact-details .c-info-column {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #eaeef2;
  transition: all 0.3s ease;
}
main .contact-page .contact-info .contact-details {
  /* ✨ hover */
}
main .contact-page .contact-info .contact-details .c-info-column:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(4, 59, 89, 0.08);
  border-color: rgba(165, 207, 241, 0.1019607843);
}
main .contact-page .contact-info .contact-details {
  /* 🔥 الأيقونة */
}
main .contact-page .contact-info .contact-details .c-info-icon {
  grid-column: 2;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(4, 59, 89, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #043b59;
  transition: 0.3s;
}
main .contact-page .contact-info .contact-details {
  /* 🎨 ألوان مختلفة */
}
main .contact-page .contact-info .contact-details .c-info-column:nth-child(2) .c-info-icon {
  background: rgba(0, 153, 109, 0.231372549);
  color: #145b2d;
}
main .contact-page .contact-info .contact-details .c-info-column:nth-child(3) .c-info-icon {
  background: rgba(246, 145, 30, 0.1);
  color: #f6911e;
}
main .contact-page .contact-info .contact-details {
  /* hover icon */
}
main .contact-page .contact-info .contact-details .c-info-column:hover .c-info-icon {
  transform: scale(1.08);
}
main .contact-page .contact-info .contact-details {
  /* 📝 النص */
}
main .contact-page .contact-info .contact-details .c-info-column h3 {
  grid-column: 1;
  font-size: 14px;
  font-weight: 700;
  color: #043b59;
  margin-bottom: 4px;
}
main .contact-page .contact-info .contact-details .c-info-column p {
  grid-column: 1;
  font-size: 13.5px;
  color: #777777;
  line-height: 1.6;
  margin: 0;
}
main .contact-page .contact-info .contact-details {
  /* 🔗 اللينكات */
}
main .contact-page .contact-info .contact-details .c-info-column a {
  color: #043b59;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}
main .contact-page .contact-info .contact-details .c-info-column a:hover {
  color: #f6911e;
}
main .contact-page {
  /* ---- FORM CARD ---- */
}
main .contact-page .contact-form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(4, 59, 89, 0.07);
  border: 1.5px solid #eaeef2;
  margin: 0 30px;
}
@media (max-width: 576px) {
  main .contact-page .contact-form-wrap {
    padding: 28px 20px;
    margin: 0;
  }
}
main .contact-page .contact-form-wrap .form-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1.5px solid #eaeef2;
}
main .contact-page .contact-form-wrap .form-head .form-head-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(4, 59, 89, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .contact-page .contact-form-wrap .form-head .form-head-icon svg {
  width: 24px;
  height: 24px;
  color: #043b59;
}
main .contact-page .contact-form-wrap .form-head h3 {
  font-size: 22px;
  font-weight: 800;
  color: #043b59;
  margin-bottom: 4px;
}
main .contact-page .contact-form-wrap .form-head p {
  font-size: 13.5px;
  color: #777777;
  line-height: 1.6;
}
main .contact-page .contact-form-wrap .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 576px) {
  main .contact-page .contact-form-wrap .form-row {
    grid-template-columns: 1fr;
  }
}
main .contact-page .contact-form-wrap .form-group {
  margin-bottom: 22px;
}
main .contact-page .contact-form-wrap .form-group label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: #043b59;
  margin-bottom: 8px;
}
main .contact-page .contact-form-wrap .form-group label .req {
  color: #e24b4a;
  font-size: 15px;
  line-height: 1;
}
main .contact-page .contact-form-wrap .form-group .input-wrap {
  position: relative;
}
main .contact-page .contact-form-wrap .form-group .input-wrap .input-icon {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #b0bec8;
  pointer-events: none;
  transition: color 0.2s;
}
main .contact-page .contact-form-wrap .form-group .input-wrap.has-icon input, main .contact-page .contact-form-wrap .form-group .input-wrap.has-icon select {
  padding-right: 42px;
}
main .contact-page .contact-form-wrap .form-group input, main .contact-page .contact-form-wrap .form-group select, main .contact-page .contact-form-wrap .form-group textarea {
  width: 100%;
  padding: 10px 16px;
  border: 1.5px solid #eaeef2;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: #2d3748;
  background: #f8fafc;
  transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
  outline: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
main .contact-page .contact-form-wrap .form-group input:hover, main .contact-page .contact-form-wrap .form-group select:hover, main .contact-page .contact-form-wrap .form-group textarea:hover {
  border-color: #c5d0dc;
}
main .contact-page .contact-form-wrap .form-group input:focus, main .contact-page .contact-form-wrap .form-group select:focus, main .contact-page .contact-form-wrap .form-group textarea:focus {
  border-color: #043b59;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(4, 59, 89, 0.07);
}
main .contact-page .contact-form-wrap .form-group input:focus ~ .input-icon, main .contact-page .contact-form-wrap .form-group select:focus ~ .input-icon, main .contact-page .contact-form-wrap .form-group textarea:focus ~ .input-icon {
  color: #043b59;
}
main .contact-page .contact-form-wrap .form-group input::-moz-placeholder, main .contact-page .contact-form-wrap .form-group select::-moz-placeholder, main .contact-page .contact-form-wrap .form-group textarea::-moz-placeholder {
  color: #bcc8d4;
}
main .contact-page .contact-form-wrap .form-group input::placeholder, main .contact-page .contact-form-wrap .form-group select::placeholder, main .contact-page .contact-form-wrap .form-group textarea::placeholder {
  color: #bcc8d4;
}
main .contact-page .contact-form-wrap .form-group input.is-valid, main .contact-page .contact-form-wrap .form-group select.is-valid, main .contact-page .contact-form-wrap .form-group textarea.is-valid {
  border-color: #145b2d;
  background: rgba(0, 153, 109, 0.03);
}
main .contact-page .contact-form-wrap .form-group input.is-error, main .contact-page .contact-form-wrap .form-group select.is-error, main .contact-page .contact-form-wrap .form-group textarea.is-error {
  border-color: #e24b4a;
  background: rgba(226, 75, 74, 0.03);
}
main .contact-page .contact-form-wrap .form-group textarea {
  resize: vertical;
  min-height: 10px;
  line-height: 1.7;
  padding: 14px 16px;
}
main .contact-page .contact-form-wrap .form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23777' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
  padding-left: 40px;
  cursor: pointer;
}
main .contact-page .contact-form-wrap .form-group .field-hint {
  display: none;
  font-size: 11.5px;
  margin-top: 6px;
  padding: 0 2px;
}
main .contact-page .contact-form-wrap .form-group .field-hint.error {
  display: block;
  color: #e24b4a;
}
main .contact-page .contact-form-wrap .form-group .field-hint.success {
  display: block;
  color: #145b2d;
}
main .contact-page .contact-form-wrap .char-count {
  font-size: 11px;
  color: #777777;
  text-align: left;
  margin-top: 5px;
  opacity: 0.7;
}
main .contact-page .contact-form-wrap .hero-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(100%);
  transition: transform 0.4s ease;
}
main .contact-page .contact-form-wrap .hero-btn:hover::before {
  transform: translateX(-100%);
}
main .contact-page .contact-form-wrap .hero-btn:active {
  transform: translateY(0);
  box-shadow: none;
}
main .contact-page .contact-form-wrap .hero-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}
main .contact-page .contact-form-wrap .hero-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
main .contact-page .contact-form-wrap .hero-btn .btn-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
main .contact-page .contact-form-wrap .hero-btn.loading .btn-text, main .contact-page .contact-form-wrap .hero-btn.loading svg {
  display: none;
}
main .contact-page .contact-form-wrap .hero-btn.loading .btn-spinner {
  display: block;
}
main .contact-page .contact-form-wrap .success-banner {
  display: none;
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 10px;
  background: #00996d;
  border: 1.5px solid rgba(0, 153, 109, 0.25);
  text-align: center;
}
main .contact-page .contact-form-wrap .success-banner.show {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
main .contact-page .contact-form-wrap .success-banner svg {
  width: 22px;
  height: 22px;
  color: #145b2d;
  flex-shrink: 0;
}
main .contact-page .contact-form-wrap .success-banner span {
  font-size: 14px;
  font-weight: 600;
  color: #145b2d;
}
main .contact-page {
  /* MAP */
}
main .contact-page .map-wrap {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #eaeef2;
  overflow: hidden;
}
main .contact-page {
  /* 🧠 container */
}
main .contact-page .map-container {
  position: relative;
  height: 220px;
}
main .contact-page {
  /* 🗺️ iframe */
}
main .contact-page .map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
main .contact-page {
  /* 🔥 overlay */
}
main .contact-page .map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 240, 245, 0.9), rgba(212, 229, 239, 0.9));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  opacity: 0;
  /* 👈 مخفي */
  transition: 0.3s ease;
}
main .contact-page {
  /* ✨ يظهر عند hover */
}
main .contact-page .map-container:hover .map-overlay {
  opacity: 1;
}
main .contact-page {
  /* 🔥 icon */
}
main .contact-page .map-overlay svg {
  width: 42px;
  height: 42px;
  stroke: #043b59;
  stroke-width: 1.5;
  fill: none;
}
main .contact-page {
  /* 📝 text */
}
main .contact-page .map-overlay span {
  font-size: 13px;
  font-weight: 600;
  color: #043b59;
}
main .contact-page {
  /* ---- RESPONSIVE ---- */
}
@media (max-width: 768px) {
  main .contact-page {
    padding: 48px 0 72px;
  }
  main .contact-page .section-header h1 {
    font-size: 28px;
  }
}
main #login,
main #register {
  min-height: 100vh;
  position: relative;
  background: #f5f7fa;
}
main #login .container-fluid,
main #register .container-fluid {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  main #login .container-fluid,
  main #register .container-fluid {
    grid-template-columns: 1fr;
  }
}
main #login .login-visual,
main #register .login-visual {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(1, 18, 50, 0.76), rgba(5, 24, 62, 0.91)), url("./../images/login.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  z-index: 3;
  animation: authVisualIntro 2.2s cubic-bezier(0.68, -0.1, 0.265, 1.1) forwards;
}
@media (max-width: 991px) {
  main #login .login-visual,
  main #register .login-visual {
    display: none;
    animation: none;
  }
}
main #login .visual-content,
main #register .visual-content {
  text-align: center;
  color: #ffffff;
}
main #login .visual-content .visual-icon,
main #register .visual-content .visual-icon {
  width: 200px;
  height: 200px;
  margin: 0 auto 18px;
}
main #login .visual-content .visual-icon img,
main #register .visual-content .visual-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main #login .visual-content h2,
main #register .visual-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
}
main #login .login-form-section,
main #register .login-form-section {
  min-height: 100vh;
  padding: 42px clamp(18px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 18% 5%, rgba(4, 59, 89, 0.08), transparent 34%), url("./../images/church-02.jpg") center/cover no-repeat;
  opacity: 0;
  transform: translateX(-18px) scale(0.985);
  animation: authFormIntro 0.7s ease 1.55s forwards;
}
@media (max-width: 991px) {
  main #login .login-form-section,
  main #register .login-form-section {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
main #login .auth-card,
main #register .auth-card {
  width: min(660px, 100%);
  border: 1px solid rgba(4, 59, 89, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  padding: 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
@media (max-width: 576px) {
  main #login .auth-card,
  main #register .auth-card {
    padding: 18px;
  }
}
main #login .auth-mobile-logo,
main #register .auth-mobile-logo {
  display: none;
  width: 86px;
  height: 86px;
  margin: 0 auto 12px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
}
main #login .auth-mobile-logo img,
main #register .auth-mobile-logo img {
  width: 56px;
  height: 56px;
  -o-object-fit: contain;
     object-fit: contain;
}
main #login .form-header,
main #register .form-header {
  margin-bottom: 16px;
}
main #login .form-header h1,
main #register .form-header h1 {
  font-size: clamp(1.55rem, 3.5vw, 2rem);
  font-weight: 800;
  color: #043b59;
  margin-bottom: 8px;
}
main #login .form-header p,
main #register .form-header p {
  margin: 0;
  color: #4f6072;
  line-height: 1.8;
  font-size: 0.95rem;
}
main #login form,
main #register form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
main #login .nebula-input,
main #register .nebula-input {
  position: relative;
}
main #login .nebula-input .input,
main #register .nebula-input .input {
  width: 100%;
  height: 60px;
  border: 1px solid #bcc7d2;
  border-radius: 8px;
  background: #f8fbfd;
  color: #2b3f53;
  font-size: 14px;
  padding: 28px 18px 10px 18px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
main #login .nebula-input .input:focus,
main #register .nebula-input .input:focus {
  border-color: #043b59;
  box-shadow: 0 0 0 3px rgba(4, 59, 89, 0.12);
}
main #login .nebula-input .input:not(:-moz-placeholder) + .user-label, main #register .nebula-input .input:not(:-moz-placeholder) + .user-label {
  transform: translateY(-28px);
  font-size: 0.78rem;
  color: #043b59;
}
main #login .nebula-input .input:focus + .user-label, main #login .nebula-input .input:not(:placeholder-shown) + .user-label,
main #register .nebula-input .input:focus + .user-label,
main #register .nebula-input .input:not(:placeholder-shown) + .user-label {
  transform: translateY(-28px);
  font-size: 0.78rem;
  color: #043b59;
}
main #login .nebula-input .user-label,
main #register .nebula-input .user-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 18px;
  color: #9da7b2;
  font-size: 14px;
  pointer-events: none;
  transition: 0.2s ease;
  padding: 0 4px;
}
main #login .nebula-input.with-icon .input,
main #register .nebula-input.with-icon .input {
  padding-right: 24px;
}
main #login .nebula-input.with-icon .field-icon,
main #register .nebula-input.with-icon .field-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #1f2a36;
  border: 0;
  background: transparent;
  padding: 0;
  line-height: 1;
  cursor: pointer;
}
main #login .nebula-input.with-prefix .input,
main #register .nebula-input.with-prefix .input {
  padding-right: 24px;
}
main #login .nebula-input.with-prefix .phone-prefix,
main #register .nebula-input.with-prefix .phone-prefix {
  position: absolute;
  top: 0;
  left: 0;
  height: 60px;
  width: 128px;
  border-right: 1px solid #bcc7d2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #394d61;
  direction: ltr;
  background: #f1f4f7;
  border-radius: 8px 0px 0px 8px;
}
main #login .nebula-input.with-prefix .phone-prefix img,
main #register .nebula-input.with-prefix .phone-prefix img {
  width: 24px;
  height: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
main #login .options,
main #register .options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 4px 0 2px;
}
main #login .remember-me,
main #register .remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
}
main #login .remember-me input,
main #register .remember-me input {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}
main #login .remember-me label,
main #register .remember-me label {
  margin: 0;
  color: #3e5266;
  font-size: 14px;
}
main #login .forgot-link,
main #register .forgot-link {
  color: #50657a;
  text-decoration: none;
  font-size: 14px;
}
main #login .forgot-link:hover,
main #register .forgot-link:hover {
  color: #043b59;
}
main #login .hero-btn,
main #register .hero-btn {
  width: 100%;
  min-height: 56px;
}
main #login .hero-btn .button-bg-layer-4,
main #register .hero-btn .button-bg-layer-4 {
  background: #043b59 !important;
}
main #login .signup-link,
main #register .signup-link {
  margin-top: 10px;
  text-align: center;
  color: #495d71;
}
main #login .signup-link a,
main #register .signup-link a {
  color: #043b59;
  font-weight: 700;
  text-decoration: none;
}
main #login .otp-code,
main #register .otp-code {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  direction: ltr;
}
main #login .otp-code__input,
main #register .otp-code__input {
  width: 100%;
  height: 58px;
  border: 1px solid #bcc7d2;
  border-radius: 10px;
  background: #f8fbfd;
  color: #23384e;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  direction: ltr;
  outline: 0;
  transition: 0.2s ease;
}
main #login .otp-code__input:focus,
main #register .otp-code__input:focus {
  border-color: #043b59;
  box-shadow: 0 0 0 3px rgba(4, 59, 89, 0.12);
}
main #login .otp-meta,
main #register .otp-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
main #login .otp-meta__timer,
main #register .otp-meta__timer {
  color: #5f7088;
  font-size: 14px;
  font-weight: 600;
}
main #login .otp-meta__resend,
main #register .otp-meta__resend {
  border: 0;
  background: transparent;
  color: #043b59;
  font-size: 14px;
  font-weight: 700;
  padding: 0;
}
main #login .otp-meta__resend:disabled,
main #register .otp-meta__resend:disabled {
  color: #95a2b6;
  cursor: not-allowed;
}
@media (max-width: 767px) {
  main #login .auth-mobile-logo,
  main #register .auth-mobile-logo {
    display: inline-flex;
  }
  main #login .auth-card,
  main #register .auth-card {
    border-radius: 14px;
  }
  main #login .otp-code,
  main #register .otp-code {
    gap: 8px;
  }
  main #login .otp-code__input,
  main #register .otp-code__input {
    height: 54px;
    font-size: 20px;
  }
  main #login .otp-meta,
  main #register .otp-meta {
    flex-direction: column;
    align-items: start;
  }
  main #login .nebula-input .input, main #login .nebula-input.with-prefix .phone-prefix,
  main #register .nebula-input .input,
  main #register .nebula-input.with-prefix .phone-prefix {
    height: 62px;
  }
  main #login .nebula-input .input,
  main #register .nebula-input .input {
    font-size: 1.45rem;
    padding-top: 22px;
  }
  main #login .nebula-input .user-label,
  main #register .nebula-input .user-label {
    top: 32px;
  }
  main #login .nebula-input.with-prefix .input,
  main #register .nebula-input.with-prefix .input {
    padding-right: 116px;
  }
  main #login .nebula-input.with-prefix .phone-prefix,
  main #register .nebula-input.with-prefix .phone-prefix {
    width: 100px;
  }
}
main #login #login-btn,
main #login #register-btn,
main #login #otp-btn,
main #register #login-btn,
main #register #register-btn,
main #register #otp-btn {
  min-height: 50px;
  border-radius: 12px;
  background: linear-gradient(130deg, #043b59, #00996d);
  border: 1px solid rgba(4, 59, 89, 0.15);
  box-shadow: 0 12px 24px rgba(4, 59, 89, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
main #login #login-btn:hover,
main #login #register-btn:hover,
main #login #otp-btn:hover,
main #register #login-btn:hover,
main #register #register-btn:hover,
main #register #otp-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(4, 59, 89, 0.24);
}
main #login #login-btn .button-bg,
main #login #login-btn .button-inner-hover,
main #login #register-btn .button-bg,
main #login #register-btn .button-inner-hover,
main #login #otp-btn .button-bg,
main #login #otp-btn .button-inner-hover,
main #register #login-btn .button-bg,
main #register #login-btn .button-inner-hover,
main #register #register-btn .button-bg,
main #register #register-btn .button-inner-hover,
main #register #otp-btn .button-bg,
main #register #otp-btn .button-inner-hover {
  display: none;
}
main #login #login-btn .btn-text,
main #login #register-btn .btn-text,
main #login #otp-btn .btn-text,
main #register #login-btn .btn-text,
main #register #register-btn .btn-text,
main #register #otp-btn .btn-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}
main #login #login-btn .button-inner-static,
main #login #register-btn .button-inner-static,
main #login #otp-btn .button-inner-static,
main #register #login-btn .button-inner-static,
main #register #register-btn .button-inner-static,
main #register #otp-btn .button-inner-static {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
main #login #login-btn .btn-loading,
main #login #register-btn .btn-loading,
main #login #otp-btn .btn-loading,
main #register #login-btn .btn-loading,
main #register #register-btn .btn-loading,
main #register #otp-btn .btn-loading {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-size: 0.96rem;
  font-weight: 700;
}
main #login #login-btn .spinner,
main #login #register-btn .spinner,
main #login #otp-btn .spinner,
main #register #login-btn .spinner,
main #register #register-btn .spinner,
main #register #otp-btn .spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: loginSpin 0.8s linear infinite;
}
main #login #login-btn.is-loading,
main #login #register-btn.is-loading,
main #login #otp-btn.is-loading,
main #register #login-btn.is-loading,
main #register #register-btn.is-loading,
main #register #otp-btn.is-loading {
  opacity: 0.95;
  cursor: wait;
  pointer-events: none;
}
main #login #login-btn.is-loading .button-inner-static,
main #login #register-btn.is-loading .button-inner-static,
main #login #otp-btn.is-loading .button-inner-static,
main #register #login-btn.is-loading .button-inner-static,
main #register #register-btn.is-loading .button-inner-static,
main #register #otp-btn.is-loading .button-inner-static {
  display: none;
}
main #login #login-btn.is-loading .btn-text,
main #login #register-btn.is-loading .btn-text,
main #login #otp-btn.is-loading .btn-text,
main #register #login-btn.is-loading .btn-text,
main #register #register-btn.is-loading .btn-text,
main #register #otp-btn.is-loading .btn-text {
  display: none;
}
main #login #login-btn.is-loading .btn-loading,
main #login #register-btn.is-loading .btn-loading,
main #login #otp-btn.is-loading .btn-loading,
main #register #login-btn.is-loading .btn-loading,
main #register #register-btn.is-loading .btn-loading,
main #register #otp-btn.is-loading .btn-loading {
  display: inline-flex;
}
main #login #login-btn:disabled,
main #login #register-btn:disabled,
main #login #otp-btn:disabled,
main #register #login-btn:disabled,
main #register #register-btn:disabled,
main #register #otp-btn:disabled {
  opacity: 0.95;
  cursor: wait;
}
main #login #login .auth-card,
main #register #login .auth-card {
  width: min(560px, 100%);
  padding: 18px;
}
main #login #login .form-header,
main #register #login .form-header {
  margin-bottom: 10px;
}
main #login #login .form-header h1,
main #register #login .form-header h1 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}
main #login #login .form-header p,
main #register #login .form-header p {
  font-size: 0.9rem;
}
main #login #login form,
main #register #login form {
  gap: 9px;
}
main #login #login .nebula-input .input,
main #register #login .nebula-input .input {
  height: 58px;
  font-size: 1.1rem;
  padding-top: 20px;
}
main #login #login .nebula-input .user-label,
main #register #login .nebula-input .user-label {
  top: 16px;
  font-size: 0.98rem;
}
main #login #login .nebula-input.with-prefix .phone-prefix,
main #register #login .nebula-input.with-prefix .phone-prefix {
  height: 58px;
  width: 98px;
  font-size: 1.25rem;
}
main #login #login .nebula-input.with-prefix .input,
main #register #login .nebula-input.with-prefix .input {
  padding-right: 112px;
}
main #login #login .options,
main #register #login .options {
  margin: 2px 0 0;
}
main #login #login .remember-me label,
main #register #login .remember-me label {
  font-size: 14px;
}
main #login #login .remember-me input,
main #register #login .remember-me input {
  width: 18px;
  height: 18px;
}
main #login #login .forgot-link,
main #register #login .forgot-link {
  font-size: 14px;
}
main #login #login .signup-link,
main #register #login .signup-link {
  margin-top: 6px;
  font-size: 0.92rem;
}
@keyframes loginSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes authVisualIntro {
  0% {
    left: 0;
    right: 0;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  55% {
    left: 0;
    right: 0;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    left: 0;
    right: 50%;
    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.12);
  }
}
@keyframes authFormIntro {
  from {
    opacity: 0;
    transform: translateX(-18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
main .profile {
  padding: 20px 0 60px;
  position: relative;
  z-index: 11;
}
main .profile .container {
  background: transparent;
  padding: 0;
  border-radius: 0;
}
main .profile .profile-account {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  font-size: 14px;
  color: #253044;
  transform: translateY(-100px);
}
main .profile .profile-account__sidebar {
  background: #fff;
  border: 1px solid rgba(4, 59, 89, 0.12);
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(4, 59, 89, 0.08);
  padding: 18px 14px;
  position: sticky;
  top: 195px;
}
main .profile .profile-account__sidebar h3 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 800;
  color: #17202f;
}
main .profile .profile-account__sidebar p {
  margin: 0 0 14px;
  font-size: 14px;
  color: #7a8497;
  line-height: 1.7;
}
main .profile .profile-account__menu {
  display: grid;
  gap: 8px;
  margin-top: 6px;
}
main .profile .profile-account__menu-item,
main .profile .profile-account__menu .profile-account__menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #0d2233;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.22s ease;
  border: 1px solid transparent;
}
main .profile .profile-account__menu-item i,
main .profile .profile-account__menu .profile-account__menu-item i {
  color: rgba(4, 59, 89, 0.8);
  width: 26px;
  display: inline-grid;
  place-items: center;
}
main .profile .profile-account__menu-item:hover,
main .profile .profile-account__menu .profile-account__menu-item:hover {
  transform: translateX(-4px);
  background: rgba(4, 59, 89, 0.04);
  border-color: rgba(4, 59, 89, 0.06);
}
main .profile .profile-account__menu-item.is-active,
main .profile .profile-account__menu .profile-account__menu-item.is-active {
  background: linear-gradient(135deg, rgba(4, 59, 89, 0.06), rgba(0, 153, 109, 0.03));
  color: #043b59;
  border-color: rgba(4, 59, 89, 0.1);
  box-shadow: 0 10px 28px rgba(4, 59, 89, 0.05);
}
main .profile .profile-account__menu-item.is-logout,
main .profile .profile-account__menu .profile-account__menu-item.is-logout {
  color: #dc2626;
}
main .profile .profile-account__menu-item.is-logout i,
main .profile .profile-account__menu .profile-account__menu-item.is-logout i {
  color: #dc2626;
}
main .profile .profile-account__menu .s-badge {
  margin-inline-start: auto;
  background: #f6911e;
  color: #ffffff;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .profile .profile-account__content {
  display: grid;
  gap: 14px;
  background: white;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(4, 59, 89, 0.08);
}
@media screen and (max-width: 576px) {
  main .profile .profile-account__content {
    padding: 0;
  }
  main .profile .profile-account__content .contracts-overview {
    padding: 14px 12px;
  }
}
main .profile .profile-account .profile-card {
  background: #fff;
  border: 1px solid rgba(4, 59, 89, 0.12);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 34px rgba(4, 59, 89, 0.06);
}
main .profile .profile-account .profile-card h4 {
  margin: 0 0 14px 0;
  font-size: clamp(18px, 2.5vw, 20px);
  font-weight: 700;
  color: #043b59;
}
main .profile .profile-account .profile-field-grid {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
@media screen and (max-width: 576px) {
  main .profile .profile-account .profile-field-grid {
    flex-direction: column;
  }
}
main .profile .profile-account .profile-field {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
main .profile .profile-account .profile-field span {
  color: #3e4a62;
  font-size: 12px;
  font-weight: 600;
}
main .profile .profile-account .profile-field input,
main .profile .profile-account .profile-field select {
  width: 100%;
  height: 44px;
  border-radius: 10px;
  border: 1px solid #d7dde8;
  background: #fff;
  color: #2d3650;
  font-size: 14px;
  padding: 0 14px;
  transition: 0.2s ease;
}
main .profile .profile-account .profile-field input:focus,
main .profile .profile-account .profile-field select:focus {
  outline: 0;
  border-color: rgba(4, 59, 89, 0.5);
  box-shadow: 0 0 0 3px rgba(4, 59, 89, 0.11);
}
main .profile .profile-account .profile-field small {
  color: #8e97aa;
  font-size: 14px;
}
main .profile .profile-account .profile-gender {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}
main .profile .profile-account .profile-gender > span {
  font-size: 14px;
  font-weight: 700;
  color: #23304a;
}
main .profile .profile-account .profile-gender label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: #49526a;
}
main .profile .profile-account .profile-gender label input {
  accent-color: #043b59;
  width: 14px;
  height: 14px;
}
main .profile .profile-account .profile-save-btn {
  width: 100%;
  border: 0;
  border-radius: 12px;
  min-height: 48px;
  padding: 10px 22px;
  background: linear-gradient(130deg, #043b59, #00996d);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  transition: 0.22s ease;
}
main .profile .profile-account .profile-save-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(4, 59, 89, 0.3);
}
main .profile .profile-account .orders-overview__head {
  margin-bottom: 12px;
}
main .profile .profile-account .orders-overview__head h4 {
  margin-bottom: 6px;
}
main .profile .profile-account .orders-overview__head p {
  margin: 0;
  font-size: 14px;
  color: #7b869a;
}
main .profile .profile-account .orders-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
main .profile .profile-account .orders-stat {
  border: 1px solid rgba(4, 59, 89, 0.12);
  border-radius: 12px;
  padding: 12px;
  background: #f9fbff;
  display: grid;
  gap: 5px;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
main .profile .profile-account .orders-stat:hover {
  box-shadow: 0 8px 24px rgba(4, 59, 89, 0.12);
}
main .profile .profile-account .orders-stat small {
  font-size: 14px;
  color: #79839a;
}
main .profile .profile-account .orders-stat strong {
  font-size: 18px;
  color: #043b59;
  line-height: 1;
}
main .profile .profile-account .orders-tools {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) 170px 170px 125px;
  gap: 10px;
}
main .profile .profile-account .orders-search-field {
  border: 1px solid #d7dde8;
  border-radius: 10px;
  height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  background: #fff;
}
main .profile .profile-account .orders-search-field i {
  color: #8190aa;
  font-size: 14px;
}
main .profile .profile-account .orders-search-field input {
  border: 0;
  outline: 0;
  width: 100%;
  background: transparent;
  font-size: 12px;
  color: #273148;
}
main .profile .profile-account .orders-select,
main .profile .profile-account .orders-reset-btn {
  height: 44px;
  border-radius: 10px;
  border: 1px solid #d7dde8;
  background: #fff;
  font-size: 14px;
  color: #273148;
  padding: 0 12px;
}
main .profile .profile-account .orders-select {
  cursor: pointer;
}
main .profile .profile-account .orders-reset-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: 0.2s ease;
}
main .profile .profile-account .orders-reset-btn:hover {
  border-color: rgba(4, 59, 89, 0.35);
  color: #043b59;
}
main .profile .profile-account .orders-status-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
main .profile .profile-account .orders-status-tab {
  border: 1px solid #d7dde8;
  background: #fff;
  color: #49546b;
  border-radius: 12px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  transition: 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
main .profile .profile-account .orders-status-tab__badge {
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #eaf0f7;
  color: #4f5f7b;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
}
main .profile .profile-account .orders-status-tab.is-active {
  border-color: transparent;
  background: #043b59;
  color: #fff;
  box-shadow: 0 8px 18px rgba(4, 59, 89, 0.26);
}
main .profile .profile-account .orders-status-tab.is-active .orders-status-tab__badge {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}
main .profile .profile-account .profile-security__list {
  display: grid;
  gap: 12px;
}
main .profile .profile-account .profile-security__item {
  border: 1px solid #d9e1ed;
  border-radius: 12px;
  background: #f7fafc;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
main .profile .profile-account .profile-security__item-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #e7eef4;
  color: #5a6982;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
main .profile .profile-account .profile-security__item-icon i {
  font-size: 16px;
}
main .profile .profile-account .profile-security__item-content h5 {
  margin: 0 0 14px;
  color: #223049;
  font-size: 13px;
  font-weight: 800;
}
main .profile .profile-account .profile-security__item-content p {
  margin: 0;
  color: #75839d;
  font-size: 12px;
}
main .profile .profile-account .profile-security__item-action {
  border: 1px solid #cfd8e6;
  background: #fff;
  color: #043b59;
  border-radius: 10px;
  min-height: 38px;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 700;
  transition: 0.2s ease;
}
main .profile .profile-account .profile-security__item-action:hover {
  border-color: rgba(4, 59, 89, 0.35);
  background: rgba(4, 59, 89, 0.05);
}
main .profile .profile-account .profile-security__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 700;
}
main .profile .profile-account .profile-security__status.is-enabled {
  background: #dcfce7;
  color: #0f7b49;
}
main .profile .profile-account .profile-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
}
main .profile .profile-account .profile-modal[hidden] {
  display: none;
}
main .profile .profile-account .profile-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 21, 46, 0.55);
  backdrop-filter: blur(2px);
}
main .profile .profile-account .profile-modal__panel {
  position: relative;
  width: min(520px, 100vw - 28px);
  margin: 10vh auto 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 46px rgba(7, 19, 40, 0.28);
  padding: 16px;
  display: grid;
  gap: 12px;
}
main .profile .profile-account .profile-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
main .profile .profile-account .profile-modal__header h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #1d273f;
}
main .profile .profile-account .profile-modal__header button {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  border: 1px solid #dce3ef;
  background: #fff;
  color: #5b6983;
}
main .profile .profile-account .profile-modal__form {
  display: grid;
  gap: 10px;
}
main .profile .profile-account .profile-modal__actions {
  display: flex;
  justify-content: end;
  gap: 8px;
  margin-top: 4px;
}
main .profile .profile-account .profile-modal__cancel, main .profile .profile-account .profile-modal__submit {
  min-height: 40px;
  border-radius: 10px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #d7dde8;
  transition: 0.2s ease;
}
main .profile .profile-account .profile-modal__cancel {
  background: #fff;
  color: #4c5972;
}
main .profile .profile-account .profile-modal__submit {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(130deg, #043b59, #00996d);
}
main .profile .profile-account .orders-results__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
main .profile .profile-account .orders-results__head h4,
main .profile .profile-account .orders-results__head p {
  margin: 0;
}
main .profile .profile-account .orders-results__head p {
  color: #69758e;
  font-size: 14px;
}
main .profile .profile-account .orders-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media screen and (max-width: 992px) {
  main .profile .profile-account .orders-list {
    grid-template-columns: 1fr;
  }
}
main .profile .profile-account .order-card {
  border: 1px solid rgba(4, 59, 89, 0.11);
  border-radius: 16px;
  padding: 16px;
  background: #fff;
  display: grid;
  gap: 12px;
}
main .profile .profile-account .order-card--compact {
  box-shadow: 0 10px 24px rgba(4, 59, 89, 0.06);
}
main .profile .profile-account .order-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
main .profile .profile-account .order-card__identity {
  display: flex;
  align-items: center;
  gap: 10px;
}
main .profile .profile-account .order-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(4, 59, 89, 0.08);
  color: #043b59;
  font-weight: 800;
  font-size: 14px;
  display: grid;
  place-items: center;
  text-transform: uppercase;
}
main .profile .profile-account .order-card__meta h5 {
  margin: 0 0 4px;
  font-size: 14px;
  color: #1d273f;
  font-weight: 800;
}
main .profile .profile-account .order-card__meta p {
  margin: 0;
  font-size: 13px;
  color: #72809a;
}
main .profile .profile-account .order-status {
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}
main .profile .profile-account .order-status.is-new {
  color: #334155;
  background: #e8edf5;
}
main .profile .profile-account .order-status.is-progress {
  color: #8a5a00;
  background: #fff6dd;
}
main .profile .profile-account .order-status.is-ready {
  color: #065f46;
  background: #dcfce7;
}
main .profile .profile-account .order-status.is-completed {
  color: #065f46;
  background: #dcfce7;
}
main .profile .profile-account .order-status.is-cancelled {
  color: #b42318;
  background: #fee4e2;
}
main .profile .profile-account .order-card__details {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  background: #f4f6f9;
}
@media screen and (max-width: 1200px) {
  main .profile .profile-account .order-card__details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
main .profile .profile-account .order-card__detail {
  display: grid;
  gap: 4px;
}
main .profile .profile-account .order-card__detail span {
  color: #8a96aa;
  font-size: 12px;
}
main .profile .profile-account .order-card__detail strong {
  color: #1f2a40;
  font-size: 13px;
  font-weight: 800;
}
main .profile .profile-account .order-progress {
  display: grid;
  gap: 7px;
}
main .profile .profile-account .order-progress__label {
  display: flex;
  justify-content: space-between;
  color: #52607b;
  font-size: 14px;
}
main .profile .profile-account .order-progress__track {
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(4, 59, 89, 0.1019607843);
  background: #f4f7fa;
  overflow: hidden;
}
main .profile .profile-account .order-progress__track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(130deg, #043b59, #0e5da8);
  transition: width 0.35s ease;
}
main .profile .profile-account .order-card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
main .profile .profile-account .order-action-link,
main .profile .profile-account .order-action-btn {
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(4, 59, 89, 0.2);
  color: #043b59;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s ease;
}
main .profile .profile-account .order-action-link {
  color: #ffffff;
  background: linear-gradient(130deg, #043b59, #00996d);
}
main .profile .profile-account .order-action-btn {
  background: #fff;
}
main .profile .profile-account .order-action-btn:hover {
  background: rgba(4, 59, 89, 0.06);
}
main .profile .profile-account .order-action-btn.is-danger {
  border-color: rgba(207, 47, 47, 0.35);
  color: #cf2f2f;
}
main .profile .profile-account .order-action-btn.is-danger:hover {
  background: #fff1f1;
}
main .profile .profile-account .orders-empty {
  border: 1px dashed #cad3e2;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: #7b879f;
}
main .profile .profile-account .orders-empty i {
  font-size: 20px;
  margin-bottom: 8px;
  color: #9aa6bf;
}
main .profile .profile-account .orders-empty h5 {
  margin: 0 0 5px;
  font-size: 14px;
  color: #2c3954;
}
main .profile .profile-account .orders-empty p {
  margin: 0;
  font-size: 14px;
}
main .profile .profile-account .orders-pagination {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
main .profile .profile-account .orders-pagination button {
  min-width: 85px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid #d7dde8;
  background: #fff;
  color: #34435d;
  font-size: 14px;
}
main .profile .profile-account .orders-pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
main .profile .profile-account .orders-pagination span {
  min-width: 72px;
  text-align: center;
  font-size: 14px;
  color: #66738d;
}
main .profile .profile-account .track-order-hero {
  background: linear-gradient(130deg, #f7fbff, #ffffff);
  border: 1px solid rgba(4, 59, 89, 0.1);
}
main .profile .profile-account .track-order-hero__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}
main .profile .profile-account .track-order-hero h4 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 800;
  color: #17202f;
}
main .profile .profile-account .track-order-hero p {
  margin: 0;
  color: #65728e;
  font-size: 14px;
}
main .profile .profile-account .track-order-hero__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
main .profile .profile-account .track-chip {
  padding: 7px 11px;
  border: 1px solid rgba(4, 59, 89, 0.16);
  border-radius: 999px;
  color: #214162;
  background: #f2f7fc;
  font-size: 12px;
  font-weight: 700;
}
main .profile .profile-account .track-order-finder__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 160px;
  gap: 10px;
  align-items: center;
}
main .profile .profile-account .track-order-finder__btn {
  min-height: 44px;
}
main .profile .profile-account .track-order-finder__feedback {
  margin: 10px 0 0;
  min-height: 22px;
  color: #0f5d40;
  font-size: 14px;
  font-weight: 600;
}
main .profile .profile-account .track-order-finder__feedback.is-error {
  color: #b42318;
}
main .profile .profile-account .track-order-quick {
  margin-top: 6px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
main .profile .profile-account .track-order-quick__item {
  border: 1px solid rgba(4, 59, 89, 0.16);
  background: #fff;
  border-radius: 12px;
  padding: 9px 11px;
  display: grid;
  gap: 2px;
  min-width: 116px;
  text-align: right;
  color: #2b3853;
  transition: 0.2s ease;
}
main .profile .profile-account .track-order-quick__item strong,
main .profile .profile-account .track-order-quick__item span {
  font-size: 12px;
}
main .profile .profile-account .track-order-quick__item span {
  color: #6a7791;
  font-weight: 600;
}
main .profile .profile-account .track-order-quick__item:hover, main .profile .profile-account .track-order-quick__item.is-active {
  border-color: #043b59;
  background: rgba(4, 59, 89, 0.06);
}
main .profile .profile-account .track-order-dashboard {
  display: grid;
  gap: 14px;
}
main .profile .profile-account .track-order-live__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}
main .profile .profile-account .track-order-live__top h4 {
  margin: 0 0 5px;
  color: #1b2741;
  font-size: 14px;
}
main .profile .profile-account .track-order-live__top p {
  margin: 0;
  color: #6a7791;
  font-size: 14px;
}
main .profile .profile-account .track-order-live__eyebrow {
  margin: 0 0 3px;
  color: #7f8aa0;
  font-size: 14px;
}
main .profile .profile-account .track-order-live__actions {
  display: grid;
  gap: 8px;
  justify-items: end;
}
main .profile .profile-account .track-order-live__meta {
  margin-top: 2px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
main .profile .profile-account .track-order-live__meta p {
  margin: 0;
  font-size: 14px;
  color: #596681;
}
main .profile .profile-account .track-order-live__meta p span {
  color: #27344d;
  font-weight: 700;
}
main .profile .profile-account .track-order-live__meta .track-copy-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
main .profile .profile-account .track-order-live__meta .track-copy-row strong {
  color: #27344d;
  font-weight: 800;
}
main .profile .profile-account .track-order-live__meta .track-copy-inline-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(4, 59, 89, 0.24);
  background: #fff;
  color: #043b59;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}
main .profile .profile-account .track-order-live__meta .track-copy-inline-btn:hover {
  background: rgba(4, 59, 89, 0.06);
}
main .profile .profile-account .track-order-live__meta .track-copy-inline-btn span {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
main .profile .profile-account .track-order-live__meta .track-copy-inline-btn.is-copied {
  width: auto;
  min-width: 64px;
  padding: 0 8px;
}
main .profile .profile-account .track-order-live__meta .track-copy-inline-btn span {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
main .profile .profile-account .track-order-live__meta .track-copy-inline-btn.is-copied {
  width: auto;
  min-width: 64px;
  padding: 0 8px;
}
main .profile .profile-account .track-order-live__cta {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
main .profile .profile-account .track-order-journey__head,
main .profile .profile-account .track-order-updates__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
main .profile .profile-account .track-order-journey__head h4,
main .profile .profile-account .track-order-updates__head h4 {
  margin: 0 0 14px 0;
  font-size: clamp(18px, 2.5vw, 20px);
  font-weight: 700;
  color: #043b59;
}
main .profile .profile-account .track-order-journey__head p,
main .profile .profile-account .track-order-updates__head p {
  margin: 0;
  color: #6d7b96;
  font-size: 14px;
}
main .profile .profile-account .track-order-journey__progress {
  margin-bottom: 14px;
}
main .profile .profile-account .track-order-journey__progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
main .profile .profile-account .track-order-journey__progress-top strong {
  color: #043b59;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
}
main .profile .profile-account .track-order-journey__progress-top span {
  color: #65748f;
  font-size: 14px;
  font-weight: 700;
}
main .profile .profile-account .track-order-journey__bar {
  height: 10px;
  border-radius: 999px;
  background: #f4f7fa;
  overflow: hidden;
  border: 1px solid rgba(4, 59, 89, 0.1019607843);
}
main .profile .profile-account .track-order-journey__bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(130deg, #0e5da8, #08a57a);
  transition: width 0.35s ease;
}
main .profile .profile-account .track-order-journey__track {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  padding-top: 12px;
}
main .profile .profile-account .track-order-journey__track::before {
  content: "";
  position: absolute;
  top: 35px;
  inset-inline-start: 60px;
  inset-inline-end: 60px;
  height: 2px;
  background: #d7e0ea;
  z-index: 0;
}
main .profile .profile-account .track-journey-step {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  text-align: center;
  display: grid;
  gap: 10px;
  justify-items: center;
}
main .profile .profile-account .track-journey-step__node {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #c8d3df;
  background: #eef3f8;
  color: #7b8ba3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(11, 38, 70, 0.08);
}
main .profile .profile-account .track-journey-step__node i {
  font-size: 14px;
}
main .profile .profile-account .track-journey-step__content h5 {
  margin: 0 0 4px;
  color: #24324c;
  font-size: 13px;
  font-weight: 800;
}
main .profile .profile-account .track-journey-step__content p {
  margin: 0;
  color: #74829b;
  font-size: 12px;
  line-height: 1.5;
}
main .profile .profile-account .track-journey-step__meta {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
main .profile .profile-account .track-journey-step.is-done .track-journey-step__node {
  border-color: rgba(8, 165, 122, 0.2);
  background: linear-gradient(130deg, #006f6d, #08a57a);
  color: #fff;
}
main .profile .profile-account .track-journey-step.is-current .track-journey-step__node {
  border-color: rgba(240, 141, 18, 0.3);
  background: #f08d12;
  color: #fff;
  box-shadow: 0 0 0 7px rgba(240, 141, 18, 0.2);
}
main .profile .profile-account .track-journey-step.is-current h5 {
  color: #d57608;
}
main .profile .profile-account .track-journey-step.is-pending .track-journey-step__node {
  color: #8d9cb4;
}
main .profile .profile-account .track-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}
main .profile .profile-account .track-pill.is-done {
  color: #0b6f4a;
  background: #dcfce7;
}
main .profile .profile-account .track-pill.is-current {
  color: #a45800;
  background: #ffedd5;
}
main .profile .profile-account .track-pill.is-pending {
  color: #607089;
  background: #e8edf5;
}
main .profile .profile-account .track-pill.is-date {
  border: 1px solid #ccd7e6;
  color: #607089;
  background: #f8fbff;
}
main .profile .profile-account .track-order-updates__list {
  display: grid;
  gap: 8px;
}
main .profile .profile-account .track-update-item {
  display: flex;
  gap: 10px;
  align-items: start;
  border: 1px solid #dde4f0;
  border-radius: 12px;
  padding: 10px 11px;
}
main .profile .profile-account .track-update-item__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-top: 7px;
  background: #0e5da8;
  box-shadow: 0 0 0 4px rgba(14, 93, 168, 0.13);
  flex-shrink: 0;
}
main .profile .profile-account .track-update-item h5 {
  margin: 0 0 3px;
  font-size: 14px;
  color: #1f2c46;
}
main .profile .profile-account .track-update-item p {
  margin: 0 0 3px;
  color: #66758f;
  font-size: 14px;
}
main .profile .profile-account .track-update-item small {
  color: #8a97b0;
  font-size: 14px;
}
@media screen and (max-width: 992px) {
  main .profile .profile-account .track-order-finder__form {
    grid-template-columns: 1fr 1fr;
  }
  main .profile .profile-account .track-order-finder__btn {
    grid-column: 1/-1;
  }
}
@media screen and (max-width: 768px) {
  main .profile .profile-account .track-order-journey__track::before {
    inset-inline-start: 35px;
    inset-inline-end: 35px;
  }
  main .profile .profile-account .track-journey-step__node {
    width: 38px;
    height: 38px;
  }
  main .profile .profile-account .track-journey-step__node i {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  main .profile .profile-account .profile-security__item {
    flex-wrap: nowrap;
  }
  main .profile .profile-account .profile-security__item-content {
    width: calc(100% - 60px);
  }
  main .profile .profile-account .profile-security__item-action, main .profile .profile-account .profile-security__status {
    margin-inline-start: auto;
  }
  main .profile .profile-account .track-order-hero__head {
    flex-direction: column;
    align-items: start;
  }
  main .profile .profile-account .track-order-finder__form {
    grid-template-columns: 1fr;
  }
  main .profile .profile-account .track-order-live__top {
    align-items: start;
  }
  main .profile .profile-account .track-order-live__actions {
    justify-items: start;
  }
  main .profile .profile-account .track-order-live__meta {
    grid-template-columns: 1fr;
  }
  main .profile .profile-account .track-order-journey__head,
  main .profile .profile-account .track-order-updates__head {
    flex-direction: column;
    align-items: start;
  }
  main .profile .profile-account .track-order-journey__progress-top strong {
    font-size: 16px;
  }
  main .profile .profile-account .track-order-journey__track {
    display: grid;
    gap: 14px;
    padding-top: 2px;
  }
  main .profile .profile-account .track-order-journey__track::before {
    top: 14px;
    bottom: 14px;
    right: 28px;
    height: auto;
    width: 2px;
    inset-inline-end: 28px;
    inset-inline-start: auto;
    right: 20px;
  }
  main .profile .profile-account .track-journey-step {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: start;
    gap: 8px;
    text-align: right;
    justify-items: stretch;
  }
  main .profile .profile-account .track-journey-step__node {
    width: 38px;
    height: 38px;
  }
  main .profile .profile-account .track-journey-step__meta {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 576px) {
  main .profile.contracts .profile-account__content {
    padding: 14px 12px;
  }
}
@media screen and (max-width: 992px) {
  main .profile .profile-account {
    grid-template-columns: 1fr;
  }
  main .profile .profile-account__sidebar {
    position: static;
    padding: 14px 12px;
    border-radius: 14px;
  }
  main .profile .profile-account__menu {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }
  main .profile .profile-account__menu::-webkit-scrollbar {
    height: 6px;
  }
  main .profile .profile-account__menu::-webkit-scrollbar-thumb {
    background: rgba(4, 59, 89, 0.2);
    border-radius: 999px;
  }
  main .profile .profile-account__menu-item,
  main .profile .profile-account__menu .profile-account__menu-item {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 8px 12px;
  }
}
@media screen and (max-width: 576px) {
  main .profile .profile-account {
    gap: 12px;
    transform: translateY(0);
    margin: 0 12px;
  }
  main .profile .profile-account .profile-card {
    padding: 14px;
  }
  main .profile .profile-account__sidebar {
    padding: 14px 12px;
  }
  main .profile .profile-account__menu {
    gap: 8px;
  }
  main .profile .profile-account__menu-item,
  main .profile .profile-account__menu .profile-account__menu-item {
    padding: 8px 10px;
    font-size: 13px;
  }
  main .profile .profile-account__menu-item i,
  main .profile .profile-account__menu .profile-account__menu-item i {
    width: 20px;
  }
  main .profile .profile-account .orders-stat-grid,
  main .profile .profile-account .order-card__meta {
    grid-template-columns: 1fr;
  }
  main .profile .profile-account .orders-tools {
    grid-template-columns: 1fr;
  }
  main .profile .profile-account .orders-status-tabs {
    overflow-x: auto;
    padding-bottom: 4px;
    flex-wrap: nowrap;
  }
  main .profile .profile-account .orders-status-tabs .orders-status-tab {
    white-space: nowrap;
  }
}
main .orders-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
}
main .orders-modal[hidden] {
  display: none;
}
main .orders-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 21, 46, 0.55);
  backdrop-filter: blur(2px);
}
main .orders-modal__panel {
  position: relative;
  width: min(540px, 100vw - 28px);
  margin: 7vh auto 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 46px rgba(7, 19, 40, 0.28);
  padding: 16px;
  display: grid;
  gap: 12px;
}
main .orders-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main .orders-modal__header h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}
main .orders-modal__header button {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  border: 1px solid #dce3ef;
  background: #fff;
  color: #5b6983;
}
main .orders-modal__meta {
  display: grid;
  gap: 6px;
}
main .orders-modal__meta p {
  margin: 0;
  font-size: 14px;
  color: #5d6982;
}
main .orders-modal__meta p span {
  font-weight: 700;
  color: #1d273f;
}
main .orders-modal__timeline {
  position: relative;
  display: grid;
  gap: 22px;
}
main .orders-modal__timeline::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 40px;
  right: 13px;
  inset-inline-end: 22px;
  width: 2px;
  background: #d7e0ea;
}
main .orders-modal__journey-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  text-align: right;
}
main .orders-modal__journey-node {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #c8d3df;
  background: #eef3f8;
  color: #7b8ba3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(11, 38, 70, 0.08);
}
main .orders-modal__journey-node i {
  font-size: 12px;
}
main .orders-modal__journey-content h5 {
  margin: 0 0 3px;
  font-size: 14px;
  font-weight: 800;
  color: #24324c;
}
main .orders-modal__journey-content p {
  margin: 0 0 6px;
  color: #74829b;
  font-size: 12px;
}
main .orders-modal__journey-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
main .orders-modal__journey-pill.is-done {
  color: #0b6f4a;
  background: #dcfce7;
}
main .orders-modal__journey-pill.is-current {
  color: #a45800;
  background: #ffedd5;
}
main .orders-modal__journey-pill.is-pending {
  color: #607089;
  background: #e8edf5;
}
main .orders-modal__journey-step.is-done .orders-modal__journey-node {
  border-color: rgba(8, 165, 122, 0.22);
  background: linear-gradient(130deg, #006f6d, #08a57a);
  color: #fff;
}
main .orders-modal__journey-step.is-current .orders-modal__journey-node {
  border-color: rgba(240, 141, 18, 0.3);
  background: #f08d12;
  color: #fff;
  box-shadow: 0 0 0 5px rgba(240, 141, 18, 0.2);
}
main .orders-modal__journey-step.is-current .orders-modal__journey-content h5 {
  color: #d57608;
}
main {
  /* ===== Modal ===== */
}
main .orders-modal__panel {
  width: min(680px, 100vw - 28px) !important;
  max-height: 88vh;
  overflow-y: auto;
  padding: 0 !important;
  gap: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}
main .orders-modal__header {
  padding: 18px 20px;
  border-bottom: 1px solid #edf0f6;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
  border-radius: 16px 16px 0 0;
}
main .orders-modal__header h4 {
  font-size: 16px !important;
}
main .orders-modal__body {
  padding: 20px;
  display: grid;
  gap: 20px;
}
main .orders-modal__timeline {
  padding: 0;
}
main {
  /* ===== Candidate Header ===== */
}
main .modal-candidate-header {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f7f9fc;
  border: 1px solid #e8edf5;
  border-radius: 14px;
  padding: 16px;
}
main .modal-candidate-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(4, 59, 89, 0.2), rgba(130, 132, 131, 0.15));
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  font-weight: 800;
  color: #043b59;
}
main .modal-candidate-name {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 4px;
}
main .modal-candidate-sub {
  font-size: 13px;
  opacity: 0.8;
  margin: 0;
}
main {
  /* ===== Status Badge ===== */
}
main .modal-status-badge {
  margin-right: auto;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: #e8edf5;
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #334155;
}
main .modal-status-badge.is-new {
  color: #334155;
  background: #e8edf5;
  border-color: rgba(51, 65, 85, 0.15);
}
main .modal-status-badge.is-progress {
  color: #8a5a00;
  background: #fff6dd;
  border-color: rgba(138, 90, 0, 0.15);
}
main .modal-status-badge.is-ready {
  color: #065f46;
  background: #dcfce7;
  border-color: rgba(6, 95, 70, 0.15);
}
main .modal-status-badge.is-completed {
  color: #065f46;
  background: #dcfce7;
  border-color: rgba(6, 95, 70, 0.15);
}
main .modal-status-badge.is-cancelled {
  color: #b42318;
  background: #fee4e2;
  border-color: rgba(180, 35, 24, 0.15);
}
main {
  /* ===== Layout ===== */
}
main .modal-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 520px) {
  main .modal-two-cols {
    grid-template-columns: 1fr;
  }
}
main {
  /* ===== Section Card ===== */
}
main .modal-section-card {
  background: #f7f9fc;
  border: 1px solid #e8edf5;
  border-radius: 14px;
  padding: 16px;
}
main .modal-section-title {
  font-size: 12px;
  font-weight: 700;
  color: #8a96aa;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
main .modal-section-title i {
  color: #043b59;
  font-size: 13px;
}
main {
  /* ===== Info Grid ===== */
}
main .modal-info-grid {
  display: grid;
  gap: 10px;
}
main .modal-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
main .modal-info-row .label {
  color: #8a96aa;
}
main .modal-info-row .value {
  font-weight: 700;
  color: #1f2a40;
}
main {
  /* ===== Financial ===== */
}
main .modal-financial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
main .modal-financial-item {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 10px;
  padding: 12px;
}
main .modal-financial-item small {
  display: block;
  font-size: 11px;
  color: #8a96aa;
  margin-bottom: 4px;
}
main .modal-financial-item strong {
  font-size: 15px;
  font-weight: 800;
  color: #043b59;
}
main .modal-financial-total {
  grid-column: 1/-1;
  background: rgba(130, 132, 131, 0.1);
  border: none;
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main .modal-financial-total small {
  color: #8a96aa;
  font-size: 12px;
  display: block;
  margin-bottom: 2px;
}
main .modal-financial-total strong {
  color: #043b59;
  font-size: 17px;
  font-weight: 800;
}
main .modal-financial-total .total-label {
  color: #00996d;
  font-size: 13px;
  font-weight: 600;
}
main {
  /* ===== Timeline Wrapper ===== */
}
main .modal-timeline-wrap {
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}
main .contactForm {
  padding: 70px 0;
}
@media (max-width: 768px) {
  main .contactForm {
    padding: 40px 0;
  }
}
main .contactForm .sideTitle {
  justify-content: center;
  font-weight: bold;
}
@media (max-width: 768px) {
  main .contactForm .sideTitle {
    text-align: center;
    padding-right: 0;
    padding-top: 50px;
  }
  main .contactForm .sideTitle::before {
    content: "";
    top: 0;
    right: calc(50% - 15px);
  }
}
main .contactForm form {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1254901961);
  background-color: rgba(255, 255, 255, 0.6392156863);
  padding: 20px;
  border-radius: 16px;
  position: relative;
}
main .contactForm form .form-control {
  background-color: transparent;
  border-color: rgba(29, 113, 184, 0.2784313725);
}
main .contactForm form .form-label {
  color: #555;
}
main .contactForm form .form-label i {
  color: #043b59;
}
main .contactForm .contactInfo {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main .contactForm .contactInfo .info {
  background-color: #ffffff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1254901961);
  margin: 8px 0;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative;
}
main .contactForm .contactInfo .info i {
  min-width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  border-radius: 100px;
  border: 1px dashed #043b59;
  color: #043b59;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
main .contactForm .contactInfo .info h6 {
  font-weight: bold;
  color: #777;
  margin-bottom: 8px;
  font-size: small;
}
main .contactForm .contactInfo .info:hover {
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1254901961);
  z-index: 2;
}
main .contactForm .contactInfo .info:hover i {
  background-color: rgba(29, 113, 184, 0.1882352941);
}

@keyframes phoneFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
@keyframes callCardEnter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes aboutFloatMain {
  0%, 100% {
    transform: rotate(-3deg) translateY(0);
  }
  50% {
    transform: rotate(-3deg) translateY(-8px);
  }
}
@keyframes aboutFloatSub {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.profile .contracts-overview__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .profile .contracts-overview__head {
    flex-direction: column;
    align-items: flex-start;
  }
}
.profile .contracts-overview__head h4 {
  margin: 0 0 14px 0;
  font-size: clamp(18px, 2.5vw, 20px);
  font-weight: 700;
  color: #043b59;
}
.profile .contracts-overview__head p {
  margin: 0;
  font-size: 13px;
  color: #6b7c8d;
}
.profile .filter-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.profile .f-tab {
  border: 1.5px solid rgba(4, 59, 89, 0.09);
  background: #ffffff;
  color: #6b7c8d;
  border-radius: 12px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.profile .f-tab .f-count {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 50px;
  background: #f4f7fa;
  color: #6b7c8d;
  font-size: 0.67rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.profile .f-tab:hover {
  border-color: #043b59;
  color: #043b59;
}
.profile .f-tab.is-active {
  background: #043b59;
  color: #ffffff;
  border-color: #043b59;
  box-shadow: 0 4px 14px rgba(4, 59, 89, 0.22);
}
.profile .f-tab.is-active .f-count {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}
.profile .contracts-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
  .profile .contracts-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .profile .contracts-stat-grid {
    grid-template-columns: 1fr;
  }
}
.profile .contracts-stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid rgba(4, 59, 89, 0.09);
  border-radius: 12px;
  padding: 12px;
  background: #f9fbff;
}
.profile .contracts-stat:hover {
  box-shadow: 0 8px 24px rgba(4, 59, 89, 0.12);
}
.profile .contracts-stat__header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.profile .contracts-stat__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: rgba(4, 59, 89, 0.1);
  color: #043b59;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.profile .contracts-stat__icon.warning {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}
.profile .contracts-stat__icon.danger {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
.profile .contracts-stat__icon.info {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.profile .contracts-stat__header h5 {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #6b7c8d;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 6px;
}
.profile .info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  font-size: 12px;
  color: #3b82f6;
  cursor: help;
  position: relative;
}
.profile .info-icon:hover::after {
  content: attr(title);
  position: absolute;
  bottom: 125%;
  right: -20px;
  background: #043b59;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 11px;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-weight: 500;
  font-style: normal;
}
.profile .info-icon:hover::before {
  content: "";
  position: absolute;
  bottom: 113%;
  right: 0;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #043b59;
  z-index: 10;
}
.profile .info-icon-table {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  font-size: 10px;
  color: #00996d;
  cursor: help;
  margin-right: 6px;
  position: relative;
}
.profile .info-icon-table:hover::after {
  content: attr(title);
  position: absolute;
  bottom: 120%;
  right: -35px;
  background: #043b59;
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 10px;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-weight: 500;
  font-style: normal;
}
.profile .info-icon-table:hover::before {
  content: "";
  position: absolute;
  bottom: 110%;
  right: 0;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 3px solid #043b59;
  z-index: 10;
}
.profile .contracts-stat__value {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #043b59;
}
.profile .contracts-stat__label {
  display: block;
  font-size: 12px;
  color: #6b7c8d;
  font-weight: 500;
}
.profile .contracts-table-section {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(4, 59, 89, 0.07);
  border: 1px solid rgba(4, 59, 89, 0.09);
}
.profile .contracts-table-section .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 992px) {
  .profile .contracts-table-section .table-responsive {
    border-radius: 16px;
  }
}
.profile .contracts-table-section .contracts-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
}
.profile .contracts-table-section .contracts-table thead {
  background: linear-gradient(90deg, #f8f9fb 0%, #f4f7fa 100%);
}
.profile .contracts-table-section .contracts-table thead tr {
  border-bottom: 2px solid #f0f4f8;
}
.profile .contracts-table-section .contracts-table thead th {
  padding: 16px;
  text-align: right;
  font-weight: 700;
  color: #043b59;
  font-size: 13px;
  text-transform: capitalize;
  white-space: nowrap;
}
.profile .contracts-table-section .contracts-table tbody tr {
  border-bottom: 1px solid #f0f4f8;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.profile .contracts-table-section .contracts-table tbody tr:hover {
  background: rgba(4, 59, 89, 0.03);
}
.profile .contracts-table-section .contracts-table tbody tr:last-child {
  border-bottom: none;
}
.profile .contracts-table-section .contracts-table tbody td {
  padding: 16px;
  color: #333;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .profile .contracts-table-section .contracts-table thead {
    display: none;
  }
  .profile .contracts-table-section .contracts-table tbody {
    display: block;
    width: 100%;
  }
  .profile .contracts-table-section .contracts-table tr {
    display: block;
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  }
  .profile .contracts-table-section .contracts-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border: none;
    font-size: 13px;
    gap: 10px;
  }
  .profile .contracts-table-section .contracts-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #043b59;
    font-size: 12px;
    flex: 1;
  }
  .profile .contracts-table-section .contracts-table td > * {
    text-align: left;
  }
  .profile .contracts-table-section .contracts-table td:not(:last-child) {
    border-bottom: 1px dashed #f1f1f1;
  }
  .profile .contracts-table-section .contracts-table td:first-child {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .profile .contracts-table-section .contracts-table .contract-worker {
    justify-content: flex-start;
  }
  .profile .contracts-table-section .contracts-table .action-buttons {
    justify-content: flex-end;
  }
}
.profile .contract-worker {
  display: flex;
  align-items: center;
  gap: 12px;
}
.profile .worker-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(4, 59, 89, 0.15), rgba(130, 132, 131, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #043b59;
  font-size: 16px;
  flex-shrink: 0;
}
.profile .worker-info {
  display: flex;
  flex-direction: column;
}
.profile .worker-info strong {
  font-size: 14px;
  color: #043b59;
  font-weight: 600;
}
.profile .worker-info small {
  font-size: 12px;
  color: #6b7c8d;
}
.profile .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}
.profile .badge-contract {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.profile .badge-contract.monthly {
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
}
.profile .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}
.profile .status-badge.active {
  background: rgba(0, 153, 117, 0.1);
  color: #009975;
}
.profile .status-badge.active .badge-dot {
  background: #009975;
}
.profile .status-badge.warning {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}
.profile .status-badge.warning .badge-dot {
  background: #f59e0b;
}
.profile .status-badge.expired {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
.profile .status-badge.expired .badge-dot {
  background: #ef4444;
}
.profile .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}
.profile .price {
  color: #043b59;
  font-size: 15px;
  font-weight: 700;
}
.profile .action-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.profile .btn-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(4, 59, 89, 0.15);
  background: transparent;
  color: #043b59;
  font-size: 14px;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
}
.profile .btn-icon:hover {
  background: rgba(4, 59, 89, 0.08);
  border-color: #043b59;
  transform: translateY(-2px);
}
.profile .btn-icon:active {
  transform: translateY(0);
}
.profile .contract-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1500;
}
.profile .contract-modal:not([hidden]) {
  display: grid;
  place-items: center;
}
.profile .contract-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  z-index: -1;
}
.profile .contract-modal__panel {
  background: #ffffff;
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  animation: slideUp 0.3s ease;
}
.profile .contract-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid rgba(4, 59, 89, 0.09);
  flex-shrink: 0;
}
.profile .contract-modal__header h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #043b59;
}
.profile .contract-modal__close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1.5px solid rgba(4, 59, 89, 0.15);
  background: transparent;
  color: #043b59;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.profile .contract-modal__close:hover {
  background: rgba(4, 59, 89, 0.08);
  border-color: #043b59;
}
.profile .contract-modal__content {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}
.profile .contract-detail-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.profile .worker-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: linear-gradient(135deg, #f8f9fb 0%, #f4f7fa 100%);
  border-radius: 16px;
  border: 1px solid rgba(4, 59, 89, 0.09);
}
@media (max-width: 480px) {
  .profile .worker-header {
    gap: 6px;
  }
}
.profile .worker-avatar-large {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(4, 59, 89, 0.2), rgba(130, 132, 131, 0.15));
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  color: #043b59;
  flex-shrink: 0;
}
.profile .worker-detail {
  flex: 1;
}
.profile .worker-detail h5 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 700;
  color: #043b59;
}
.profile .worker-detail p {
  margin: 0 0 8px 0;
  font-size: 13px;
  color: #6b7c8d;
}
.profile .contract-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}
.profile .info-item {
  padding: 12px;
  background: #f8f9fb;
  border-radius: 12px;
  border: 1px solid rgba(4, 59, 89, 0.09);
}
.profile .info-item .label {
  display: block;
  font-size: 12px;
  color: #6b7c8d;
  margin-bottom: 6px;
  font-weight: 500;
}
.profile .info-item strong {
  display: block;
  font-size: 14px;
  color: #043b59;
  font-weight: 700;
}
.profile .renewal-section {
  padding: 16px;
  background: linear-gradient(135deg, rgba(130, 132, 131, 0.05), rgba(0, 153, 117, 0.08));
  border-radius: 12px;
  border: 1px solid rgba(130, 132, 131, 0.2);
}
.profile .renewal-section h6 {
  margin: 0 0 12px 0;
  font-size: 13px;
  font-weight: 700;
  color: #043b59;
  text-transform: capitalize;
}
.profile .renewal-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
}
.profile .renewal-detail .price {
  color: #043b59;
  font-weight: 700;
}
.profile .renewal-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.profile .renewal-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1.5px solid rgba(4, 59, 89, 0.15);
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.profile .renewal-option input[type=radio] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #043b59;
}
.profile .renewal-option .option-content {
  flex: 1;
}
.profile .renewal-option .option-content strong {
  display: block;
  font-size: 14px;
  color: #043b59;
  font-weight: 700;
  margin-bottom: 4px;
}
.profile .renewal-option .option-content .price {
  display: block;
  font-size: 13px;
  color: #6b7c8d;
  font-weight: 600;
}
.profile .renewal-option:hover {
  border-color: #043b59;
  background: rgba(4, 59, 89, 0.02);
}
.profile .renewal-option input[type=radio]:checked + .option-content strong {
  color: #043b59;
}
.profile .renewal-history {
  padding: 12px;
  background: #f8f9fb;
  border-radius: 12px;
  border: 1px solid rgba(4, 59, 89, 0.09);
}
.profile .renewal-history h6 {
  margin: 0 0 12px 0;
  font-size: 13px;
  font-weight: 700;
  color: #043b59;
  text-transform: capitalize;
}
.profile .history-timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.profile .history-item {
  display: flex;
  gap: 12px;
  font-size: 13px;
}
.profile .history-item .date {
  font-weight: 700;
  color: #043b59;
  min-width: 90px;
}
.profile .history-item p {
  margin: 0;
  color: #6b7c8d;
}
.profile .contract-notes {
  border-radius: 10px;
}
.profile .contract-notes .note-text {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
}
.profile .contract-notes .note-text.active-text {
  background: rgba(130, 132, 131, 0.1);
  color: #009975;
}
.profile .contract-notes .note-text.warning-text {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}
.profile .contract-modal__footer {
  display: flex;
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid rgba(4, 59, 89, 0.09);
  flex-shrink: 0;
  background: #ffffff;
}
.profile .btn-secondary {
  flex: 1;
  padding: 12px 20px;
  border: 1.5px solid rgba(4, 59, 89, 0.2);
  border-radius: 10px;
  background: transparent;
  color: #043b59;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.profile .btn-secondary:hover {
  background: rgba(4, 59, 89, 0.08);
  border-color: #043b59;
}
.profile .contract-modal .hero-btn {
  flex: 1;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes serviceIconRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
body.page-ready main .hero-recruitment .hero-content,
body.page-ready main .hero-recruitment .hero-visual {
  animation: heroContentRise 0.72s ease-out both;
}

@keyframes heroContentRise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  main .hero-recruitment::before, main .hero-recruitment::after,
  main .hero-recruitment .hero-content,
  main .hero-recruitment .hero-visual {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
body.is-scrolled main .hero-recruitment {
  margin-top: 10px;
}

body.orders-modal-open {
  overflow: hidden;
}

body.profile-modal-open {
  overflow: hidden;
}

main .profile-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
}
main .profile-modal[hidden] {
  display: none;
}
main .profile-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 21, 46, 0.55);
  backdrop-filter: blur(2px);
}
main .profile-modal__panel {
  position: relative;
  width: min(520px, 100vw - 28px);
  margin: 10vh auto 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 46px rgba(7, 19, 40, 0.28);
  padding: 16px;
  display: grid;
  gap: 14px;
}
main .profile-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
main .profile-modal__header h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #1d273f;
}
main .profile-modal__header button {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  border: 1px solid #dce3ef;
  background: #fff;
  color: #5b6983;
}
main .profile-modal__form {
  display: grid;
  gap: 10px;
}
main .profile-modal__actions {
  display: flex;
  justify-content: end;
  gap: 8px;
}

.policies {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(4, 59, 89, 0.08);
}
.policies::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(4, 59, 89, 0) 0%, rgba(4, 59, 89, 0.08) 100%);
  pointer-events: none;
}
.policies-left {
  background: #f4f7fa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 5rem 6rem;
  position: relative;
  z-index: 2;
}
.policies-h1 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 900;
  color: #043b59;
  line-height: 1.25;
  margin-bottom: 1.1rem;
  letter-spacing: -0.012em;
  position: relative;
  text-wrap: balance;
}
.policies-desc {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.98rem;
  line-height: 1.9;
  max-width: 640px;
  margin-bottom: 2.1rem;
  position: relative;
  text-wrap: pretty;
}
.policies-downloads {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  position: relative;
}
.policies-right {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.policies-img-area {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 0;
}
.policies-img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  filter: brightness(0.56) saturate(1.12);
  transition: transform 7s ease;
  display: block;
}
.policies-right:hover .policies-img-area img {
  transform: scale(1.05);
}
.policies-img-overlay {
  position: absolute;
  inset: 0;
  top: 39px;
  background: linear-gradient(180deg, rgba(3, 45, 69, 0.08) 0%, rgba(3, 45, 69, 0.75) 100%), radial-gradient(circle at 82% 22%, rgba(20, 91, 45, 0.24), transparent 45%);
  z-index: 1;
}
.policies-stats-bar {
  background: #ffffff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 3px solid #043b59;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
.policies-stat {
  padding: 1.4rem 1.1rem;
  text-align: center;
  border-left: 1px solid #eaeef2;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.policies-stat:last-child {
  border-left: none;
}
.policies-stat:hover {
  background: rgba(4, 59, 89, 0.2);
}
.policies-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: #043b59;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.policies-stat-label {
  font-size: 0.75rem;
  color: #777777;
  font-weight: 600;
}
@media (max-width: 1200px) {
  .policies {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .policies-left {
    padding: 7rem 2.5rem 3rem;
  }
  .policies-right {
    min-height: 520px;
  }
}
@media (max-width: 900px) {
  .policies-left {
    padding: 6.5rem 1.3rem 2.3rem;
  }
  .policies-stat {
    padding: 1.2rem 0.8rem;
  }
  .policies-stat-num {
    font-size: 1.7rem;
  }
}
@media (max-width: 640px) {
  .policies-stats-bar {
    grid-template-columns: 1fr;
  }
}

.guidelines {
  padding: 6rem 5rem 8rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.guidelines .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.guidelines .section-tag {
  display: inline-flex;
  align-items: center;
  color: #043b59;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.guidelines .section-title {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 900;
  color: black;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.guidelines .section-desc {
  color: #777777;
  font-size: 0.98rem;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}
.guidelines .section-desc strong {
  color: #043b59;
}
.guidelines .countries-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5px;
  background: rgba(4, 59, 89, 0.18);
  border: 1px solid rgba(4, 59, 89, 0.16);
}
.guidelines .country-card {
  background: #ffffff;
  padding: 1.5rem 1.1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.guidelines .country-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 86px;
  height: 86px;
  background: rgba(4, 59, 89, 0.08);
  border-radius: 50%;
  transform: translate(30px, 30px);
  transition: all 0.45s ease;
}
.guidelines .country-card:hover {
  background: #f4f8fc;
}
.guidelines .country-card:hover::before {
  background: rgba(4, 59, 89, 0.12);
  width: 210px;
  height: 210px;
}
.guidelines .country-card .card-header,
.guidelines .country-card .card-header-overlay,
.guidelines .country-card .card-region-badge {
  display: none;
}
.guidelines .country-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
  height: 100%;
}
.guidelines .country-card .card-top {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.guidelines .country-card .card-flag-wrap,
.guidelines .country-card .card-flag-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(4, 59, 89, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 59, 89, 0.05);
  flex-shrink: 0;
  transition: border-color all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.guidelines .country-card .card-flag-wrap img,
.guidelines .country-card .card-flag-circle img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.guidelines .country-card:hover .card-flag-wrap, .guidelines .country-card:hover .card-flag-circle {
  border-color: rgba(4, 59, 89, 0.35);
}
.guidelines .country-card .card-name {
  font-size: 1rem;
  font-weight: 900;
  color: #043b59;
  line-height: 1.35;
  margin: 0;
  transition: color all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.guidelines .country-card:hover .card-name {
  color: #043b59;
}
.guidelines .country-card .card-links {
  display: flex;
  flex-direction: row;
  gap: 0.55rem;
  margin-top: auto;
}
.guidelines .country-card .card-link {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  padding: 8px 0.8rem;
  border: 1px solid rgba(4, 59, 89, 0.15);
  border-radius: 10px;
  text-decoration: none;
  color: #043b59;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  background: #eef3f8;
  flex: 1 1 0;
  min-width: 0;
}
.guidelines .country-card .card-link > i {
  font-size: 0.88rem;
  flex-shrink: 0;
}
.guidelines .country-card .card-link span:not(.card-link-arrow) {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.guidelines .country-card .card-link .card-link-arrow {
  margin-right: auto;
  display: inline-flex;
  width: 14px;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.guidelines .country-card .card-link:hover {
  border-color: #00996d;
  color: #00996d;
}
.guidelines .country-card .card-link:hover .card-link-arrow {
  opacity: 1;
  visibility: visible;
  width: 14px;
  transform: translateX(-3px) scaleX(-1);
}
.guidelines .country-card:hover .card-link {
  background: #edf3f8;
  border-color: rgba(4, 59, 89, 0.2);
  color: #043b59;
}
.guidelines .country-card:hover .card-link > i {
  color: #043b59;
}
.guidelines .country-card.is-hidden {
  display: none;
}
@media (max-width: 1200px) {
  .guidelines {
    padding: 5rem 2.2rem 6rem;
  }
  .guidelines .countries-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .guidelines .countries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .guidelines .countries-grid {
    grid-template-columns: 1fr;
  }
  .guidelines .card-name {
    font-size: 0.95rem;
  }
}

.info-strip {
  background: rgb(1.8064516129, 26.6451612903, 40.1935483871);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.info-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1589998059171-988d887df646?w=1400&q=50");
  background-size: cover;
  background-position: center;
  opacity: 0.06;
}
.info-strip-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem;
  gap: 0;
}
.info-strip .info-block {
  padding: 2rem 2.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative;
}
.info-strip .info-block:last-child {
  border-left: none;
}
.info-strip .info-block:hover {
  background: rgba(255, 255, 255, 0.04);
}
.info-strip .info-block::after {
  content: "";
  position: absolute;
  left: 2.5rem;
  right: 2.5rem;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(246, 145, 30, 0.65) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.info-strip .info-block:hover::after {
  opacity: 1;
}
.info-strip .info-block-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(246, 145, 30, 0.13);
  border: 1px solid rgba(246, 145, 30, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #f6911e;
  margin-bottom: 1.2rem;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.info-strip .info-block:hover .info-block-icon-wrap {
  background: #f6911e;
  color: #ffffff;
  border-color: #f6911e;
  transform: scale(1.08);
}
.info-strip .info-block-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.55rem;
}
.info-strip .info-block-desc {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.86rem;
  line-height: 1.8;
}
@media (max-width: 1200px) {
  .info-strip-inner {
    padding: 3rem 2.2rem;
  }
}
@media (max-width: 900px) {
  .info-strip-inner {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .info-strip .info-block {
    border-left: none;
  }
}

.recruitmentVisa {
  padding: 26px 0 80px;
  position: relative;
  z-index: 11;
}
.recruitmentVisa .visa-paper {
  position: relative;
  padding: clamp(16px, 2.2vw, 28px);
  border-radius: 22px;
  overflow: visible;
}
.recruitmentVisa .visa-head {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 1rem;
}
.recruitmentVisa .visa-head .visa-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 99px;
  border: 1px solid rgba(4, 59, 89, 0.2);
  color: #043b59;
  background: rgba(4, 59, 89, 0.06);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.recruitmentVisa .visa-head h1 {
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 900;
  color: #043b59;
  margin-bottom: 0.45rem;
}
.recruitmentVisa .visa-head p {
  max-width: 760px;
  margin: 0 auto;
  color: #777777;
  font-size: 0.95rem;
  line-height: 1.9;
}
.recruitmentVisa .row {
  position: relative;
  z-index: 1;
  margin-top: 1.2rem;
}
.recruitmentVisa .nav {
  display: grid;
  gap: 10px;
  align-content: start;
  position: sticky;
  top: 100px;
  align-self: start;
  z-index: 5;
  max-height: calc(100vh - 130px);
  overflow: auto;
  scrollbar-width: thin;
}
.recruitmentVisa .nav .nav-link {
  border: 1px solid rgba(4, 59, 89, 0.15);
  border-radius: 14px;
  background: #fff;
  color: #043b59;
  padding: 14px 10px;
  text-align: center;
  display: grid;
  gap: 7px;
  font-weight: 700;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative;
  overflow: hidden;
}
.recruitmentVisa .nav .nav-link i,
.recruitmentVisa .nav .nav-link p {
  position: relative;
  z-index: 1;
}
.recruitmentVisa .nav .nav-link i {
  font-size: 1.1rem;
}
.recruitmentVisa .nav .nav-link p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.7;
}
.recruitmentVisa .nav .nav-link:hover {
  border-color: rgba(4, 59, 89, 0.32);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(4, 59, 89, 0.08);
}
.recruitmentVisa .nav .nav-link.active {
  border-color: transparent;
  color: #ffffff;
  background: #043b59;
  box-shadow: 0 10px 18px rgba(4, 59, 89, 0.16);
}
.recruitmentVisa .nav .nav-link.active::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: 0;
  width: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.9);
}
.recruitmentVisa .tab-content {
  border-radius: 18px;
  border: 1px solid rgba(4, 59, 89, 0.14);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45), 0 8px 20px rgba(4, 59, 89, 0.06);
  min-height: 100%;
}
.recruitmentVisa .tab-pane {
  display: none;
  gap: 16px;
}
.recruitmentVisa .tab-pane.active {
  display: grid;
}
.recruitmentVisa .tab-pane.fade {
  transition: opacity 0.18s ease;
}
.recruitmentVisa .secondaryTitle {
  margin: 0;
  font-size: clamp(1.02rem, 1.65vw, 1.22rem);
  color: #043b59;
  font-weight: 800;
  line-height: 1.85;
}
.recruitmentVisa .thirdTitle {
  margin: 0;
  font-size: 0.95rem;
  color: #777777;
  line-height: 1.85;
}
.recruitmentVisa .thirdTitle a {
  color: #043b59;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}
.recruitmentVisa .thirdTitle a:hover {
  color: #f6911e;
}
.recruitmentVisa .step,
.recruitmentVisa .requirement {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(4, 59, 89, 0.14);
  background: #fff;
  padding: 16px 16px 14px;
  box-shadow: 0 8px 16px rgba(4, 59, 89, 0.05);
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.recruitmentVisa .step:hover,
.recruitmentVisa .requirement:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(4, 59, 89, 0.08);
}
.recruitmentVisa .step .head,
.recruitmentVisa .requirement .head {
  margin-bottom: 10px;
}
.recruitmentVisa .step .head h5,
.recruitmentVisa .requirement .head h5 {
  margin: 0;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(4, 59, 89, 0.08);
  color: #043b59;
  font-size: 1rem;
  font-weight: 800;
}
.recruitmentVisa .step .secondaryTitle,
.recruitmentVisa .requirement .secondaryTitle {
  margin-top: 8px;
  font-size: 0.94rem;
}
.recruitmentVisa .step .info,
.recruitmentVisa .requirement .info {
  margin-top: 8px;
  border-right: 3px solid rgba(246, 145, 30, 0.45);
  padding-right: 10px;
}
.recruitmentVisa .step .info p,
.recruitmentVisa .requirement .info p {
  margin: 0;
  color: #777777;
  font-size: 0.9rem;
  line-height: 1.95;
}
.recruitmentVisa .step ul,
.recruitmentVisa .requirement ul {
  margin: 10px 0 0;
  padding-right: 18px;
  display: grid;
  gap: 8px;
}
.recruitmentVisa .step ul li,
.recruitmentVisa .requirement ul li {
  color: #2b4058;
  font-size: 0.9rem;
  line-height: 1.8;
  padding: 6px 10px;
  border-radius: 9px;
  background: rgba(4, 59, 89, 0.04);
  border: 1px solid rgba(4, 59, 89, 0.09);
}
.recruitmentVisa .step + .step,
.recruitmentVisa .step + .requirement,
.recruitmentVisa .requirement + .step,
.recruitmentVisa .requirement + .requirement {
  margin-top: 2px;
}
.recruitmentVisa .requirement {
  border-color: rgba(246, 145, 30, 0.28);
  background: rgba(246, 145, 30, 0.04);
}
.recruitmentVisa .requirement .secondaryTitle {
  color: #9f5c00;
}
.recruitmentVisa .requirement ul li {
  border-color: rgba(246, 145, 30, 0.2);
  background: rgba(246, 145, 30, 0.08);
}
@media (max-width: 991px) {
  .recruitmentVisa .nav {
    grid-template-columns: 1fr 1fr;
  }
  .recruitmentVisa .nav .nav-link {
    min-height: 92px;
  }
}
@media (max-width: 767px) {
  .recruitmentVisa {
    padding: 16px 0 56px;
  }
  .recruitmentVisa .visa-paper {
    border-radius: 16px;
    padding: 12px;
  }
  .recruitmentVisa .nav {
    display: flex;
    position: static;
    max-height: none;
    overflow-x: auto;
    gap: 8px;
    flex-wrap: nowrap;
    padding-bottom: 2px;
    scrollbar-width: none;
  }
  .recruitmentVisa .nav::-webkit-scrollbar {
    display: none;
  }
  .recruitmentVisa .nav .nav-link {
    min-width: 220px;
    flex: 0 0 auto;
    min-height: auto;
  }
  .recruitmentVisa .tab-content {
    border-radius: 12px;
  }
  .recruitmentVisa .step,
  .recruitmentVisa .requirement {
    padding: 12px;
  }
  .recruitmentVisa .step ul,
  .recruitmentVisa .requirement ul {
    padding-right: 14px;
  }
  .recruitmentVisa .step ul li,
  .recruitmentVisa .requirement ul li {
    font-size: 0.86rem;
    padding: 5px 8px;
  }
}

.available {
  padding: 28px 0 18px;
  position: relative;
  z-index: 11;
}
.available h4 {
  text-align: center;
  color: #043b59;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.available .row {
  margin-top: 4px;
}
.available .col {
  min-width: 210px;
  flex: 1 1 25%;
}
.available .specifications {
  background: #fff;
  border: 1px solid rgba(4, 59, 89, 0.12);
  border-radius: 16px;
  min-height: 132px;
  padding: 18px 14px;
  text-align: center;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  box-shadow: 0 8px 18px rgba(4, 59, 89, 0.05);
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.available .specifications i {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #043b59;
  background: rgba(4, 59, 89, 0.08);
}
.available .specifications h5 {
  margin: 0;
  color: #243d57;
  font-size: 1rem;
  font-weight: 700;
}
.available .specifications:hover {
  transform: translateY(-3px);
  border-color: rgba(4, 59, 89, 0.26);
  box-shadow: 0 14px 22px rgba(4, 59, 89, 0.09);
}

.selectWorker {
  padding: 18px 0 8px;
}
.selectWorker .selectWorkerWrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(4, 59, 89, 0.12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(4, 59, 89, 0.06);
  overflow: hidden;
}
.selectWorker .selectWorkerImage {
  height: 100%;
}
.selectWorker .selectWorkerImage img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.selectWorker .selectWorkerContent {
  padding: 28px 26px;
}
.selectWorker .selectWorkerContent h3 {
  margin: 0 0 10px;
  color: #043b59;
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  font-weight: 800;
}
.selectWorker .selectWorkerContent p {
  margin: 0 0 10px;
  color: #777777;
  line-height: 1.95;
  font-size: 0.96rem;
}
.selectWorker .selectWorkerContent .hero-btn svg {
  transform: scaleX(-1);
}

.references {
  padding-block: 40px;
  background-image: linear-gradient(rgba(1, 18, 50, 0.76), rgba(5, 24, 62, 0.91)), url(../images/countries.webp);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}
.references .swiper-slide {
  width: auto;
}
.references .referenceLogo {
  height: 150px;
  padding: 10px 20px;
}
.references .referenceLogo img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.references .referenceLogo img:hover {
  filter: brightness(0) invert(1) drop-shadow(0 0 4px rgba(255, 255, 255, 0.8));
}

@media (max-width: 991px) {
  .available .col {
    min-width: 46%;
  }
  .arriveWorker .arriveWorkerWrapper {
    grid-template-columns: 1fr;
  }
  .arriveWorker .arriveWorkerImage img {
    min-height: 300px;
  }
}
@media (max-width: 575px) {
  .available {
    padding-top: 20px;
  }
  .available .col {
    min-width: 100%;
  }
  .available .specifications {
    min-height: 110px;
  }
  .arriveWorker .arriveWorkerWrapper {
    border-radius: 16px;
  }
  .arriveWorker .arriveWorkerImage img {
    min-height: 245px;
  }
  .arriveWorker .arriveWorkerContent {
    padding: 18px 14px;
  }
  .arriveWorker .arriveWorkerContent p {
    font-size: 0.92rem;
  }
  .arriveWorker .arriveWorkerContent .defaultBtn {
    width: 100%;
  }
  .references .referenceLogo {
    height: 98px;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .policies,
  .policies *,
  .guidelines .country-card,
  .guidelines .country-card *,
  .info-strip .info-block,
  .info-strip .info-block *,
  .recruitmentVisa .nav-link,
  .recruitmentVisa .nav-link *,
  .recruitmentVisa .step,
  .recruitmentVisa .step *,
  .recruitmentVisa .requirement,
  .recruitmentVisa .requirement * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.faq-section {
  position: relative;
  padding: 5rem 1.5rem;
  background: #ffffff;
  overflow: hidden;
}
.faq-section::before {
  content: "";
  position: absolute;
  background: url(../images/dots.png) no-repeat;
  background-position: 110%;
  background-position: left;
  pointer-events: none;
  inset: 0;
  background-size: contain;
  opacity: 0.06;
  pointer-events: none;
}
@media (max-width: 768px) {
  .faq-section::before {
    width: 250px;
    height: 250px;
  }
}
.faq-section::before .contaibner {
  position: relative;
  z-index: 1;
}
.faq-section .faq-header {
  text-align: center;
  margin-bottom: 3rem;
}
.faq-section .faq-header__title {
  font-size: 2rem;
  font-weight: 700;
  color: black;
  margin-bottom: 0.5rem;
}
.faq-section .faq-header__line {
  width: 60px;
  height: 3px;
  background: #043b59;
  margin: 0.75rem auto 0;
  border-radius: 10px;
}
.faq-section {
  /* ===== ACCORDION ===== */
}
.faq-section .accordion {
  max-width: 800px;
  margin: 0 auto;
}
.faq-section .accordion-item {
  background: #ffffff;
  border: 1px solid rgba(4, 59, 89, 0.14);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-section .accordion-item:hover {
  border-color: rgba(4, 59, 89, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.faq-section .accordion-item.active .accordion-question i {
  transform: rotate(180deg);
}
.faq-section .accordion-item.active .accordion-answer {
  max-height: 300px;
  padding: 1.2rem 1.5rem;
  border-top: 1px solid rgba(4, 59, 89, 0.2);
}
.faq-section .accordion-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: black;
  transition: background 0.2s;
}
.faq-section .accordion-question:hover {
  background: rgba(4, 59, 89, 0.1);
}
.faq-section .accordion-question i {
  color: #043b59;
  font-size: 1rem;
  transition: transform 0.3s;
}
.faq-section .accordion-answer {
  max-height: 0;
  padding: 0 1.5rem;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  color: rgba(0, 0, 0, 0.8);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-section {
  /* ===== CTA ===== */
}
.faq-section .faq-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
}
.faq-section .faq-cta p {
  color: #828483;
  margin-bottom: 1rem;
}
.faq-section {
  /* ===== Responsive ===== */
}
@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 1rem;
  }
  .faq-section .accordion-question {
    padding: 1rem;
    font-size: 0.9rem;
  }
  .faq-section .accordion-item.active .accordion-answer {
    padding: 0 1rem 1rem;
  }
}

.arriveWorker {
  padding: 0px 0 80px;
  position: relative;
  z-index: 11;
  margin-top: -80px;
}
@media (max-width: 992px) {
  .arriveWorker {
    margin-top: 0;
  }
}
.arriveWorker .arriveWorkerWrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 992px) {
  .arriveWorker .arriveWorkerWrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.arriveWorker .arriveWorkerImage img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(4, 59, 89, 0.16);
}
.arriveWorker .arriveWorkerContent h3 {
  color: #043b59;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
}
.arriveWorker .arriveWorkerContent p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}
.arriveWorker .arriveWorkerContent .defaultBtn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid #043b59;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.arriveWorker .arriveWorkerContent .defaultBtn i {
  margin-right: 8px;
}
.arriveWorker .arriveWorkerContent .defaultBtn:hover {
  background: #043b59;
  color: #ffffff;
}

.site-footer {
  background: linear-gradient(rgba(1, 18, 50, 0.76), rgba(5, 24, 62, 0.91));
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 30px;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.site-footer__brand img {
  height: 70px;
  margin-bottom: 16px;
}
.site-footer__brand p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}
.site-footer__col h4 {
  color: #f6911e;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.site-footer__col ul {
  display: grid;
  gap: 10px;
}
.site-footer__col ul li {
  color: rgba(255, 255, 255, 0.65);
}
.site-footer__col ul a {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.2s ease-in-out;
}
.site-footer__col ul a:hover {
  color: #f6911e;
}
.site-footer__bottom {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
}
.site-footer__social {
  display: flex;
  gap: 10px;
}
.site-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transition: 0.2s ease-in-out;
}
.site-footer__social a:hover {
  background: #043b59;
  color: #ffffff;
}
@media screen and (max-width: 992px) {
  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */main.service-request-page {
  background:
    radial-gradient(circle at top right, rgba(246, 145, 30, 0.10), transparent 26%),
    linear-gradient(180deg, #f5f8fb 0%, #ffffff 30%, #f7fafc 100%);
}

main .service-request-overview,
main .service-request-steps,
main .service-request-form-section {
  padding: 72px 0;
}

main .service-request-overview {
  padding-bottom: 36px;
}

main .service-request-steps {
  padding-top: 36px;
  padding-bottom: 36px;
}

main .service-request-form-section {
  padding-top: 36px;
  padding-bottom: 96px;
}

main .service-request-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

main .service-request-intro,
main .service-request-panel,
main .service-request-shell,
main .service-request-step,
main .service-request-note {
  position: relative;
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(4, 59, 89, 0.08);
  box-shadow: 0 24px 60px rgba(4, 59, 89, 0.08);
  overflow: hidden;
}

main .service-request-intro::before,
main .service-request-panel::before,
main .service-request-shell::before,
main .service-request-step::before,
main .service-request-note::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #043b59 0%, #0f6e9f 56%, #f6911e 100%);
}

main .service-request-intro {
  padding: 42px;
}

main .service-request-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(246, 145, 30, 0.14);
  color: #043b59;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}

main .service-request-title {
  margin: 0 0 18px;
  color: #043b59;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
  font-weight: 800;
}

main .service-request-title span {
  color: #f6911e;
}

main .service-request-text {
  margin: 0;
  color: #5f6f7d;
  font-size: 16px;
  line-height: 1.95;
}

main .service-request-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

main .service-request-highlight {
  padding: 22px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(4, 59, 89, 0.03), rgba(4, 59, 89, 0.07));
  border: 1px solid rgba(4, 59, 89, 0.08);
}

main .service-request-highlight .icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #043b59;
  color: #fff;
  font-size: 20px;
  margin-bottom: 16px;
}

main .service-request-highlight h3 {
  margin: 0 0 10px;
  color: #043b59;
  font-size: 18px;
  font-weight: 800;
}

main .service-request-highlight p {
  margin: 0;
  color: #647684;
  font-size: 14px;
  line-height: 1.8;
}

main .service-request-panel {
  padding: 34px 28px;
}

main .service-request-panel h3 {
  margin: 0 0 18px;
  color: #043b59;
  font-size: 22px;
  font-weight: 800;
}

main .service-request-panel p {
  color: #607280;
  line-height: 1.9;
}

main .service-request-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

main .service-request-list li {
  position: relative;
  padding-inline-start: 30px;
  margin-bottom: 14px;
  color: #516572;
  line-height: 1.9;
}

main .service-request-list li:last-child {
  margin-bottom: 0;
}

main .service-request-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  position: absolute;
  inset-inline-start: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f6911e;
  font-size: 12px;
}

main .service-request-panel__meta {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(4, 59, 89, 0.08);
  display: grid;
  gap: 16px;
}

main .service-request-panel__meta strong {
  display: block;
  margin-bottom: 6px;
  color: #043b59;
  font-size: 15px;
}

main .service-request-panel__meta span {
  color: #6f7f8b;
  font-size: 14px;
}

main .service-request-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

main .service-request-step {
  padding: 30px 24px 26px;
}

main .service-request-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(246, 145, 30, 0.14);
  color: #043b59;
  font-size: 18px;
  font-weight: 800;
}

main .service-request-step h3 {
  margin: 0 0 10px;
  color: #043b59;
  font-size: 18px;
  font-weight: 800;
}

main .service-request-step p {
  margin: 0;
  color: #647684;
  font-size: 14px;
  line-height: 1.85;
}

main .service-request-shell {
  padding: 34px;
}

main .service-request-shell__intro {
  margin-bottom: 28px;
}

main .service-request-shell__intro h2 {
  margin: 0 0 12px;
  color: #043b59;
  font-size: 32px;
  font-weight: 800;
}

main .service-request-shell__intro p {
  margin: 0;
  color: #5f6f7d;
  line-height: 1.95;
}

main .service-request-note {
  margin-bottom: 24px;
  padding: 24px 26px;
  background: linear-gradient(180deg, rgba(246, 145, 30, 0.08), rgba(246, 145, 30, 0.03));
}

main .service-request-note h3 {
  margin: 0 0 10px;
  color: #043b59;
  font-size: 20px;
  font-weight: 800;
}

main .service-request-note p,
main .service-request-note li {
  color: #5d6f7c;
  line-height: 1.85;
}

main .service-request-form {
  display: grid;
  gap: 24px;
}

main .service-request-block {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(4, 59, 89, 0.08);
  background: #fbfdff;
}

main .service-request-block__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

main .service-request-block__head .icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #043b59;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

main .service-request-block__head h3 {
  margin: 0;
  color: #043b59;
  font-size: 22px;
  font-weight: 800;
}

main .service-request-grid {
  display: grid;
  gap: 18px;
}

main .service-request-grid.cols-1 {
  grid-template-columns: minmax(0, 1fr);
}

main .service-request-grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

main .service-request-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

main .service-request-field label,
main .service-request-upload label {
  display: block;
  margin-bottom: 10px;
  color: #043b59;
  font-size: 14px;
  font-weight: 700;
}

main .service-request-field input,
main .service-request-field select,
main .service-request-field textarea {
  width: 100%;
  min-height: 58px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(4, 59, 89, 0.12);
  background: #fff;
  color: #17394e;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

main .service-request-field textarea {
  min-height: 148px;
  resize: vertical;
}

main .service-request-field input:focus,
main .service-request-field select:focus,
main .service-request-field textarea:focus {
  outline: none;
  border-color: rgba(246, 145, 30, 0.9);
  box-shadow: 0 0 0 4px rgba(246, 145, 30, 0.12);
}

main .service-request-phone {
  display: flex;
  align-items: center;
  border-radius: 16px;
  border: 1px solid rgba(4, 59, 89, 0.12);
  background: #fff;
  overflow: hidden;
}

main .service-request-phone span {
  padding: 0 18px;
  color: #043b59;
  font-weight: 700;
  white-space: nowrap;
}

main .service-request-phone input {
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

main .service-request-phone:focus-within {
  border-color: rgba(246, 145, 30, 0.9);
  box-shadow: 0 0 0 4px rgba(246, 145, 30, 0.12);
}

main .service-request-upload {
  display: block;
}

main .service-request-dropzone {
  min-height: 146px;
  border: 2px dashed rgba(4, 59, 89, 0.18);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(4, 59, 89, 0.02), rgba(4, 59, 89, 0.05));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 18px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

main .service-request-dropzone:hover,
main .service-request-dropzone.is-filled {
  border-color: rgba(246, 145, 30, 0.82);
  background: linear-gradient(180deg, rgba(246, 145, 30, 0.06), rgba(246, 145, 30, 0.12));
  transform: translateY(-2px);
}

main .service-request-dropzone i {
  color: #043b59;
  font-size: 26px;
}

main .service-request-dropzone span {
  color: #566b78;
  line-height: 1.8;
}

main .service-request-file-note {
  display: block;
  margin-top: 10px;
  color: #7a8a95;
  font-size: 13px;
}

main .service-request-captcha {
  margin-top: 8px;
}

main .service-request-captcha .g-recaptcha {
  max-width: 100%;
  overflow: auto;
}

main .service-request-form .text-danger {
  display: block;
  margin-top: 10px;
}

main .service-request-submit {
  min-width: 220px;
  min-height: 58px;
  padding: 14px 28px;
  border: 0;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #043b59 0%, #0b5d86 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 18px 35px rgba(4, 59, 89, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

main .service-request-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(4, 59, 89, 0.25);
}

main .service-request-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

main .service-request-submit i {
  font-size: 15px;
}

main .service-request-actions {
  display: flex;
  justify-content: flex-start;
  padding-top: 4px;
}

@media (max-width: 1199.98px) {
  main .service-request-highlights,
  main .service-request-grid.cols-3,
  main .service-request-steps__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  main .service-request-overview__grid,
  main .service-request-grid.cols-2,
  main .service-request-grid.cols-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  main .service-request-intro,
  main .service-request-panel,
  main .service-request-shell {
    padding: 28px;
  }
}

@media (max-width: 767.98px) {
  main .service-request-overview,
  main .service-request-steps,
  main .service-request-form-section {
    padding: 48px 0;
  }

  main .service-request-highlights,
  main .service-request-steps__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  main .service-request-title {
    font-size: 2rem;
  }

  main .service-request-block,
  main .service-request-note {
    padding: 22px;
  }

  main .service-request-shell__intro h2 {
    font-size: 26px;
  }

  main .service-request-actions {
    justify-content: stretch;
  }

  main .service-request-submit {
    width: 100%;
  }
}
