@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:wght@400..800&display=swap");
: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: white;
}

::-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: "Baloo Bhaijaan 2", sans-serif;
}

body {
  background-color: white;
  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=checkbox] {
  accent-color: #16465f;
}

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

.preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, #ffffff 0%, #eef4f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: opacity 0.5s ease;
}
.preloader .loader-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.preloader .loader-logo {
  position: relative;
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
}
.preloader .loader-logo img {
  width: 78px;
  height: auto;
  z-index: 2;
  animation: loaderBreathe 1.8s ease-in-out infinite;
}
.preloader .loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(22, 70, 95, 0) 0deg, var(--brand, #16465f) 300deg, rgba(22, 70, 95, 0) 360deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
  animation: loaderSpin 1.1s linear infinite;
}
.preloader .loader-logo::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 70, 95, 0.08), transparent 70%);
}
.preloader .progress-bar {
  width: 150px;
  height: 4px;
  background: rgba(22, 70, 95, 0.12);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.preloader .progress-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand, #16465f), #2f7ea0);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(22, 70, 95, 0.5);
  animation: fillBar 1.8s ease-in-out infinite;
}
.preloader .loader-text {
  margin: 0;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 2px;
  color: var(--brand-dark, #0e3346);
  opacity: 0.9;
  animation: loaderBreathe 1.8s ease-in-out infinite;
}

/* Fill animation */
@keyframes fillBar {
  0% {
    width: 0%;
    transform: translateX(0);
  }
  60% {
    width: 100%;
  }
  100% {
    width: 100%;
    transform: translateX(101%);
  }
}
@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes loaderBreathe {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  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: #16465f;
  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 #16465f;
  border-radius: 100px;
  transition: width 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.animatedLink:hover {
  padding: 0 20px;
  color: white;
}
.animatedLink:hover i {
  width: 20px;
}
.animatedLink:hover i span {
  width: 100%;
  border: 1px solid #16465f;
  background-color: #16465f;
}

html[lang=en] {
  direction: ltr;
}
html[lang=en] main .hero-recruitment .hero-grid .hero-content .hero-quote {
  border-left: 4px solid #16465f;
  border-right: none;
  padding-left: 1rem;
}
html[lang=en] .animatedLink i {
  transform: rotate(180deg);
}
html[lang=en] .animatedLink i span {
  left: auto;
  right: 0;
}
@media screen and (max-width: 1999px) {
  html[lang=en] header nav .nav_links {
    right: calc(-80% - 30px);
    left: auto;
  }
  html[lang=en] header nav .nav_links.active {
    left: -20%;
    right: 0;
  }
}
@media screen and (max-width: 1999px) and (max-width: 768px) {
  html[lang=en] header nav .nav_links.active {
    left: -10%;
    right: 0;
  }
}
html[lang=en] header nav .nav_links .dropdown .dropdown-toggle::after {
  transform: rotate(180deg);
}
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;
}
html[lang=en] header nav .nav_links .dropdown .dropdown-menu a {
  text-align: left;
}
html[lang=en] header nav .nav_links .dropdown .dropdown-menu a::before {
  left: 0;
  border-bottom-right-radius: 50%;
  border-top-right-radius: 50%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  header {
    padding: 2px 25px;
  }
}
header nav {
  margin-top: 16px;
  padding: 10px 35px !important;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  header nav {
    padding: 10px 5px !important;
    border-radius: 12px;
  }
}
header nav .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav .logo img {
  height: 70px;
}
@media screen and (max-width: 768px) {
  header nav .logo img {
    height: 45px;
  }
}
header nav .nav_links {
  gap: 42px;
  transition: 0.3s ease-in-out;
  padding: 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
header nav .nav_links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  transition: 0.25s ease-in-out;
  color: black;
}
header nav .nav_links a:hover {
  color: #16465f;
}

header nav .nav_links a.active {
  color: #16465f;
}

@media screen and (max-width: 1199px) {
  header nav .nav_links {
    position: absolute;
    top: -18px;
    bottom: -18px;
    left: calc(-80% - 30px);
    height: calc(100vh + 16px);
    flex-direction: column;
    background: white;
    width: 55%;
    padding: 48px 32px;
    justify-content: start;
  }
  header nav .nav_links a {
    color: black !important;
  }
  header nav .nav_links.active {
    right: -20%;
    border-radius: 0;
    color: #16465f;
  }
}
@media screen and (max-width: 1199px) and (max-width: 768px) {
  header nav .nav_links.active {
    right: -10%;
  }
}
header nav .nav_links .dropdown {
  text-align: center;
}
header nav .nav_links .dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  header nav .nav_links .dropdown .dropdown-toggle {
    align-items: start;
    justify-content: start;
  }
}
header nav .nav_links .dropdown .dropdown-toggle::after {
  border: none !important;
  content: "\f104" !important;
  font-family: "Font Awesome 6 Pro";
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  margin-right: 5px;
  width: 10px !important;
}
header nav .nav_links .dropdown:hover .dropdown-toggle::after {
  transform: rotate(-90deg);
}
header nav .nav_links .dropdown .dropdown-menu {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: fadeOutDown !important;
  animation-delay: 0s;
  background-color: white;
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
  padding: 5px 0;
  right: unset;
  top: 100%;
  left: -50%;
  margin-top: 0;
  border: none;
}
header nav .nav_links .dropdown .dropdown-menu a {
  border-radius: 2px;
  padding: 8px 12px;
  padding-right: 16px;
  text-align: right;
  margin-bottom: 5px;
  position: relative;
}
header nav .nav_links .dropdown .dropdown-menu a::before {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  width: 0px;
  height: 80%;
  background-color: #16465f;
  border-bottom-left-radius: 50%;
  border-top-left-radius: 50%;
  transition: 0.1s ease-in-out;
  transform: translateY(-50%);
}
header nav .nav_links .dropdown .dropdown-menu a:hover {
  color: #16465f;
}
header nav .nav_links .dropdown .dropdown-menu a:hover::before {
  width: 5px;
}
header nav .nav_links .dropdown .dropdown-menu a:focus {
  background-color: #16465f;
  color: white;
}
header nav .nav_links .dropdown:hover .dropdown-menu, header nav .nav_links .dropdown:focus .dropdown-menu {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: fadeInUp !important;
}
@media (min-width: 768px) {
  header nav .nav_links .dropdown:hover .dropdown-menu, header nav .nav_links .dropdown:focus .dropdown-menu {
    display: block;
  }
}
@media (max-width: 768px) {
  header nav .nav_links .dropdown .dropdown-menu {
    animation-name: unset !important;
    box-shadow: none;
    background-color: rgba(22, 70, 95, 0.2);
    margin: 10px 0;
  }
  header nav .nav_links .dropdown:hover .dropdown-menu {
    animation-name: unset !important;
  }
}
header nav .actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
header nav .actions .lang-btn {
  background-color: #f4f8fb;
  border: 1px solid rgba(22, 70, 95, 0.4);
  color: #16465f;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 768px) {
  header nav .actions .lang-btn {
    display: none;
  }
}
header nav .actions .lang-btn i {
  font-size: 0.9rem;
}
header nav .actions .lang-btn:hover {
  background: rgba(22, 70, 95, 0.15);
  border: none;
  transform: translateY(-2px);
}
header nav .actions .login-btn {
  background: #16465f;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: 0.3s;
  font-family: inherit;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
}
header nav .actions .login-btn:hover {
  background: rgb(15, 51, 68);
  transform: translateY(-2px);
}
header nav .actions .toggler {
  display: none;
  background: transparent !important;
  color: #16465f;
  font-size: 1.2rem;
}
@media screen and (max-width: 1199px) {
  header nav .actions .toggler {
    display: flex;
  }
}
header nav.sticky {
  padding: 10px 42px !important;
  background: #16465f;
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
header nav.sticky .toggler {
  color: black;
}
header nav.sticky .nav_links a:hover {
  color: #2ca8e0;
}
header nav.sticky .login-btn {
  background-color: black;
}
header nav.sticky .logo img {
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 768px) {
  header nav.sticky {
    padding: 10px !important;
  }
}
@media screen and (min-width: 768px) {
  header .nav_links .lang-mobile {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header .nav_links .lang-mobile {
    display: block;
    margin-top: 20px;
    padding: 12px 16px;
    background: rgba(22, 70, 95, 0.7);
    border-radius: 10px;
    text-align: center;
    color: black;
    font-size: 1rem;
  }
}

main .hero-recruitment {
  min-height: 100vh;
  width: 100%;
  /* background: linear-gradient(125deg, #ffffff 0%, #f3f8fb 100%); */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  overflow: hidden;
}
main .hero-recruitment::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 30%, rgba(22, 70, 95, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
main .hero-recruitment .hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
main .hero-recruitment .hero-grid .hero-content {
  flex: 1.2;
  min-width: 280px;
}
main .hero-recruitment .hero-grid .hero-content .brand-text {
  font-weight: 800;
  font-size: 1.3rem;
  color: black;
}
main .hero-recruitment .hero-grid .hero-content .brand-text span {
  color: #16465f;
}
main .hero-recruitment .hero-grid .hero-content .hero-title {
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 800;
  color: black;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
main .hero-recruitment .hero-grid .hero-content .hero-title .accent {
  color: #16465f;
  position: relative;
  display: inline-block;
}
main .hero-recruitment .hero-grid .hero-content .hero-sub {
  font-size: 1rem;
  color: #828483;
  margin-bottom: 1rem;
  font-weight: 500;
}
main .hero-recruitment .hero-grid .hero-content .hero-quote {
  font-size: 1.4rem;
  font-weight: 600;
  color: black;
  line-height: 1.4;
  margin: 1rem 0;
  border-right: 4px solid #16465f;
  padding-right: 1rem;
}
main .hero-recruitment .hero-grid .hero-content .hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
main .hero-recruitment .hero-grid .hero-content .hero-buttons .btn-primary {
  background: #16465f;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  color: black;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: 0.3s;
  font-family: inherit;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
}
main .hero-recruitment .hero-grid .hero-content .hero-buttons .btn-primary:hover {
  background: rgb(15, 51, 68);
  transform: translateY(-2px);
}
main .hero-recruitment .hero-grid .hero-content .hero-buttons .btn-outline {
  background: transparent;
  border: 1.5px solid #828483;
  padding: 0.8rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  color: #828483;
  gap: 8px;
  cursor: pointer;
  transition: 0.3s;
  font-family: inherit;
}
main .hero-recruitment .hero-grid .hero-content .hero-buttons .btn-outline:hover {
  background: rgba(22, 70, 95, 0.1);
  transform: translateY(-2px);
}
main .hero-recruitment .hero-grid .hero-visual {
  flex: 1;
  min-width: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .hero-recruitment .hero-grid .hero-visual .image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .hero-recruitment .hero-grid .hero-visual .image-wrapper .hero-slider {
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
}
main .hero-recruitment .hero-grid .hero-visual .image-wrapper .hero-slider .hero-png--slide {
  grid-area: 1/1;
  opacity: 0;
  pointer-events: none;
}
main .hero-recruitment .hero-grid .hero-visual .image-wrapper .hero-slider .hero-png--slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
main .hero-recruitment .hero-grid .hero-visual .image-wrapper .hero-png {
  position: relative;
  width: 90%;
  display: block;
  margin: 0 auto;
  z-index: 5;
  box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.2);
  transition: opacity 0.6s ease, transform 0.4s ease, box-shadow 0.3s;
  background: #ffffff;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
  aspect-ratio: 1;
  cursor: pointer;
  animation: morph 1s infinite alternate ease-in-out;
}
@keyframes morph {
  0% {
    clip-path: shape(from 94.06% 44.72%, curve to 94.03% 55.27% with 93.54% 50%, curve to 90.35% 64.36% with 94.51% 60.55%, curve to 82.46% 71.14% with 86.19% 68.18%, curve to 77.79% 80.09% with 78.73% 74.11%, curve to 71.17% 85.99% with 76.85% 86.07%, curve to 60.97% 86.23% with 65.49% 85.91%, curve to 51.99% 89.33% with 56.44% 86.54%, curve to 42.56% 91.82% with 47.55% 92.13%, curve to 33.04% 89.37% with 37.57% 91.5%, curve to 24.01% 84.77% with 28.51% 87.23%, curve to 16.79% 77.97% with 19.51% 82.31%, curve to 9% 70.2% with 14.07% 73.63%, curve to 4.08% 61.06% with 3.93% 66.77%, curve to 7.25% 50.35% with 4.23% 55.35%, curve to 7.56% 39.46% with 10.26% 45.36%, curve to 10.03% 30.34% with 4.85% 33.57%, curve to 17.12% 22.15% with 15.22% 27.12%, curve to 22.47% 12.72% with 19.02% 17.17%, curve to 32.08% 9.52% with 25.91% 8.27%, curve to 43.06% 11.97% with 38.26% 10.78%, curve to 52.82% 9.51% with 47.86% 13.17%, curve to 62.28% 8.49% with 57.78% 5.85%, curve to 73.21% 10.64% with 66.77% 11.12%, curve to 83.7% 14.25% with 79.66% 10.16%, curve to 87.76% 24.68% with 87.74% 18.33%, curve to 91.18% 35.23% with 87.78% 31.03%, curve to 94.06% 44.72% with 94.57% 39.44%);
  }
  to {
    clip-path: shape(from 94.3% 44.61%, curve to 91% 54.6% with 93.15% 50%, curve to 91.75% 65.82% with 88.85% 59.21%, curve to 87.48% 73.92% with 94.66% 72.43%, curve to 78.37% 80.47% with 80.3% 75.42%, curve to 72.77% 89.9% with 76.45% 85.53%, curve to 63.41% 94.02% with 69.1% 94.28%, curve to 52.79% 90.26% with 57.72% 93.77%, curve to 42.27% 90.61% with 47.86% 86.76%, curve to 33.77% 88.81% with 36.69% 94.46%, curve to 26.18% 81.68% with 30.86% 83.16%, curve to 18.2% 76.64% with 21.51% 80.2%, curve to 13.91% 68.29% with 14.89% 73.09%, curve to 6.76% 59.64% with 12.92% 63.5%, curve to 8.15% 50.88% with 0.59% 55.77%, curve to 11.11% 40.08% with 15.71% 45.99%, curve to 9.98% 30.07% with 6.51% 34.17%, curve to 17.14% 22.52% with 13.45% 25.96%, curve to 26.53% 19.16% with 20.84% 19.09%, curve to 36.15% 18.03% with 32.23% 19.22%, curve to 43.59% 8.57% with 40.07% 16.84%, curve to 52.14% 4.8% with 47.11% 0.3%, curve to 63.04% 7.74% with 57.18% 9.3%, curve to 70.8% 12.85% with 68.9% 6.18%, curve to 77.99% 20.79% with 72.7% 19.51%, curve to 88.88% 24.87% with 83.29% 22.07%, curve to 94.96% 33.45% with 94.47% 27.67%, curve to 94.3% 44.61% with 95.45% 39.23%);
  }
}
main .hero-recruitment .hero-grid .hero-visual .image-wrapper .hero-png:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 50px -15px rgba(0, 0, 0, 0.25);
}
main .hero-recruitment .hero-grid .hero-visual .image-wrapper .shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(22, 70, 95, 0.12);
  z-index: 0;
  pointer-events: none;
  transition: all 0.3s;
}
main .hero-recruitment .hero-grid .hero-visual .image-wrapper .shape.shape-1 {
  width: 140px;
  height: 140px;
  top: 0%;
  right: -5%;
  background: radial-gradient(circle, rgba(22, 70, 95, 0.2), rgba(22, 70, 95, 0.02));
  animation: float1 8s infinite alternate;
}
main .hero-recruitment .hero-grid .hero-visual .image-wrapper .shape.shape-2 {
  width: 100px;
  height: 100px;
  bottom: -5%;
  left: 5%;
  background: radial-gradient(circle, rgba(22, 70, 95, 0.18), rgba(22, 70, 95, 0.03));
  animation: float2 7s infinite alternate;
}
main .hero-recruitment .hero-grid .hero-visual .image-wrapper .shape.shape-3 {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 5%;
  background: rgba(22, 70, 95, 0.2);
  border-radius: 40% 60% 45% 55%/50% 40% 60% 50%;
  animation: morph 9s infinite alternate;
}
main .hero-recruitment .hero-grid .hero-visual .image-wrapper .shape.shape-4 {
  width: 80px;
  height: 80px;
  bottom: 15%;
  right: -8%;
  background: rgba(22, 70, 95, 0.15);
  border-radius: 30% 70% 40% 60%/45% 50% 50% 55%;
  animation: float3 6s infinite alternate;
}
@keyframes float1 {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-18px) rotate(6deg);
  }
}
@keyframes float2 {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-12px);
  }
}
@keyframes float3 {
  0% {
    transform: translateY(0px) scale(1);
  }
  100% {
    transform: translateY(-14px) scale(1.05);
  }
}
@keyframes morph {
  0% {
    border-radius: 40% 60% 45% 55%/50% 40% 60% 50%;
  }
  100% {
    border-radius: 55% 45% 60% 40%/45% 55% 50% 50%;
  }
}
@media (max-width: 850px) {
  main .hero-recruitment .hero-grid {
    flex-direction: column;
    text-align: center;
    padding: 6rem 0;
  }
  main .hero-recruitment .hero-quote {
    border-right: none;
    padding-right: 0;
    border-bottom: 2px solid var(--main);
    padding-bottom: 0.5rem;
    display: inline-block;
  }
  main .hero-recruitment .hero-buttons {
    justify-content: center;
  }
  main .hero-recruitment .image-wrapper {
    margin-top: 2rem;
  }
  main .hero-recruitment .image-wrapper .hero-png {
    width: 70%;
  }
  main .hero-recruitment .image-wrapper .shape-1,
  main .hero-recruitment .image-wrapper .shape-2,
  main .hero-recruitment .image-wrapper .shape-3,
  main .hero-recruitment .image-wrapper .shape-4 {
    transform: scale(0.7);
  }
  main .hero-recruitment .image-wrapper .image-frame {
    width: 80%;
    padding-bottom: 80%;
  }
}
main .services {
  padding-top: 60px;
  background-color: #f9f9f9;
}
main .services .service-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
main .services .swiper {
  padding-bottom: 60px;
  padding: 10px 0;
}
main .services .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
main .services .swiper-slide {
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: auto !important;
}
main .services .card {
  background: #ffffff;
  padding: 32px 24px;
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  border: 1px solid #16465f;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
main .services .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}
main .services .card .card-img {
  width: 80px;
  height: 80px;
  margin-bottom: 18px;
  border-radius: 50%;
  overflow: hidden;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
main .services .card .card-img img {
  width: 55%;
  height: 55%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.3s;
}
main .services .card h3 {
  color: black;
  font-size: 24px;
  font-weight: 600;
}
main .services .card p {
  font-size: 16px;
  color: #828483;
  line-height: 1.4;
}
main .services .card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
main .services .card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #555;
}
main .services .card ul li i {
  color: #16465f;
  font-size: 16px;
}
main .services .servicesSwiperPagination {
  padding: 40px 0 16px;
  display: flex;
  justify-content: center;
}
main .services .servicesSwiperPagination .swiper-pagination-bullet {
  transition: all 0.4s ease-in-out;
  width: 12px;
  height: 8px;
  border: 1px solid #16465f;
  background-color: transparent;
  border-radius: 12px;
}
main .services .servicesSwiperPagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #16465f;
  width: 20px;
}
main .reviews {
  padding-top: 80px;
  background: rgba(250, 249, 249, 0.75);
  overflow: hidden;
  position: relative;
}
main .reviews::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background-image: url(../images/patt2.svg);
  background-position: bottom left;
  background-repeat: no-repeat;
  opacity: 0.2;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}
main .reviews .swiper {
  padding: 20px 0 50px;
}
main .reviews .swiper-slide {
  height: auto;
}
main .reviews .review-card {
  background: white;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(22, 70, 95, 0.1);
  position: relative;
}
main .reviews .review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(22, 70, 95, 0.3);
}
main .reviews .review-card__quote {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 4rem;
  color: rgba(22, 70, 95, 0.15);
  font-family: serif;
  line-height: 1;
}
main .reviews .review-card__stars {
  margin-bottom: 20px;
  color: #ffb800;
  font-size: 0.9rem;
  letter-spacing: 2px;
}
main .reviews .review-card__stars i {
  margin-left: 2px;
}
main .reviews .review-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 24px;
  flex: 1;
}
main .reviews .review-card__customer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #edf2f7;
  padding-top: 20px;
}
main .reviews .review-card__avatar {
  width: 52px;
  height: 52px;
  background: rgba(22, 70, 95, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16465f;
  font-size: 1.4rem;
  flex-shrink: 0;
}
main .reviews .review-card__info {
  flex: 1;
}
main .reviews .review-card__name {
  font-weight: 700;
  color: black;
  font-size: 1rem;
  margin-bottom: 4px;
}
main .reviews .review-card__title {
  font-size: 0.75rem;
  color: #828483;
}
main .reviews .reviews-swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
main .reviews .reviews-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(22, 70, 95, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
}
main .reviews .reviews-swiper-pagination .swiper-pagination-bullet-active {
  background: #16465f;
  width: 24px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  main .reviews {
    padding: 60px 0;
  }
  main .reviews .sectionTitle {
    font-size: 2rem;
  }
  main .reviews .review-card {
    padding: 24px 20px;
  }
  main .reviews .review-card__quote {
    font-size: 3rem;
    top: 16px;
    right: 20px;
  }
}
main .card-banner {
  padding: 4rem 0;
  border-bottom: 1px solid #e2e8f0;
  background: linear-gradient(to bottom, rgba(225, 230, 126, 0.623) 0%, rgba(225, 230, 126, 0.623) 40%, rgba(225, 230, 126, 0.829) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 75% 92%, 50% 100%, 25% 92%, 0 85%);
}
main .card-banner__wrapper {
  padding-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
main .card-banner__content {
  flex: 2;
  min-width: 250px;
}
main .card-banner__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 0.3rem 1rem;
  border-radius: 60px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #16465f;
  margin-bottom: 1rem;
}
main .card-banner__tag i {
  font-size: 0.9rem;
}
main .card-banner__title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  color: black;
  margin-bottom: 1rem;
  line-height: 1.3;
}
main .card-banner__title .highlight {
  color: #16465f;
  position: relative;
  display: inline-block;
}
main .card-banner__desc {
  color: #828483;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
main .card-banner__btn {
  background: #16465f;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: 0.3s;
  font-family: inherit;
}
main .card-banner__btn:hover {
  background: rgb(15, 51, 68);
  transform: translateY(-2px);
}
main .card-banner__image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .card-banner__image img {
  width: 100%;
  max-width: 200px;
  height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 1200px) {
  main .card-banner__image img {
    max-width: 320px;
  }
}
@media (max-width: 650px) {
  main .card-banner__wrapper {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.8rem;
  }
  main .card-banner__image {
    display: none;
  }
}
main .faq-banner__icon {
  width: 80px;
  height: 80px;
  background: rgba(22, 70, 95, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}
main .faq-banner__icon img {
  width: 40px;
  height: 40px;
}
main .faq-banner__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: black;
  margin-bottom: 0.75rem;
}
main .faq-banner__highlight {
  color: #16465f;
  position: relative;
  display: inline-block;
}
main .faq-banner__highlight::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(22, 70, 95, 0.25);
  border-radius: 10px;
  z-index: -1;
}
main .faq-banner__desc {
  font-size: 1rem;
  color: #828483;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
main .faq-section {
  position: relative;
  padding: 5rem 1.5rem;
  background: white;
  overflow: hidden;
}
main .faq-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 0;
  width: 400px;
  height: 400px;
  background-image: url(../images/section_patt.webp);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) {
  main .faq-section::before {
    width: 250px;
    height: 250px;
  }
}
main .faq-section .faq-header {
  text-align: center;
  margin-bottom: 3rem;
}
main .faq-section .faq-header__title {
  font-size: 2rem;
  font-weight: 700;
  color: black;
  margin-bottom: 0.5rem;
}
main .faq-section .faq-header__line {
  width: 60px;
  height: 3px;
  background: #16465f;
  margin: 0.75rem auto 0;
  border-radius: 10px;
}
main .faq-section {
  /* ===== ACCORDION ===== */
}
main .faq-section .accordion {
  max-width: 800px;
  margin: 0 auto;
}
main .faq-section .accordion-item {
  background: white;
  border: 1px solid rgba(22, 70, 95, 0.2);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
main .faq-section .accordion-item:hover {
  border-color: rgba(22, 70, 95, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
main .faq-section .accordion-item.active .accordion-question i {
  transform: rotate(180deg);
}
main .faq-section .accordion-item.active .accordion-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.2rem;
  border-top: 1px solid rgba(22, 70, 95, 0.2);
}
main .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;
}
main .faq-section .accordion-question:hover {
  background: rgba(22, 70, 95, 0.04);
}
main .faq-section .accordion-question i {
  color: #16465f;
  font-size: 1rem;
  transition: transform 0.3s;
}
main .faq-section .accordion-answer {
  max-height: 0;
  padding: 0 1.5rem;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  color: #828483;
  font-size: 0.9rem;
  line-height: 1.7;
}
main .faq-section {
  /* ===== CTA ===== */
}
main .faq-section .faq-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(22, 70, 95, 0.2);
}
main .faq-section .faq-cta p {
  color: #828483;
  margin-bottom: 1rem;
}
main .faq-section .faq-cta .btn-contact {
  background: #16465f;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  color: black;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}
main .faq-section .faq-cta .btn-contact:hover {
  background: #2ca8e0;
  color: white;
  transform: translateY(-2px);
}
main .faq-section {
  /* ===== Responsive ===== */
}
@media (max-width: 768px) {
  main .faq-section {
    padding: 3rem 1rem;
  }
  main .faq-section .accordion-question {
    padding: 1rem;
    font-size: 0.9rem;
  }
  main .faq-section .accordion-item.active .accordion-answer {
    padding: 0 1rem 1rem;
  }
}
main form {
  background: white;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.12);
  padding: 42px 12px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 576px) {
  main form {
    padding: 32px 0;
  }
}
main form .form-group {
  display: flex;
  width: 100%;
  gap: 24px;
}
@media (max-width: 768px) {
  main form .form-group {
    flex-direction: column;
    gap: 48px;
  }
}
main form .form-group .inputfield {
  position: relative;
  width: 100%;
}
main form .form-group .inputfield input,
main form .form-group .inputfield textarea {
  width: 100%;
  padding: 14px 16px 14px 40px;
  border: none;
  border-bottom: 2px solid #eee;
  outline: none;
  font-size: 14px;
  background: none;
  resize: none;
}
main form .form-group .inputfield label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #aaa;
  pointer-events: none;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 0 4px;
}
main form .form-group .inputfield input:not(:-moz-placeholder) + label, main form .form-group .inputfield textarea:not(:-moz-placeholder) + label {
  top: -8px;
  font-size: 12px;
  color: #16465f;
}
main form .form-group .inputfield input:focus + label,
main form .form-group .inputfield textarea:focus + label,
main form .form-group .inputfield input:not(:placeholder-shown) + label,
main form .form-group .inputfield textarea:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 12px;
  color: #16465f;
}
main form .form-group .inputfield .highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: #eee;
}
main form .form-group .inputfield .highlight::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 0;
  height: 2px;
  background: #16465f;
  transform: translateX(-50%);
  transition: 0.3s ease;
}
main form .form-group .inputfield input:focus + label + .highlight::after,
main form .form-group .inputfield textarea:focus + label + .highlight::after {
  width: 100%;
  left: 0;
  transform: translateX(0);
}
main form .btn-submit {
  position: relative;
  margin-top: 10px;
  align-self: center;
  background: #16465f;
  color: white;
  font-weight: 600;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}
main form .btn-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #2ca8e0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
  z-index: -1;
}
main form .btn-submit:hover::before {
  transform: scaleY(1);
}
main form .btn-submit span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}
main form .btn-submit .arrow {
  font-size: 14px;
  transition: transform 0.3s ease;
}
main form .btn-submit:hover .arrow {
  transform: translateX(5px);
}
main .about-banner .card-banner__content {
  padding: 10px 0;
  justify-content: center;
  flex: 2;
  align-items: center;
  flex-direction: column;
  display: flex;
}
main .vision-mission {
  padding: 2rem 0;
  background: white;
}
main .vision-mission .vm-main {
  margin-bottom: 2.5rem;
  z-index: 111;
}
main .vision-mission .vm-main .vm-card--main {
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(22, 70, 95, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}
main .vision-mission .vm-main .vm-card--main .vm-icon {
  width: 80px;
  height: 80px;
  background: rgba(22, 70, 95, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
main .vision-mission .vm-main .vm-card--main .vm-icon i {
  font-size: 2.2rem;
  color: #16465f;
}
main .vision-mission .vm-main .vm-card--main h3 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
main .vision-mission .vm-main .vm-card--main p {
  color: #828483;
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
}
main .vision-mission .vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  main .vision-mission .vm-grid {
    grid-template-columns: 1fr;
  }
}
main .vision-mission .vm-card {
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  padding: 2rem;
  border-radius: 28px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid rgba(22, 70, 95, 0.4);
  z-index: 111;
}
main .vision-mission .vm-card:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 70, 95, 0.6);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}
main .vision-mission .vm-card .vm-icon {
  width: 70px;
  height: 70px;
  background: rgba(22, 70, 95, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
main .vision-mission .vm-card .vm-icon i {
  font-size: 2rem;
  color: #16465f;
}
main .vision-mission .vm-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
main .vision-mission .vm-card p {
  color: #828483;
  line-height: 1.6;
  font-size: 0.9rem;
}
main .our-values {
  padding: 5rem 0;
  background-color: #f9f9f9;
  text-align: center;
  position: relative;
  overflow: hidden;
}
main .our-values::before {
  content: "";
  position: absolute;
  top: -70px;
  left: 0;
  width: 350px;
  height: 350px;
  background-image: url("../images/bg2.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  z-index: 0;
  pointer-events: none;
  transform: rotateX(180deg);
  overflow: hidden;
}
main .our-values .section-header {
  margin-bottom: 3rem;
  z-index: 111;
}
main .our-values .section-header .section-badge {
  display: inline-block;
  background: rgba(22, 70, 95, 0.12);
  color: #16465f;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
main .our-values .section-header .section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: black;
}
main .our-values .section-header .section-title span {
  color: #16465f;
}
main .our-values .values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
main .our-values .value-item {
  flex: 1;
  min-width: 200px;
  background: white;
  padding: 2rem 1rem;
  border-radius: 20px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(22, 70, 95, 0.4);
  transition: 0.3s;
}
main .our-values .value-item:hover {
  transform: translateY(-5px);
  border-color: rgba(22, 70, 95, 0.6);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
}
main .our-values .value-item i {
  font-size: 2.5rem;
  color: #16465f;
  margin-bottom: 1rem;
}
main .our-values .value-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
main .our-values .value-item p {
  font-size: 0.85rem;
  color: #828483;
  line-height: 1.5;
}
main .filter {
  padding-top: 30px;
}
main .filter h4 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #16465f;
}
main .filter label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
main .filter label i {
  color: #16465f;
}
main .filter__form {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
main .filter__inputs select {
  width: 100%;
  height: 48px;
  border: 1px solid #ced4da;
  border-radius: 12px;
  padding: 10px;
  background: #fff;
}
main .filter__actions {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 10px;
}
main .filter__actions .btn {
  width: 100%;
  white-space: nowrap;
  border-radius: 12px;
  padding: 10px 16px;
}
main .filter__actions .clear {
  border: 1px solid black;
  color: black;
}
main .filter__actions .clear:hover {
  background: #333;
  color: white;
}
main .filter__actions .apply {
  background: #16465f;
  color: white;
}
main .filter__actions .apply:hover {
  background: rgb(15, 51, 68);
}
main .filter .filter-box {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
main .filter .filter-btn {
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
main .filter .filter-btn.active {
  background: #000;
  color: #fff;
}
main .select2-container--default .select2-selection--single {
  height: 48px;
  border-radius: 12px;
  border: 1px solid #ced4da;
  display: flex;
  align-items: center;
}
main .select2-selection__rendered {
  line-height: normal !important;
}
main .filter-advanced {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  padding: 16px 0;
  margin-top: 10px;
}
main .filter-advanced .filter-bar {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
main .filter-advanced .filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
main .filter-advanced .filter-tabs .filter-tab {
  background: transparent;
  border: none;
  padding: 8px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #16465f;
  border: 1px solid rgba(22, 70, 95, 0.4);
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
}
main .filter-advanced .filter-tabs .filter-tab:hover, main .filter-advanced .filter-tabs .filter-tab.active {
  background: #16465f;
  color: black;
  box-shadow: 0 4px 12px rgba(22, 70, 95, 0.3);
}
main .filter-advanced .filter-toggle-btn {
  background: #f1f5f9;
  border: none;
  padding: 10px 24px;
  border-radius: 12px;
  font-weight: 600;
  color: black;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}
main .filter-advanced .filter-toggle-btn .toggle-icon {
  transition: transform 0.3s;
}
main .filter-advanced .filter-toggle-btn:hover {
  background: rgba(22, 70, 95, 0.2);
}
main .filter-advanced .filter-advanced-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, margin 0.2s;
  background: transparent;
  border-radius: 24px;
  margin-top: 0;
}
main .filter-advanced .filter-advanced-panel.open {
  max-height: 450px;
  margin-top: 20px;
}
main .filter-advanced form {
  gap: 20px;
}
main .filter-advanced .filter-form {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
}
main .filter-advanced .filter-form .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 10px;
}
main .filter-advanced .filter-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
main .filter-advanced .filter-form .form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: black;
  display: flex;
  align-items: center;
  gap: 8px;
}
main .filter-advanced .filter-form .form-group label i {
  color: #16465f;
  font-size: 0.9rem;
  width: 20px;
}
main .filter-advanced .filter-form .form-group select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: white;
  font-size: 0.85rem;
  color: black;
  outline: none;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
}
main .filter-advanced .filter-form .form-group select:focus {
  border-color: #16465f;
  box-shadow: 0 0 0 3px rgba(22, 70, 95, 0.2);
}
main .filter-advanced .filter-form .form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}
main .filter-advanced .filter-form .form-actions button {
  padding: 10px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: none;
}
main .filter-advanced .filter-form .form-actions .btn-reset {
  background: #e2e8f0;
  color: black;
}
main .filter-advanced .filter-form .form-actions .btn-reset:hover {
  background: #cbd5e1;
}
main .filter-advanced .filter-form .form-actions .btn-apply {
  background: #16465f;
  color: black;
  display: flex;
  align-items: center;
  gap: 8px;
}
main .filter-advanced .filter-form .form-actions .btn-apply:hover {
  background: rgb(15, 51, 68);
  color: white;
}
main .filter-advanced .filter-form .form-actions .btn-apply:hover i {
  transform: translateX(-4px);
}
@media (max-width: 768px) {
  main .filter-advanced .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  main .filter-advanced .filter-tabs {
    justify-content: center;
  }
  main .filter-advanced .filter-toggle-btn {
    justify-content: center;
  }
  main .filter-advanced .filter-form .form-row {
    grid-template-columns: 1fr;
  }
}
main .allWorkers {
  padding: 0px 0 60px;
  background: #ffffff;
}
main .allWorkers .worker-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(22, 70, 95, 0.4);
}
main .allWorkers .worker-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
}
main .allWorkers .worker-card .worker-image {
  position: relative;
  height: 220px;
  background: #f1f5f9;
  overflow: hidden;
}
main .allWorkers .worker-card .worker-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
main .allWorkers .worker-card .worker-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
main .allWorkers .worker-card .worker-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}
main .allWorkers .worker-card .worker-header .worker-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: black;
  margin: 0;
}
main .allWorkers .worker-card .worker-header .worker-id {
  font-size: 0.7rem;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 30px;
  color: #828483;
}
main .allWorkers .worker-card .worker-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
main .allWorkers .worker-card .worker-details-grid .detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #828483;
  background: #f9fafb;
  padding: 6px 12px;
  border-radius: 40px;
}
main .allWorkers .worker-card .worker-details-grid .detail-item i {
  width: 20px;
  color: #16465f;
  font-size: 0.8rem;
}
main .allWorkers .worker-card .worker-details-grid .detail-item strong {
  color: black;
  font-weight: 600;
}
main .allWorkers .worker-card .worker-price {
  background: rgba(22, 70, 95, 0.2);
  padding: 10px 14px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
main .allWorkers .worker-card .worker-price small {
  font-size: 0.8rem;
  color: rgb(15, 51, 68);
}
main .allWorkers .worker-card .worker-price strong {
  font-size: 1.3rem;
  font-weight: 800;
  color: rgb(15, 51, 68);
}
main .allWorkers .worker-card .worker-note {
  background: #fef2f2;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #dc2626;
  display: flex;
  align-items: center;
  gap: 8px;
}
main .allWorkers .worker-card .worker-note i {
  font-size: 0.9rem;
  color: #dc2626;
}
main .allWorkers .worker-card .worker-actions {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
main .allWorkers .worker-card .worker-actions .btn-primary,
main .allWorkers .worker-card .worker-actions .btn-video {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
main .allWorkers .worker-card .worker-actions .btn-primary {
  background: #16465f;
  color: black;
  border: none;
}
main .allWorkers .worker-card .worker-actions .btn-primary:hover {
  background: rgb(15, 51, 68);
  color: white;
}
main .allWorkers .worker-card .worker-actions .btn-primary:hover i {
  transform: translateX(-4px);
}
main .allWorkers .worker-card .worker-actions .btn-video {
  background: transparent;
  border: 1px solid #16465f;
  color: rgb(15, 51, 68);
}
main .allWorkers .worker-card .worker-actions .btn-video:hover {
  background: rgba(22, 70, 95, 0.2);
  border-color: rgb(15, 51, 68);
}
@media (max-width: 768px) {
  main .allWorkers .worker-details-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 992px) {
  main .allWorkers .worker-card {
    flex-direction: column;
  }
  main .allWorkers .worker-card .worker-image {
    width: 100%;
    height: 220px;
  }
  main .allWorkers .worker-card .worker-body {
    padding: 18px;
  }
  main .filter .filter__form {
    flex-direction: column;
  }
  main .filter .filter__form .filter__actions {
    width: 100%;
  }
}
@media (max-width: 768px) {
  main .filter .filter-box {
    justify-content: center;
  }
  main .allWorkers .worker-card .worker-image {
    height: 200px;
  }
}
main .quickApplyModal {
  padding-top: 24px;
}
main .quickApplyModal .modal-content {
  border-radius: 24px;
  padding: 24px;
  position: relative;
}
main .quickApplyModal .closeBtn {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(10px, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #16465f;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
main .quickApplyModal .title {
  font-weight: 700;
  margin-bottom: 4px;
}
main .quickApplyModal .subtitle {
  font-size: 14px;
  color: #777;
  margin-bottom: 16px;
}
main .quickApplyModal .worker-info {
  background: #f8f8f8;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 16px;
}
main .quickApplyModal .worker-info strong {
  display: block;
  font-size: 16px;
}
main .quickApplyModal .worker-info .badge {
  background: #16465f;
  color: #fff;
  margin-top: 6px;
  display: inline-block;
}
main .quickApplyModal .worker-info .worker-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #d9bd2e;
  background: #f5f5f5;
}
main .quickApplyModal .worker-info .worker-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .quickApplyModal .worker-info .worker-avatar strong {
  display: block;
  font-size: 16px;
  margin-bottom: 2px;
}
main .quickApplyModal .worker-info .worker-avatar .badge {
  background: #16465f;
  color: white;
  margin-top: 6px;
  display: inline-block;
}
main .quickApplyModal .form-group {
  margin-bottom: 12px;
}
main .quickApplyModal .form-group input,
main .quickApplyModal .form-group select {
  border-radius: 10px;
  padding: 10px;
}
main .quickApplyModal .form-group small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
}
main .quickApplyModal .submitBtn {
  background: #16465f;
  color: #fff;
  border-radius: 10px;
  padding: 10px;
  font-weight: 600;
}
main .quickApplyModal select.form-select {
  height: 44px;
  padding: 10px 10px 10px 12px;
  line-height: 1.5;
  background-position: left 12px center;
  background-size: 14px;
}
main .site-pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 36px 0 14px;
}
main .site-pagination-wrap .site-pagination-summary {
  color: #828483;
  font-size: 14px;
  font-weight: 600;
}
main .site-pagination-wrap .site-pagination-summary strong {
  color: #16465f;
  font-weight: 800;
}
main .pagination.site-pagination {
  padding: 0;
  margin: 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
main .pagination.site-pagination .page-item {
  list-style: none;
}
main .pagination.site-pagination .page-item.disabled .page-link {
  background: #f6f7ef;
  color: #b3ba8b;
  border-color: rgba(22, 70, 95, 0.12);
  box-shadow: none;
  pointer-events: none;
}
main .pagination.site-pagination .page-item.active .page-link {
  background: #16465f;
  color: #2ca8e0;
  border-color: #16465f;
  box-shadow: 0 14px 30px -18px rgba(22, 70, 95, 0.95);
}
main .pagination.site-pagination .page-link {
  min-width: 46px;
  height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(22, 70, 95, 0.2);
  background: white;
  color: #5d6471;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 14px 30px -24px rgba(0, 0, 0, 0.22);
  transition: 0.25s ease;
}
main .pagination.site-pagination .page-link:hover {
  background: rgba(22, 70, 95, 0.08);
  color: #16465f;
  border-color: rgba(22, 70, 95, 0.45);
  transform: translateY(-2px);
}
main .pagination.site-pagination .page-link:focus {
  box-shadow: 0 0 0 0.2rem rgba(22, 70, 95, 0.18);
}
main .pagination.site-pagination .page-item.arrow .page-link {
  min-width: 52px;
  font-size: 13px;
}
main .pagination.site-pagination .page-item.dots .page-link {
  min-width: auto;
  padding: 0 6px;
  border: none;
  background: transparent;
  box-shadow: none;
}
@media (max-width: 768px) {
  main .site-pagination-wrap {
    justify-content: center;
    text-align: center;
    padding-top: 28px;
  }
  main .pagination.site-pagination {
    gap: 8px;
  }
  main .pagination.site-pagination .page-link {
    min-width: 42px;
    height: 42px;
    border-radius: 12px;
    padding: 0 12px;
    font-size: 14px;
  }
  main .pagination.site-pagination .page-item.arrow .page-link {
    min-width: 46px;
  }
}
main .worker-details {
  padding: 60px 0 60px;
  background: #f8fafc;
}
main .worker-details .worker-header-card {
  background: white;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}
main .worker-details .worker-header-card .worker-images .full {
  width: 160px;
  height: 220px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(22, 70, 95, 0.4);
}
main .worker-details .worker-header-card .worker-center {
  flex: 1;
}
main .worker-details .worker-header-card .worker-center .badge-top {
  background: #16465f;
  color: black;
  padding: 4px 12px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
}
main .worker-details .worker-header-card .worker-center h2 {
  font-size: 1.6rem;
  margin: 12px 0 8px;
}
main .worker-details .worker-header-card .worker-center .info-list,
main .worker-details .worker-header-card .worker-center .mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}
main .worker-details .worker-header-card .worker-center .info-list li,
main .worker-details .worker-header-card .worker-center .info-list span,
main .worker-details .worker-header-card .worker-center .mini-tags li,
main .worker-details .worker-header-card .worker-center .mini-tags span {
  background: #f1f5f9;
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.8rem;
}
main .worker-details .worker-header-card .worker-center .language-skill {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 15px 0;
}
main .worker-details .worker-header-card .worker-center .language-skill .progress-bar {
  flex: 1;
  height: 6px;
  background: #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}
main .worker-details .worker-header-card .worker-center .language-skill .progress-bar .progress {
  height: 100%;
  background: #16465f;
  border-radius: 10px;
}
main .worker-details .worker-header-card .worker-center .qr-code {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
}
main .worker-details .worker-header-card .worker-center .qr-code img {
  width: 45px;
}
main .worker-details .worker-header-card .worker-center .video-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid #16465f;
  padding: 8px 20px;
  border-radius: 40px;
  color: #16465f;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
main .worker-details .worker-header-card .worker-center .video-btn:hover {
  background: #16465f;
  color: black;
}
main .worker-details .worker-header-card .worker-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
main .worker-details .worker-header-card .worker-actions button {
  background: white;
  border: 1px solid #16465f;
  color: #16465f;
  padding: 10px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  white-space: nowrap;
}
main .worker-details .worker-header-card .worker-actions button:hover {
  background: #16465f;
  color: black;
}
main .worker-details .info-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
main .worker-details .info-card h5 {
  font-size: 1.1rem;
  margin-bottom: 16px;
}
main .worker-details .info-card h5 i {
  color: #16465f;
  margin-left: 6px;
}
main .worker-details .skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
}
main .worker-details .skills-grid span {
  background: #f1f5f9;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 0.8rem;
  text-align: center;
}
main .worker-details .experience-empty {
  text-align: center;
  padding: 20px;
  color: #828483;
}
main .worker-details .experience-empty i {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}
main .worker-details .profile-card .grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
  font-size: 13px;
  margin-bottom: 8px;
}
main .worker-details .profile-card .price-box {
  background: #fef2f2;
  border-radius: 16px;
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
main .worker-details .profile-card .price-box strong {
  color: #dc2626;
}
main .worker-details .profile-card .price-box.light {
  background: #f9fafb;
}
main .worker-details .profile-card .price-box.light strong {
  color: black;
}
main .worker-details .profile-card .skills span {
  background: #f1f5f9;
  padding: 6px 12px;
  border-radius: 30px;
  margin: 4px;
  display: inline-block;
}
main .worker-details .profile-card .lang-bar .bar {
  background: #e2e8f0;
  height: 6px;
  border-radius: 10px;
  margin-top: 8px;
}
main .worker-details .profile-card .lang-bar .bar .fill {
  height: 100%;
  background: #16465f;
  border-radius: 10px;
}
main .worker-details .profile-card .qr-box img {
  width: 100px;
  margin: 10px auto;
  display: block;
}
main .worker-details .profile-card .qr-box p {
  font-size: 0.75rem;
  color: #828483;
}
main .worker-details .profile-card .no-exp {
  color: #828483;
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  main .worker-details .worker-header-card {
    flex-direction: column;
  }
  main .worker-details .worker-header-card .worker-actions {
    flex-direction: row;
    justify-content: center;
  }
  main .worker-details .worker-header-card .worker-images {
    text-align: center;
  }
}
main .booking-modal form {
  box-shadow: none;
  padding: 10px;
}
main .booking-modal .auth-tabs {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
}
main .booking-modal .auth-tabs .tab-btn {
  flex: 1;
  padding: 10px;
  border: none;
  background: none;
  font-weight: 600;
  cursor: pointer;
  color: #777;
  transition: 0.3s;
}
main .booking-modal .auth-tabs .tab-btn.active {
  color: #16465f;
  border-bottom: 2px solid #16465f;
}
main .booking-modal .switch-auth {
  margin-top: 10px;
  font-size: 13px;
}
main .booking-modal .switch-auth a {
  color: #16465f;
  font-weight: 600;
  text-decoration: none;
  margin-right: 5px;
}
main .booking-modal .tab-content {
  display: none;
  text-align: right;
}
main .booking-modal .tab-content.active {
  display: block;
}
main .booking-modal .form-group {
  margin-bottom: 15px;
  text-align: right;
}
main .booking-modal .form-group label {
  font-size: 13px;
  margin-bottom: 5px;
  display: block;
}
main .booking-modal .form-group input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
}
main .booking-modal .phone-input {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}
main .booking-modal .phone-input span {
  background: #f3f4f6;
  padding: 10px;
  font-size: 13px;
}
main .booking-modal .phone-input input {
  border: none;
  flex: 1;
}
main .booking-modal .agents {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
main .booking-modal .agent-item {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  width: 200px;
  cursor: pointer;
  transition: 0.3s;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
main .booking-modal .agent-item img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .booking-modal .agent-item:hover {
  border-color: #16465f;
  transform: translateY(-3px);
}
main .booking-modal .agent-item.active {
  border-color: #16465f;
  background: rgba(22, 70, 95, 0.05);
}
main .booking-modal .agent-item .agents {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
main .booking-modal .agent-item .call-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  padding: 8px 14px;
  border-radius: 10px;
  background: #16465f;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
main .booking-modal .agent-item .call-btn i {
  font-size: 0.8rem;
}
main .booking-modal .agent-item .call-btn:hover {
  background: rgb(15, 51, 68);
  transform: translateY(-2px);
}
main .booking-modal .submit-btn,
main .booking-modal .confirm-btn {
  background: #16465f;
  color: white;
  padding: 12px;
  border-radius: 10px;
  border: none;
  width: 100%;
  cursor: pointer;
}
main .booking-modal .submit-btn:hover,
main .booking-modal .confirm-btn:hover {
  opacity: 0.9;
}
main .request-success {
  padding: 80px 0;
  background: #f7f7f7;
}
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-box {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
}
main .request-success .card-box .phone {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}
main .request-success .card-box .phone i {
  color: #16465f;
  font-size: 14px;
}
main .request-success .card-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
}
main .request-success .card-box .order-id {
  background: #eaffea;
  color: #16465f;
  padding: 10px;
  border-radius: 12px;
  font-weight: bold;
  text-align: center;
  margin: 10px 0;
}
main .request-success .card-box .steps {
  margin-top: 10px;
}
main .request-success .card-box .steps ul {
  padding-right: 20px;
  list-style: decimal;
}
main .request-success .card-box .steps ul li {
  margin-bottom: 6px;
  font-size: 14px;
  padding-right: 10px;
  border-right: 2px solid #eee;
}
main .request-success .card-box .actions {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
main .request-success .card-box .actions .btn {
  flex: 1;
  min-width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
main .request-success .card-box .actions .btn i {
  font-size: 14px;
}
main .request-success .card-box .actions .btn {
  background: none;
  box-shadow: none;
}
main .request-success .card-box .actions .btn-light {
  background: #f3f4f6;
  color: #333;
}
main .request-success .card-box .actions .btn-light:hover {
  background: #e5e7eb;
  transform: translateY(-2px);
}
main .request-success .card-box .actions .btn-outline-secondary {
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #555;
}
main .request-success .card-box .actions .btn-outline-secondary:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  transform: translateY(-2px);
}
main .request-success .card-box .actions .btn-outline-primary {
  background: #eef2ff;
  color: #4f46e5;
}
main .request-success .card-box .actions .btn-outline-primary:hover {
  background: #e0e7ff;
  transform: translateY(-2px);
}
main .request-success .card-box .actions .btn-success {
  background: #16465f;
  color: #fff;
  font-weight: 600;
}
main .request-success .card-box .actions .btn-success:hover {
  background: #2ca8e0;
  transform: translateY(-2px) scale(1.02);
}
main .request-success .card-box .stars {
  display: flex;
  gap: 8px;
  font-size: 22px;
  color: #ccc;
  margin: 10px 0;
}
main .request-success .card-box .stars i {
  cursor: pointer;
  transition: 0.3s;
}
main .request-success .card-box .stars i:hover, main .request-success .card-box .stars i.active {
  color: #2ca8e0;
}
main .request-success .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 .char-count {
  text-align: left;
  font-size: 12px;
  color: #888;
  margin-top: 5px;
}
main .request-success .card-box .submit-review {
  margin-top: 10px;
  background: #22c55e;
  color: #fff;
  border-radius: 10px;
  padding: 10px;
}
main .request-success .card-box .submit-review:hover {
  opacity: 0.9;
}
main .track-order .track-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
  border: 1px solid rgba(22, 70, 95, 0.4);
}
main .track-order .track-box h2 {
  margin-bottom: 10px;
  font-weight: 700;
}
main .track-order .track-box p {
  color: #777;
}
main .track-order .track-box .track-form {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
main .track-order .track-box .track-form input {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
  min-width: 200px;
}
main .track-order .track-box .track-form .track-btn {
  background: #16465f;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
main .track-order .track-box .track-form .track-btn:hover {
  opacity: 0.9;
}
main .track-order .track-result {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
main .track-order .top-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
main .track-order .order-summary {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(22, 70, 95, 0.4);
}
main .track-order .order-summary .summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 10px;
}
main .track-order .order-summary .status {
  padding: 4px 10px;
  border-radius: 8px;
}
main .track-order .order-summary .status.active {
  background: #eaffea;
  color: #16a34a;
}
main .track-order .timeline {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  gap: 10px;
  border: 1px solid rgba(22, 70, 95, 0.4);
}
main .track-order .timeline::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: #eee;
  z-index: 0;
}
main .track-order .timeline .step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
main .track-order .timeline .step .icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
main .track-order .timeline .step .content h6 {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
}
main .track-order .timeline .step .content p {
  margin: 0;
  font-size: 12px;
  color: #777;
}
main .track-order .timeline .step.done .icon {
  background: #22c55e;
  color: #fff;
}
main .track-order .timeline .step.active .icon {
  background: #2ca8e0;
  color: #fff;
}
main .track-order {
  /* RESPONSIVE */
}
@media (max-width: 768px) {
  main .track-order .top-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  main .track-order .timeline {
    flex-direction: column;
    align-items: flex-start;
  }
  main .track-order .timeline::before {
    display: none;
  }
  main .track-order .timeline .step {
    flex-direction: row;
    text-align: right;
    width: 100%;
  }
}
main .page-content {
  background-image: url(../images/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  min-height: 100vh;
  padding: 90px 0px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  main .page-content {
    padding: 60px 10px;
    min-height: auto;
  }
}
main .page-content .login-section {
  width: 100%;
}
main .page-content .login-section form {
  background: transparent;
  box-shadow: none;
  padding: 0;
}
main .page-content .login-section .login-content {
  width: 100%;
  margin: auto;
  padding: 25px;
}
@media (max-width: 576px) {
  main .page-content .login-section .login-content {
    margin-top: 40px;
  }
}
main .page-content .login-section .login-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
}
main .page-content .login-section .login-detail.centered {
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 25px 15px;
  border: 1px solid rgba(22, 70, 95, 0.4);
}
main .page-content .login-section .login-detail .login-logo {
  text-align: center;
  border-bottom: 1px solid #efefef;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
main .page-content .login-section .login-detail .login-logo img {
  max-width: 150px;
  margin: auto;
}
main .page-content .login-section .login-detail .login-detail-inner .login-title {
  text-align: center;
}
main .page-content .login-section .login-detail .login-detail-inner .login-title span {
  font-size: 28px;
  margin-bottom: 25px;
  display: block;
  font-weight: 600;
}
main .page-content .login-section .login-detail .login-detail-inner p {
  text-align: center;
  font-size: 14px;
  margin-bottom: 15px;
  color: #666;
}
main .page-content .login-section .login-detail .login-detail-inner .login-form .form-group {
  margin-bottom: 15px;
}
main .page-content .login-section .login-detail .login-detail-inner .login-form input {
  height: 45px;
  border-radius: 8px;
  font-size: 14px;
}
main .page-content .login-section .login-detail .login-detail-inner .login-form input::-moz-placeholder {
  direction: rtl;
  text-align: right;
}
main .page-content .login-section .login-detail .login-detail-inner .login-form input::placeholder {
  direction: rtl;
  text-align: right;
}
main .page-content .login-section .login-detail .login-detail-inner .login-form input:focus {
  border-color: #16465f;
  box-shadow: 0 0 0 0.2rem rgba(22, 70, 95, 0.2);
}
main .page-content .login-section .login-detail .login-detail-inner .form-check.custom-check {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 5px;
}
main .page-content .login-section .login-detail .login-detail-inner .form-check.custom-check > div {
  display: flex;
  align-items: center;
  gap: 6px;
}
main .page-content .login-section .login-detail .login-detail-inner .form-check.custom-check > div input {
  margin: 0;
  accent-color: #16465f;
  cursor: pointer;
  height: auto;
}
main .page-content .login-section .login-detail .login-detail-inner .form-check.custom-check > div label {
  margin: 0;
  cursor: pointer;
}
main .page-content .login-section .login-detail .login-detail-inner .form-check.custom-check .site-text-primary {
  color: #16465f;
  text-decoration: none;
  font-size: 14px;
}
main .page-content .login-section .login-detail .login-detail-inner .form-check.custom-check .site-text-primary:hover {
  text-decoration: underline;
}
main .page-content .login-section .login-detail .login-detail-inner .site-button {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background-color: #16465f;
  border: none;
  font-weight: 600;
  color: white !important;
  transition: 0.3s;
}
main .page-content .login-section .login-detail .login-detail-inner .site-button:hover {
  opacity: 0.9;
}
main .page-content .login-section .login-detail .login-detail-inner .new-account {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
}
main .page-content .login-section .login-detail .login-detail-inner .new-account a {
  color: #16465f;
  text-decoration: underline;
}
main .page-content .login-section .login-detail .login-detail-inner .otp-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 15px 0;
  direction: ltr;
}
main .page-content .login-section .login-detail .login-detail-inner .otp-wrapper .otp-input {
  width: 55px;
  height: 55px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
  transition: 0.2s;
}
main .page-content .login-section .login-detail .login-detail-inner .otp-wrapper .otp-input:focus {
  border-color: #16465f;
  box-shadow: 0 0 0 0.2rem rgba(22, 70, 95, 0.2);
}
main .selectedCustomer {
  background-color: white;
  width: min(100% - 24px, 600px);
  margin: 100px auto 50px;
  padding: 80px 24px 24px;
  border-radius: 24px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12);
  text-align: center;
  position: relative;
}
main .selectedCustomer img {
  width: 100px;
  height: 100px;
  padding: 16px;
  border-radius: 50%;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border: 4px solid #f3f3f9;
}
main .selectedCustomer .massage {
  line-height: 1.8;
  font-size: 16px;
}
main .selectedCustomer .massage span {
  font-weight: bold;
  color: #16465f;
}
main .selectedCustomer .contactType {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  flex-wrap: wrap;
}
main .selectedCustomer .contactType .contact {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #16465f;
  padding: 10px 16px;
  border-radius: 16px;
  text-decoration: none;
  color: #16465f;
  transition: 0.3s;
}
main .selectedCustomer .contactType .contact i {
  font-size: 24px;
}
main .selectedCustomer .contactType .contact i.fa-phone {
  font-size: 20px;
}
main .selectedCustomer .contactType .contact p {
  margin: 0;
  white-space: nowrap;
}
main .selectedCustomer .contactType .contact:hover {
  background-color: #16465f;
  color: #fff;
}
main .profile {
  margin-top: 20px;
}
main .profile .profileNavCol {
  background-color: white;
  border-radius: 12px;
  padding: 5px;
  border: 1px solid rgba(22, 70, 95, 0.4);
  margin-bottom: 50px;
  position: sticky;
  top: 100px;
  left: 0;
  z-index: 2;
}
main .profile .profileNavCol a {
  padding: 13px;
  display: flex;
  align-items: center;
  color: #828483;
  margin: 5px 1px;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border-radius: 4px;
  border: 1px solid rgba(22, 70, 95, 0.4);
  border-color: #828483;
}
main .profile .profileNavCol .logout-form {
  margin: 5px 1px;
  padding: 0;
}
main .profile .profileNavCol .logout-button {
  width: 100%;
  padding: 13px;
  display: flex;
  align-items: center;
  color: #828483;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border-radius: 4px;
  border: 1px solid rgba(22, 70, 95, 0.4);
  border-color: #828483;
  background-color: transparent;
  text-align: start;
}
main .profile .profileNavCol a i {
  margin-left: 5px;
}
main .profile .profileNavCol .logout-button i {
  margin-left: 5px;
}
main .profile .profileNavCol a.active, main .profile .profileNavCol a:hover, main .profile .profileNavCol .logout-button:hover {
  background-color: #16465f;
  border: 1px solid rgba(22, 70, 95, 0.4);
  color: black;
}
@media (max-width: 760px) {
  main .profile .profileNavCol {
    margin-bottom: 10px;
  }
  main .profile .profileNavCol a {
    padding: 8px 10px;
    display: inline-flex;
    margin: 3px 0px;
    border-bottom: 1px solid rgba(22, 70, 95, 0.4);
    min-width: 48%;
  }
  main .profile .profileNavCol .logout-form {
    display: inline-flex;
    width: 48%;
    margin: 3px 0px;
  }
  main .profile .profileNavCol .logout-button {
    padding: 8px 10px;
    display: inline-flex;
    min-width: 100%;
    border-bottom: 1px solid rgba(22, 70, 95, 0.4);
  }
}
@media (max-width: 335px) {
  main .profile .profileNavCol {
    margin-bottom: 10px;
  }
  main .profile .profileNavCol a {
    padding: 8px 10px;
    display: inline-flex;
    margin: 3px 0px;
    border-bottom: 1px solid rgba(22, 70, 95, 0.4);
    min-width: 100%;
  }
  main .profile .profileNavCol .logout-form {
    width: 100%;
  }
  main .profile .profileNavCol .logout-button {
    min-width: 100%;
  }
}
main .profile .profileTitle {
  background-color: #f8f8f8;
  padding: 10px;
  margin-bottom: 20px;
}
main .profileContent .userHeader {
  background-color: white;
  color: #16465f;
  border-radius: 12px;
  border: 1px solid rgba(22, 70, 95, 0.4);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  padding: 20px;
}
@media (max-width: 768px) {
  main .profileContent .userHeader {
    padding: 10px;
  }
}
main .profileContent .userHeader .userInfo {
  position: relative;
  margin: 0px 10px;
}
main .profileContent .userHeader .userInfo img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 100%;
  border: 3px solid rgba(22, 70, 95, 0.2);
}
main .profileContent .userHeader .userInfo .userName {
  padding: 0px 10px;
}
main .profileContent .userHeader .userInfo .userName h3 {
  font-weight: bold;
  margin-bottom: 10px;
  color: black;
}
@media (max-width: 760px) {
  main .profileContent .userHeader .container {
    padding: 0px !important;
  }
  main .profileContent .userHeader .userInfo {
    padding: 20px 10px;
  }
  main .profileContent .userHeader .userInfo img {
    width: 80px;
    height: 80px;
  }
  main .profileContent .userHeader .userInfo span {
    margin: 0px 10px;
  }
}
main .profileContent .newOrder {
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  border: 1px solid rgba(22, 70, 95, 0.4);
  background: #16465f;
  color: white;
}
main .profileContent .newOrder i {
  font-size: 30px;
  margin: 0 20px;
}
main .profileContent .newOrder:hover {
  background: rgba(22, 70, 95, 0.2);
  color: #16465f;
}
main .profileContent .order {
  background-color: #fff;
  border: 1px solid rgba(22, 70, 95, 0.4);
}
main .profileContent .order .workerCvSlider {
  padding-bottom: 0px;
}
main .profileContent .order .workerCvSlider img {
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  cursor: zoom-in;
}
main .profileContent .order .swiper-button-prev,
main .profileContent .order .swiper-button-next {
  color: #16465f;
  width: 30px;
  height: 30px;
}
main .profileContent .order .swiper-button-prev:hover,
main .profileContent .order .swiper-button-next:hover {
  background-color: #828483;
  color: #16465f;
}
main .profileContent .order .swiper-button-prev::after, main .profileContent .order .swiper-button-prev::before,
main .profileContent .order .swiper-button-next::after,
main .profileContent .order .swiper-button-next::before {
  font-weight: 300;
  font-size: 20px;
}
main .profileContent .order ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
main .profileContent .order ul li {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  min-width: 49%;
  padding: 10px;
}
main .profileContent .order ul li h6 {
  color: #777;
}
main .profileContent .order ul li p {
  font-weight: bold;
  margin-right: 5px;
}
main .profileContent .order .profileCustomerInfo {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding: 5px;
  background-color: rgba(22, 70, 95, 0.2);
}
main .profileContent .order .profileCustomerInfo .info {
  display: flex;
  align-items: center;
}
main .profileContent .order .profileCustomerInfo .info img {
  height: 40px;
  width: 40px;
  margin: 0 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
main .profileContent .order .profileCustomerInfo .info .text h6 {
  font-weight: bold;
  margin-bottom: 10px;
  color: #16465f;
}
main .profileContent .order .profileCustomerInfo .info .text p {
  font-size: smaller !important;
}
main .profileContent .order .profileCustomerInfo .contact {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .profileContent .order .profileCustomerInfo .contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 20px;
  border-radius: 100px;
  border: 1px solid rgba(22, 70, 95, 0.4);
  color: #16465f;
  margin: 5px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
main .profileContent .order .profileCustomerInfo .contact a p {
  margin: 0;
}
main .profileContent .order .profileCustomerInfo .contact a i {
  font-size: 16px;
}
main .profileContent .order .profileCustomerInfo .contact a:hover {
  background-color: #16465f;
  color: white;
}
main .profileContent .order .cancel {
  color: #db1d00;
}
main .profileContent .order .done {
  color: #038735;
}
main .profileContent .order .orderStatus {
  padding: 10px;
  font-weight: bold;
}
main .profileContent .stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}
main .profileContent .stats-row .stat-card {
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(22, 70, 95, 0.4);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  flex: 1 1 200px;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: default;
}
main .profileContent .stats-row .stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -12px rgba(0, 0, 0, 0.2);
}
main .profileContent .stats-row .stat-card .stat-icon {
  width: 58px;
  height: 58px;
  background: rgba(22, 70, 95, 0.2);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #16465f;
}
main .profileContent .stats-row .stat-card .stat-info h4 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 5px;
  color: black;
}
main .profileContent .stats-row .stat-card .stat-info p {
  color: #666;
  font-weight: 500;
  margin: 0;
}
main .profileContent {
  /* Responsive for mobile */
}
@media (max-width: 768px) {
  main .profileContent .stats-row {
    flex-direction: column;
  }
}
main .profileContent .orders-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
main .profileContent .orders-grid .orders-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
}
main .profileContent .orders-grid .orders-header .orders-title {
  font-size: 20px;
  font-weight: 800;
  color: black;
  margin: 0;
}
main .profileContent .orders-grid .orders-header .view-all {
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: #0e3346;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}
main .profileContent .orders-grid .orders-header .view-all i {
  font-size: 12px;
  transition: 0.3s;
}
main .profileContent .orders-grid .orders-header .view-all:hover {
  color: #16465f;
}
main .profileContent .orders-grid .orders-header .view-all:hover i {
  transform: translateX(-4px);
}
main .profileContent .orders-grid {
  /* Order Card */
}
main .profileContent .orders-grid .order-card {
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(22, 70, 95, 0.4);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
main .profileContent .orders-grid .order-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
}
main .profileContent .orders-grid .order-card .order-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: #fefef5;
  border: 1px solid rgba(22, 70, 95, 0.4);
  flex-wrap: wrap;
}
main .profileContent .orders-grid .order-card .order-header .order-id {
  font-weight: 800;
  background: rgba(22, 70, 95, 0.2);
  padding: 6px 14px;
  border-radius: 60px;
  font-size: 0.85rem;
  color: #0e3346;
}
main .profileContent .orders-grid .order-card .order-header .order-status {
  padding: 6px 16px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 0.8rem;
}
main .profileContent .orders-grid .order-card .order-header .status-pending,
main .profileContent .orders-grid .order-card .order-header .status-new {
  background: #fff3e0;
  color: #e67e22;
}

main .profileContent .orders-grid .order-card .order-header .status-active,
main .profileContent .orders-grid .order-card .order-header .status-paid {
  background: #dcfce7;
            color: #166534;
}

main .profileContent .orders-grid .order-card .order-header .status-approved {
  background: rgba(22, 70, 95, 0.25);
  color: #6b7307;
}
main .profileContent .orders-grid .order-card .order-header .status-completed,
main .profileContent .orders-grid .order-card .order-header .status-done,
main .profileContent .orders-grid .order-card .order-header .status-closed,
main .profileContent .orders-grid .order-card .order-header .status-resolved {
  background: #e0f2fe;
  color: #0b5e7e;
}

main .profileContent .orders-grid .order-card .order-header .status-refused,
main .profileContent .orders-grid .order-card .order-header .status-cancelled
 {
  background: #fee2e2;
            color: #dc2626;
}

main .profileContent .orders-grid .order-card .order-body {
  padding: 22px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
main .profileContent .orders-grid .order-card .order-body .worker-media .cv-image {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}
main .profileContent .orders-grid .order-card .order-body .worker-media .cv-image img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  border: 2px solid rgba(22, 70, 95, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
main .profileContent .orders-grid .order-card .order-body .worker-media .cv-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  border-color: #16465f;
}
main .profileContent .orders-grid .order-card .order-body .order-details {
  flex: 2;
  min-width: 220px;
}
main .profileContent .orders-grid .order-card .order-body .order-details .info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
main .profileContent .orders-grid .order-card .order-body .order-details .info-grid .info-item {
  display: flex;
  flex-direction: column;
  background: rgba(22, 70, 95, 0.05);
  padding: 10px 12px;
  border-radius: 18px;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
main .profileContent .orders-grid .order-card .order-body .order-details .info-grid .info-item:hover {
  background: rgba(22, 70, 95, 0.12);
}
main .profileContent .orders-grid .order-card .order-body .order-details .info-grid .info-item h6 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888;
  margin-bottom: 4px;
}
main .profileContent .orders-grid .order-card .order-body .order-details .info-grid .info-item p {
  font-weight: 700;
  font-size: 0.95rem;
  color: black;
  margin: 0;
}
main .profileContent .orders-grid .order-card .order-body .order-details .customer-section {
  margin-top: 16px;
  background: rgba(22, 70, 95, 0.2);
  border-radius: 20px;
  padding: 14px 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
main .profileContent .orders-grid .order-card .order-body .order-details .customer-section .customer-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
main .profileContent .orders-grid .order-card .order-body .order-details .customer-section .customer-info img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  background: white;
  padding: 3px;
  border: 1px solid rgba(22, 70, 95, 0.5);
}
main .profileContent .orders-grid .order-card .order-body .order-details .customer-section .customer-info .customer-text h6 {
  font-weight: 800;
  color: #0e3346;
  margin-bottom: 2px;
}
main .profileContent .orders-grid .order-card .order-body .order-details .customer-section .customer-info .customer-text p {
  font-size: 12px;
  color: #555;
  margin: 0;
}
main .profileContent .orders-grid .order-card .order-body .order-details .customer-section .contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
main .profileContent .orders-grid .order-card .order-body .order-details .customer-section .contact-actions .contact-btn {
  background: white;
  border-radius: 12px;
  padding: 8px 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0e3346;
  border: 1px solid rgba(22, 70, 95, 0.5);
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
}
main .profileContent .orders-grid .order-card .order-body .order-details .customer-section .contact-actions .contact-btn i {
  font-size: 14px;
}
main .profileContent .orders-grid .order-card .order-body .order-details .customer-section .contact-actions .contact-btn:hover {
  background: #16465f;
  color: black;
  border-color: #16465f;
  transform: translateY(-2px);
}
main .profileContent .orders-grid .order-card .order-body .order-details .customer-section .contact-actions .cancel-btn {
  background: rgba(211, 47, 47, 0.08);
  color: #d32f2f;
  border-color: rgba(211, 47, 47, 0.3);
}
main .profileContent .orders-grid .order-card .order-body .order-details .customer-section .contact-actions .cancel-btn:hover {
  background: #d32f2f;
  color: white;
  border-color: #d32f2f;
}
main .profileContent .orders-grid .worker-media .title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  color: black;
  display: flex;
  align-items: center;
  gap: 6px;
}
main .profileContent .orders-grid .worker-media .title i {
  color: #0e3346;
}
main .profileContent .orders-grid .worker-media {
  /* 🔥 Swiper support */
}
main .profileContent .orders-grid .worker-media .swiper.workerCvSlider {
  width: 100%;
}
main .profileContent .orders-grid .worker-media .swiper.workerCvSlider .swiper-wrapper {
  display: flex;
  gap: 10px;
}
main .profileContent .orders-grid .worker-media .swiper.workerCvSlider .swiper-slide {
  width: auto !important;
}
main .profileContent .orders-grid .worker-media .swiper.workerCvSlider a {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(22, 70, 95, 0.3);
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
main .profileContent .orders-grid .worker-media .swiper.workerCvSlider a:hover {
  transform: scale(1.03);
  border-color: #16465f;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}
main .profileContent .orders-grid .worker-media .swiper.workerCvSlider a img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
main .profileContent {
  /* Responsive */
}
@media (max-width: 768px) {
  main .profileContent .orders-grid .order-card .order-body {
    flex-direction: column;
  }
}
main .profileContentCol {
  padding: 24px;
}
main .profileContentCol__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  color: black;
}
main .profileContentCol__desc {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
  line-height: 1.6;
}
main .profileContentCol .editProfileForm .form-label {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 6px;
  color: black;
}
main .profileContentCol .editProfileForm .form-control {
  border-radius: 10px;
  padding: 10px 12px;
  border: 1px solid #e5e5e5;
  font-size: 14px;
  transition: 0.3s;
}
main .profileContentCol .editProfileForm .form-control:focus {
  border-color: #16465f;
  box-shadow: 0 0 0 3px rgba(22, 70, 95, 0.15);
}
main .profileContentCol .editProfileForm .site-button {
  background: #16465f;
  color: white;
  border: none;
  padding: 12px;
  font-weight: 700;
  border-radius: 10px;
  transition: 0.3s;
}
main .profileContentCol .editProfileForm .site-button:hover {
  background: #2ca8e0;
  transform: translateY(-2px);
}
main .notifications {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
main .notifications .section-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: black;
}
main .notifications .notification-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: white;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(22, 70, 95, 0.2);
  transition: 0.3s;
}
main .notifications .notification-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
main .notifications .notification-card .notif-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(22, 70, 95, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
main .notifications .notification-card .notif-icon i {
  color: #0e3346;
  font-size: 16px;
}
main .notifications .notification-card .notif-content {
  flex: 1;
}
main .notifications .notification-card .notif-content h6 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
  color: black;
}
main .notifications .notification-card .notif-content p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}
main .notifications .notification-card .notif-time {
  font-size: 12px;
  color: #999;
  white-space: nowrap;
  margin-top: 4px;
}
main .complaints .complaints-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
main .complaints .complaints-header h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0;
}
main .complaints .complaints-header .add-btn {
  background: #16465f;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}
main .complaints .complaints-header .add-btn:hover {
  background: #2ca8e0;
  transform: translateY(-2px);
}
main .complaints .complaints-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
}
main .complaints .complaints-table thead {
  background: #f9f9f9;
}
main .complaints .complaints-table thead th {
  padding: 12px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
main .complaints .complaints-table tbody td {
  padding: 12px;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid #eee;
}
main .complaints .complaints-table tbody a {
  color: #16465f;
  font-weight: 700;
}
main .complaints .complaints-table tbody .status {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
main .complaints .complaints-table tbody .pending {
  background: #fff3e0;
  color: #e67e22;
}
main .complaints .complaints-table tbody .solved {
  background: rgba(22, 70, 95, 0.2);
  color: #0e3346;
}
main .complaintModal .modal-content {
  border-radius: 12px;
  padding: 20px;
  position: relative;
}
main .complaintModal form {
  box-shadow: none;
  gap: 15px;
  padding: 10px;
}
main .complaintModal .closeBtn {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #f5f5f5;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}
main .complaintModal .closeBtn i {
  font-size: 14px;
}
main .complaintModal .closeBtn:hover {
  background: #e0e0e0;
}
main .complaintModal .modal-body {
  text-align: center;
}
main .complaintModal .modal-body .title {
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 6px;
  color: black;
}
main .complaintModal .modal-body .subtitle {
  font-size: 13px;
  color: #777;
  margin-bottom: 20px;
}
main .complaintModal .modal-body .form-group {
  margin-bottom: 12px;
}
main .complaintModal .modal-body .form-group .form-control {
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #eee;
}
main .complaintModal .modal-body .form-group .form-control:focus {
  border-color: #16465f;
  box-shadow: 0 0 0 3px rgba(22, 70, 95, 0.15);
}
main .complaintModal .modal-body .form-group textarea {
  resize: none;
}
main .complaintModal .modal-body .file-upload {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: start;
}
main .complaintModal .modal-body .file-upload label {
  font-size: 12px;
  color: #666;
}
main .complaintModal .modal-body .file-upload .upload-box {
  position: relative;
  border: 2px dashed rgba(22, 70, 95, 0.4);
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  transition: 0.3s;
  background: rgba(22, 70, 95, 0.05);
}
main .complaintModal .modal-body .file-upload .upload-box:hover {
  border-color: #16465f;
  background: rgba(22, 70, 95, 0.1);
}
main .complaintModal .modal-body .file-upload .upload-box input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
main .complaintModal .modal-body .file-upload .upload-box .upload-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #0e3346;
}
main .complaintModal .modal-body .file-upload .upload-box .upload-content i {
  font-size: 16px;
}
main .complaintModal .modal-body .file-upload .file-name {
  font-size: 12px;
  color: #888;
  margin: 0;
}
main .complaintModal .modal-body .form-select {
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #eee;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='%23666' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 7l4.5 4.5L14.5 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 10px center;
  background-size: 16px;
  padding-left: 30px;
}
main .complaintModal .modal-body .form-select:focus {
  border-color: #16465f;
  box-shadow: 0 0 0 3px rgba(22, 70, 95, 0.15);
}
main .complaintModal .modal-body .submitBtn {
  background: #16465f;
  color: white;
  border-radius: 12px;
  padding: 10px;
  font-weight: 700;
  transition: 0.3s;
}
main .complaintModal .modal-body .submitBtn:hover {
  background: #2ca8e0;
  transform: translateY(-2px);
}
main .contractRenew .form-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px;
}
@media (max-width: 768px) {
  main .contractRenew .form-wrapper {
    padding: 24px;
  }
}
main .contractRenew form {
  box-shadow: none;
  background-color: transparent;
  gap: 10px;
}
main .contractRenew .renewal-form .form-row-split {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
main .contractRenew .renewal-form .form-row-split .client-block {
  flex: 3;
  min-width: 250px;
}
main .contractRenew .renewal-form .form-row-split .worker-block {
  flex: 9;
  min-width: 300px;
}
@media (max-width: 992px) {
  main .contractRenew .renewal-form .form-row-split {
    flex-direction: column;
  }
  main .contractRenew .renewal-form .form-row-split .client-block,
  main .contractRenew .renewal-form .form-row-split .worker-block {
    flex: auto;
    width: 100%;
  }
}
main .contractRenew .renewal-form .form-block {
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(22, 70, 95, 0.4);
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
main .contractRenew .renewal-form .form-block:hover {
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
}
main .contractRenew .renewal-form .block-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  border-right: 4px solid #16465f;
  padding-right: 16px;
}
main .contractRenew .renewal-form .block-title i {
  font-size: 1.5rem;
  color: #16465f;
}
main .contractRenew .renewal-form .block-title h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  color: black;
}
main .contractRenew .renewal-form .form-grid--1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
main .contractRenew .renewal-form .form-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  main .contractRenew .renewal-form .form-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  main .contractRenew .renewal-form .form-grid--3 {
    grid-template-columns: 1fr;
  }
}
main .contractRenew .renewal-form .input-group-custom label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: black;
  margin-bottom: 8px;
}
main .contractRenew .renewal-form .input-group-custom input,
main .contractRenew .renewal-form .input-group-custom select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  background: white;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  font-size: 0.9rem;
  color: black;
}
main .contractRenew .renewal-form .input-group-custom input:focus,
main .contractRenew .renewal-form .input-group-custom select:focus {
  border-color: #16465f;
  outline: none;
  box-shadow: 0 0 0 3px rgba(22, 70, 95, 0.2);
}
main .contractRenew .renewal-form .phone-input {
  display: flex;
  align-items: center;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: white;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  overflow: hidden;
}
main .contractRenew .renewal-form .phone-input:focus-within {
  border-color: #16465f;
  box-shadow: 0 0 0 3px rgba(22, 70, 95, 0.2);
}
main .contractRenew .renewal-form .phone-input span {
  background: #f1f5f9;
  padding: 12px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: black;
  border-left: 1.5px solid #e2e8f0;
}
main .contractRenew .renewal-form .phone-input input {
  border: none;
  border-radius: 0;
  padding: 12px 16px;
  flex: 1;
}
main .contractRenew .renewal-form .phone-input input:focus {
  box-shadow: none;
  border: none;
}
main .contractRenew .renewal-form .file-upload.modern label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: black;
  margin-bottom: 8px;
}
main .contractRenew .renewal-form .file-upload.modern .file-dropzone {
  background: #f8fafc;
  border: 2px dashed #cbd5e1;
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
main .contractRenew .renewal-form .file-upload.modern .file-dropzone i {
  font-size: 2rem;
  color: #16465f;
  margin-bottom: 12px;
  display: block;
}
main .contractRenew .renewal-form .file-upload.modern .file-dropzone span {
  font-size: 0.85rem;
  color: #828483;
}
main .contractRenew .renewal-form .file-upload.modern .file-dropzone:hover {
  border-color: #16465f;
  background: rgba(22, 70, 95, 0.2);
}
main .contractRenew .renewal-form .file-upload.modern .file-info {
  display: block;
  font-size: 0.7rem;
  color: #828483;
  margin-top: 6px;
}
main .contractRenew .renewal-form .form-actions {
  text-align: center;
  margin-top: 32px;
}
main .contractRenew .renewal-form .btn-submit {
  background: #16465f;
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
main .contractRenew .renewal-form .btn-submit i {
  transition: transform 0.2s;
}
main .contractRenew .renewal-form .btn-submit:hover {
  background: #2ca8e0;
  color: white;
  transform: translateY(-2px);
}
main .contractRenew .renewal-form .btn-submit:hover i {
  transform: translateX(4px);
}
main .request-section {
  padding: 70px 0;
  background: white;
}
main .request-section .request-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
@media (max-width: 992px) {
  main .request-section .request-section__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
main .request-section .steps-horizontal .section-header {
  text-align: right;
  margin-bottom: 32px;
}
main .request-section .steps-horizontal .section-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: black;
  position: relative;
  display: inline-block;
}
main .request-section .steps-horizontal .section-header h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 50px;
  height: 3px;
  background: #16465f;
  border-radius: 4px;
}
main .request-section .steps-horizontal .section-header p {
  color: #828483;
  margin-top: 12px;
}
main .request-section .stepper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
main .request-section .stepper__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}
main .request-section .stepper__item:not(:last-child) .stepper__line {
  display: block;
}
main .request-section .stepper__circle {
  width: 48px;
  height: 48px;
  background: #f1f5f9;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #828483;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  flex-shrink: 0;
  z-index: 2;
  background: white;
}
main .request-section .stepper__line {
  position: absolute;
  top: 48px;
  right: 23px;
  width: 2px;
  height: calc(100% - 16px);
  background: #e2e8f0;
  display: none;
}
main .request-section .stepper__content {
  flex: 1;
  padding-bottom: 8px;
}
main .request-section .stepper__content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: black;
}
main .request-section .stepper__content p {
  font-size: 0.85rem;
  color: #828483;
  margin: 0;
  line-height: 1.5;
}
main .request-section .stepper__item.completed .stepper__circle {
  background: #16465f;
  border-color: #16465f;
  color: black;
}
main .request-section .stepper__item.completed .stepper__line {
  background: #16465f;
}
main .request-section .stepper__item.active .stepper__circle {
  background: rgba(22, 70, 95, 0.2);
  border-color: #16465f;
  color: rgb(15, 51, 68);
  box-shadow: 0 0 0 4px rgba(22, 70, 95, 0.2);
}
main .request-section .stepper__item.active h4 {
  color: rgb(15, 51, 68);
}
main .request-section form {
  box-shadow: none;
  padding: 10px;
  background-color: transparent;
}
main .request-section .form-container .form-wrapper {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafc 100%);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(22, 70, 95, 0.4);
}
@media (max-width: 768px) {
  main .request-section .form-container .form-wrapper {
    padding: 24px;
  }
}
main .request-section .form-container .form-header {
  text-align: center;
  margin-bottom: 28px;
}
main .request-section .form-container .form-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: black;
}
main .request-section .form-container .form-header h3 i {
  color: #16465f;
  margin-left: 8px;
}
main .request-section .form-container .form-header p {
  color: #828483;
  font-size: 0.85rem;
  margin-top: 6px;
}
main .request-section .form-container .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
main .request-section .form-container .form-grid .full-width {
  grid-column: span 2;
}
@media (max-width: 768px) {
  main .request-section .form-container .form-grid {
    grid-template-columns: 1fr;
  }
  main .request-section .form-container .form-grid .full-width {
    grid-column: span 1;
  }
}
main .request-section .form-container .input-group-custom label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: black;
}
main .request-section .form-container .input-group-custom input,
main .request-section .form-container .input-group-custom select,
main .request-section .form-container .input-group-custom textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  background: white;
  font-size: 0.85rem;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
main .request-section .form-container .input-group-custom input:focus,
main .request-section .form-container .input-group-custom select:focus,
main .request-section .form-container .input-group-custom textarea:focus {
  border-color: #16465f;
  outline: none;
  box-shadow: 0 0 0 3px rgba(22, 70, 95, 0.2);
}
main .request-section .form-container .input-group-custom textarea {
  resize: vertical;
  min-height: 90px;
}
main .request-section .form-container .phone-input {
  display: flex;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: white;
  overflow: hidden;
}
main .request-section .form-container .phone-input:focus-within {
  border-color: #16465f;
  box-shadow: 0 0 0 3px rgba(22, 70, 95, 0.2);
}
main .request-section .form-container .phone-input span {
  background: #f1f5f9;
  padding: 10px 12px;
  font-weight: 600;
  border-left: 1.5px solid #e2e8f0;
}
main .request-section .form-container .phone-input input {
  border: none;
  padding: 10px 14px;
  flex: 1;
}
main .request-section .form-container .phone-input input:focus {
  box-shadow: none;
}
main .request-section .form-container .form-actions {
  text-align: center;
  margin-top: 28px;
}
main .request-section .form-container .btn-submit {
  background: #16465f;
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
main .request-section .form-container .btn-submit:hover {
  background: #2ca8e0;
  color: white;
  transform: translateY(-2px);
}
main .request-section .form-container .btn-submit:hover i {
  transform: translateX(4px);
}
@media (max-width: 768px) {
  main .request-section .stepper {
    gap: 24px;
  }
  main .request-section .stepper__circle {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  main .request-section .stepper__line {
    top: 40px;
    right: 19px;
  }
  main .request-section .stepper__content h4 {
    font-size: 1rem;
  }
}
main .why-creative {
  padding: 80px 0;
  background: rgba(250, 249, 249, 0.75);
  position: relative;
  overflow: hidden;
}
main .why-creative::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 80%;
  height: 120%;
  background: radial-gradient(circle, rgba(22, 70, 95, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
main .why-creative .section-header {
  text-align: center;
  margin-bottom: 56px;
}
main .why-creative .section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: black;
  position: relative;
  display: inline-block;
}
main .why-creative .section-header h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  right: 50%;
  transform: translateX(50%);
  width: 70px;
  height: 4px;
  background: #16465f;
  border-radius: 4px;
}
main .why-creative .section-header p {
  color: #828483;
  margin-top: 20px;
  font-size: 1rem;
}
main .why-creative__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  main .why-creative__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  main .why-creative__grid {
    grid-template-columns: 1fr;
  }
}
main .why-creative .creative-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 40px 28px;
  text-align: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid rgba(22, 70, 95, 0.1);
  overflow: hidden;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  cursor: default;
  transform: translateY(-8px);
  border-color: #16465f;
  background: white;
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
}
main .why-creative .creative-card .creative-card__bg-icon {
  opacity: 0.1;
  transform: scale(1.05);
}
main .why-creative .creative-card .creative-card__bg-icon i {
  color: rgb(15, 51, 68);
}
main .why-creative .creative-card h3 {
  color: rgb(15, 51, 68);
}
main .why-creative .creative-card__bg-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.08;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  z-index: 0;
}
main .why-creative .creative-card__bg-icon i {
  font-size: 12rem;
  color: black;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
main .why-creative .creative-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
main .why-creative .creative-card p {
  font-size: 0.9rem;
  color: #828483;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
main .why-creative .creative-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(22, 70, 95, 0.05));
  pointer-events: none;
  z-index: 1;
}
main .journey-services {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
main .journey-services::before {
  content: "";
  position: absolute;
  top: 14%;
  right: 0%;
  width: 400px;
  height: 400px;
  background: url("../images/musand.svg") no-repeat center;
  background-size: contain;
  transform: translateY(-50%);
  opacity: 0.07;
  pointer-events: none;
}
main .journey-services .journey-services__wrapper {
  display: flex;
  align-items: stretch;
  gap: 50px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  main .journey-services .journey-services__wrapper {
    flex-direction: column;
  }
}
main .journey-services__content {
  flex: 1.5;
  padding: 40px;
  border-right: 5px solid #16465f;
  position: relative;
}
main .journey-services__content::before {
  content: '"';
  position: absolute;
  top: 50px;
  right: 30px;
  font-size: 5rem;
  color: rgba(22, 70, 95, 0.1);
  font-family: serif;
}
main .journey-services__content .logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(22, 70, 95, 0.2);
  padding: 6px 18px;
  border-radius: 12px;
  margin-bottom: 20px;
}
main .journey-services__content .logo-badge img {
  width: 50px;
}
main .journey-services__content .logo-badge span {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgb(15, 51, 68);
}
main .journey-services__content h1 {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 25px 0;
  line-height: 1.3;
}
main .journey-services__content h1 .highlight {
  color: rgb(15, 51, 68);
  display: inline-block;
}
main .journey-services__content p {
  color: #828483;
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 0.9rem;
}
main .journey-services__services {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
}
main .journey-services .service-stair {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 20px;
  background: white;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(22, 70, 95, 0.1);
  cursor: pointer;
}
main .journey-services .service-stair:nth-child(1) {
  transform: translateX(0);
}
main .journey-services .service-stair:nth-child(2) {
  transform: translateX(20px);
}
main .journey-services .service-stair:nth-child(3) {
  transform: translateX(40px);
}
main .journey-services .service-stair:hover {
  transform: translateX(25px) !important;
  background: white;
  border-color: #16465f;
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
}
main .journey-services .service-stair:hover .service-stair__icon {
  background: #16465f;
  transform: scale(1.1);
}
main .journey-services .service-stair:hover .service-stair__icon i {
  color: black;
}
main .journey-services .service-stair__icon {
  width: 50px;
  height: 50px;
  background: rgba(22, 70, 95, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  flex-shrink: 0;
}
main .journey-services .service-stair__icon i {
  font-size: 1.4rem;
  color: white;
  transition: 0.3s;
}
main .journey-services .service-stair__info {
  flex: 1;
}
main .journey-services .service-stair__info h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;
}
main .journey-services .service-stair__info p {
  font-size: 0.7rem;
  color: #828483;
  margin: 0;
}
@media (max-width: 768px) {
  main .journey-services .service-stair:nth-child(1) {
    transform: translateX(0);
  }
  main .journey-services .service-stair:nth-child(2) {
    transform: translateX(10px);
  }
  main .journey-services .service-stair:nth-child(3) {
    transform: translateX(20px);
  }
  main .journey-services .service-stair:hover {
    transform: translateX(15px) !important;
  }
}
main .process-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
main .process-section .process-header {
  text-align: center;
  margin-bottom: 60px;
}
main .process-section .process-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: black;
}
main .process-section .process-header h2 span {
  color: rgb(15, 51, 68);
  position: relative;
}
main .process-section .process-header p {
  color: #828483;
  margin-top: 16px;
}
main .process-section .process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  main .process-section .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  main .process-section .process-grid {
    grid-template-columns: 1fr;
  }
}
main .process-section .process-card {
  background: white;
  border-radius: 12px;
  padding: 30px 25px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(22, 70, 95, 0.4);
  overflow: hidden;
  cursor: pointer;
  text-align: center;
}
main .process-section .process-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 0;
  background: #16465f;
  transition: height 0.4s ease;
}
main .process-section .process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
  border-color: rgba(22, 70, 95, 0.3);
}
main .process-section .process-card:hover::before {
  height: 100%;
}
main .process-section .process-card:hover .process-card__icon i {
  transform: scale(1.2);
  color: rgb(15, 51, 68);
}
main .process-section .process-card__icon {
  margin: 0 auto 20px;
}
main .process-section .process-card__icon i {
  font-size: 2.8rem;
  color: white;
  transition: 0.3s;
}
main .process-section .process-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.4;
}
main .process-section .process-card p {
  font-size: 0.85rem;
  color: #828483;
  line-height: 1.6;
  margin-bottom: 20px;
}
main .process-section .process-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
main .process-section .process-card__details span {
  background: #f1f5f9;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.7rem;
  color: #828483;
}
main .musanedFees {
  background-color: #f9f9f9;
  padding: 70px 0;
  text-align: center;
}
main .musanedFees .headTitle h4 {
  margin-bottom: 10px;
}
main .musanedFees p {
  color: #777;
  line-height: 30px;
}
main .musanedFees .images {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: center;
}
main .musanedFees .images img {
  -o-object-fit: contain;
     object-fit: contain;
  margin: 5px;
  max-height: 70px;
  border-radius: 12px;
}
main .musanedApp {
  padding: 70px 0;
  background-color: #f9f9f9;
}
main .musanedApp .appImg {
  text-align: center;
}
main .musanedApp .appImg img {
  -o-object-fit: contain;
     object-fit: contain;
  min-height: 300px;
}
main .musanedApp .info {
  padding: 20px;
  background-color: white;
  border: 1px solid rgba(22, 70, 95, 0.4);
  border-radius: 12px;
  text-align: center;
}
main .musanedApp .info img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 120px;
  margin-bottom: 20px;
}
main .musanedApp .info h4 {
  color: #16465f;
  font-weight: bold;
  margin-bottom: 20px;
}
main .musanedApp .info p {
  color: black;
  line-height: 30px;
  margin-bottom: 30px;
}
main .musanedApp .info .links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
main .musanedApp .info .links img {
  width: 100%;
  height: 60px;
  margin: 0;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 5px;
}
@media (max-width: 768px) {
  main .musanedApp .info .links img {
    height: 50px;
  }
}
main .about-banner.card-banner .banner-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}
main .about-banner.card-banner .banner-buttons .btn-policy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  color: black;
  transition: 0.3s;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(22, 70, 95, 0.2);
}
main .about-banner.card-banner .banner-buttons .btn-policy i {
  font-size: 1.1rem;
  color: #16465f;
}
main .about-banner.card-banner .banner-buttons .btn-policy:hover {
  background: #16465f;
  transform: translateY(-3px);
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
}
main .about-banner.card-banner .banner-buttons .btn-policy:hover i {
  color: black;
}
main .guidelines-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
main .guidelines-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}
main .guidelines-section .section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: black;
}
main .guidelines-section .section-header p {
  max-width: 750px;
  margin: 16px auto 0;
  color: #828483;
  line-height: 1.7;
}
main .guidelines-section .section-header p strong {
  color: rgb(15, 51, 68);
}
main .guidelines-section .section-header p span {
  color: rgb(15, 51, 68);
  font-weight: 600;
}
main .guidelines-section .countries-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 auto;
}
main .guidelines-section {
  /* card */
}
main .guidelines-section .country-row {
  background: white;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: 0.3s;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(22, 70, 95, 0.4);
}
main .guidelines-section .country-row:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
  border-color: #16465f;
}
main .guidelines-section .country-row__flag {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .guidelines-section .country-row__info {
  flex: 1;
}
main .guidelines-section .country-row__info h3 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 4px;
}
main .guidelines-section .country-row__info p {
  font-size: 0.75rem;
  color: #828483;
}
main .guidelines-section .country-row__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
main .guidelines-section .country-row__links a {
  font-size: 0.7rem;
  padding: 6px 10px;
  border-radius: 20px;
  background: #f1f5f9;
  text-decoration: none;
  color: black;
  display: flex;
  align-items: center;
  gap: 6px;
}
main .guidelines-section .country-row__links a i {
  color: #ef4444;
}
main .guidelines-section .country-row__links a:hover {
  background: #16465f;
  color: black;
}
main .guidelines-section {
  /* responsive */
}
@media (max-width: 992px) {
  main .guidelines-section .countries-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  main .guidelines-section .countries-list {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  position: relative;
  background: #ffffff;
  color: #4a5560;
  padding: 70px 0 26px;
  border-top: 1px solid rgba(var(--brand-rgb), 0.1);
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), #2f7ea0, var(--brand));
}
.site-footer::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: 50%;
  width: 520px;
  height: 340px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.08), transparent 70%);
  pointer-events: none;
}
.site-footer .container {
  position: relative;
  z-index: 1;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(var(--brand-rgb), 0.12);
}
.site-footer__brand img {
  height: 88px;
  margin-bottom: 18px;
}
.site-footer__brand p {
  color: #5a6672;
  line-height: 1.9;
  max-width: 360px;
}
.site-footer__col h4 {
  position: relative;
  color: var(--brand-dark);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 22px;
  padding-bottom: 10px;
}
.site-footer__col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 38px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--brand), #2f7ea0);
}
.site-footer__col ul {
  display: grid;
  gap: 13px;
}
.site-footer__col ul li {
  color: #5a6672;
  display: flex;
  align-items: center;
  gap: 9px;
}
.site-footer__col ul li i {
  color: var(--brand);
  font-size: 0.9rem;
  width: 18px;
  text-align: center;
}
.site-footer__col ul a {
  color: #5a6672;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.site-footer__col ul a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  flex: 0 0 auto;
  background: var(--brand);
  transition: transform 0.25s ease;
}
.site-footer__col ul a:hover {
  color: var(--brand);
}
.site-footer__col ul a:hover::before {
  transform: rotate(45deg) scale(1.1);
}
.site-footer__bottom {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  color: #6b7682;
}
.site-footer__social {
  display: flex;
  gap: 10px;
}
.site-footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(var(--brand-rgb), 0.08);
  border: 1px solid rgba(var(--brand-rgb), 0.14);
  color: var(--brand);
  transition: 0.25s ease;
}
.site-footer__social a:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 22px -10px rgba(var(--brand-rgb), 0.7);
}
@media screen and (max-width: 992px) {
  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .site-footer__brand p {
    max-width: 100%;
  }
}
.site-swal-popup {
  width: min(32rem, calc(100vw - 2rem)) !important;
  padding: 2rem 1.5rem 1.5rem !important;
  border: 1px solid rgba(22, 70, 95, 0.18);
  border-radius: 28px !important;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbf3 100%) !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.14) !important;
}
.site-swal-title {
  margin-top: 0.5rem !important;
  color: #111111 !important;
  font-size: 1.7rem !important;
  font-weight: 800 !important;
  line-height: 1.4 !important;
}
.site-swal-text {
  color: #5f635c !important;
  font-size: 1rem !important;
  line-height: 1.9 !important;
}
.site-swal-actions {
  gap: 0.75rem;
  width: 100%;
  margin: 1.5rem 0 0 !important;
}
.site-swal-confirm,
.site-swal-cancel {
  min-width: 8.5rem;
  padding: 0.9rem 1.4rem !important;
  border-radius: 999px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.site-swal-confirm {
  background: #16465f !important;
  color: #111111 !important;
  box-shadow: 0 14px 28px rgba(22, 70, 95, 0.32);
}
.site-swal-confirm:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(22, 70, 95, 0.38);
}
.site-swal-cancel {
  background: #f2f3e7 !important;
  color: #1f2417 !important;
}
.site-swal-cancel:hover {
  transform: translateY(-1px);
  background: #e7ead3 !important;
}
.site-swal-close {
  color: #7d8077 !important;
}
.site-swal-popup .swal2-success-ring,
.site-swal-popup .swal2-success-fix,
.site-swal-popup .swal2-success-circular-line-left,
.site-swal-popup .swal2-success-circular-line-right {
  background: transparent !important;
}
.site-swal-errors {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: start;
}
.site-swal-errors li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-inline-start: 1.2rem;
}
.site-swal-errors li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.8rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: #16465f;
}
@media (max-width: 576px) {
  .site-swal-popup {
    padding: 1.6rem 1rem 1.1rem !important;
    border-radius: 22px !important;
  }
  .site-swal-title {
    font-size: 1.35rem !important;
  }
  .site-swal-confirm,
  .site-swal-cancel {
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */

main .booking {
  margin: 0 auto;
  background: white;
  padding: 30px 0;
  max-width: 1400px;
}
main .booking .booking-layout {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
main .booking .steps-sidebar {
  flex: 0 0 280px;
  width: 280px;
}
main .booking .steps-sidebar .steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
main .booking .steps-sidebar .steps .step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 18px;
  background: white;
  border: 1px solid #f1f5f9;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}
main .booking .steps-sidebar .steps .step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0%;
  background: #16465f;
  border-radius: 0 6px 6px 0;
  transition: 0.3s;
}
main .booking .steps-sidebar .steps .step:hover {
  transform: translateY(-4px);
  border-color: #16465f;
  box-shadow: 0 18px 30px -15px rgba(22, 70, 95, 0.25);
}
main .booking .steps-sidebar .steps .step:hover .step-icon {
  transform: scale(1.08);
}
main .booking .steps-sidebar .steps .step .step-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.25s;
}
main .booking .steps-sidebar .steps .step .step-icon img {
  width: 26px;
  height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.25s;
}
main .booking .steps-sidebar .steps .step .step-text {
  display: flex;
  flex-direction: column;
}
main .booking .steps-sidebar .steps .step .step-text small {
  font-size: 12px;
  color: #94a3b8;
}
main .booking .steps-sidebar .steps .step .step-text span {
  font-size: 15px;
  font-weight: 600;
  color: #334155;
}
main .booking .steps-sidebar .steps .step.active {
  border-color: #16465f;
  background: #dceaf3;
  box-shadow: 0 15px 25px -10px rgba(22, 70, 95, 0.15);
}
main .booking .steps-sidebar .steps .step.active::before {
  height: 70%;
}
main .booking .steps-sidebar .steps .step.active .step-icon {
  background: #dceaf3;
  border-color: #16465f;
  box-shadow: 0 6px 12px rgba(22, 70, 95, 0.25);
}
main .booking .steps-sidebar .steps .step.active .step-text span {
  color: black;
  font-weight: 700;
}
main .booking .steps-sidebar .steps .step.done {
  opacity: 0.7;
}
main .booking .steps-sidebar .steps .step.done .step-icon {
  background: #22c55e;
  border-color: #22c55e;
}
main .booking .steps-sidebar .steps .step.done .step-icon img {
  filter: brightness(0) invert(1);
}
main .booking .steps-sidebar .steps .step.done .step-text span {
  color: #16a34a;
}
main .booking .content-main {
  flex: 1;
  min-width: 0;
}
main .booking .step-pane {
  min-height: auto;
}
main .booking .step-pane h4 {
  padding: 0 20px;
}
main .booking .package-card {
  display: block;
  border: 1px solid #e1e2e4;
  border-radius: 12px;
  background: white;
  cursor: pointer;
  transition: all 0.3s;
  height: 100%;
  overflow: hidden;
}
main .booking .package-card .card-body {
  padding: 1.5rem;
}
main .booking .package-card:hover {
  border-color: #16465f;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
main .booking .package-card:has(input:checked) {
  border-color: #16465f;
  background-color: #F0F4C6;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
}
main .booking .package-card h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
main .booking .package-card .badge-offer {
  display: inline-block;
  margin: 8px 0;
  background: #e76f51;
  color: white;
  border-radius: 12px;
  padding: 4px 12px;
  font-size: 12px;
}
main .booking .package-card .price-before {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
}
main .booking .package-card .price-after {
  font-size: 22px;
  font-weight: bold;
  color: #16465f;
}
main .booking .package-card .tax-total {
  margin-top: 10px;
  background: white;
  padding: 10px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #eff1f3;
}
main .booking .package-card .tax-total strong {
  display: block;
  color: #16465f;
  font-size: 18px;
}
main .booking .address-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
main .booking .address-grid .address-card-option {
  flex: 1;
  min-width: 240px;
  cursor: pointer;
}
main .booking .address-grid .address-card-option .card-box {
  border: 1px solid #e1e2e4;
  background: white;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: 0.3s ease;
}
main .booking .address-grid .address-card-option .card-box .icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: rgba(210, 221, 86, 0.337254902);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #16465f;
  transition: 0.3s;
}
main .booking .address-grid .address-card-option .card-box h6 {
  font-weight: 700;
  margin: 5px 0;
}
main .booking .address-grid .address-card-option .card-box p {
  font-size: 0.85rem;
  color: #828483;
  margin: 0;
}
main .booking .address-grid .address-card-option:hover .card-box {
  transform: translateY(-5px);
  border-color: #16465f;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}
main .booking .address-grid .address-card-option:hover .card-box .icon {
  background: #16465f;
  color: white;
}
main .booking .address-grid .address-card-option input:checked + .card-box {
  border-color: #16465f;
  background: rgba(210, 221, 86, 0.337254902);
}
main .booking .address-grid .address-card-option input:checked + .card-box .icon {
  background: #16465f;
  color: white;
}
main .booking .confirm-box {
  padding: 20px;
  border: 1px solid rgba(22, 70, 95, 0.4);
  border-radius: 12px;
  background: white;
}
main .booking .btn {
  padding: 0.6rem 1.5rem;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  margin-top: 1rem;
  margin-left: 0.5rem;
}
main .booking .btn.btn-primary {
  background: #16465f;
  color: white;
}
main .booking .btn.btn-primary:hover {
  background: rgb(15, 51, 68);
}
main .booking .btn.btn-secondary {
  background: #e9ecef;
  color: #495057;
  border: 1px solid #ced4da;
}
main .booking .btn.btn-secondary:hover {
  background: white;
  color: #16465f;
  border-color: #16465f;
}
main .booking .btn.btn-success {
  background: #16465f;
  color: white;
}
main .booking .upload-area {
  border: 1px dashed rgba(22, 70, 95, 0.4);
  border-radius: 1rem;
  padding: 0.8rem;
  background: white;
  margin-top: 1rem;
}
main .booking hr {
  margin: 1rem 0;
}
main .booking .custom-modal {
  border-radius: 18px;
  border: none;
  padding: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  animation: fadeInUp 0.25s ease;
  /* Header */
}
main .booking .custom-modal .custom-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: none;
  padding: 15px 18px 10px 18px;
}
main .booking .custom-modal .custom-header .modal-title {
  margin: 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #16465f;
}
main .booking .custom-modal .custom-header .btn-close {
  margin: 0;
  opacity: 0.7;
  position: relative;
  top: -2px;
}
main .booking .custom-modal .custom-header .btn-close:hover {
  opacity: 1;
}
main .booking .custom-modal {
  /* Body */
}
main .booking .custom-modal .modal-body .field-group {
  display: flex;
  flex-direction: column;
}
main .booking .custom-modal .modal-body .field-group label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #828483;
}
main .booking .custom-modal .modal-body .field-group .input-group-custom {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(22, 70, 95, 0.4);
  background: #fff;
  transition: 0.3s;
}
main .booking .custom-modal .modal-body .field-group .input-group-custom i {
  color: #16465f;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}
main .booking .custom-modal .modal-body .field-group .input-group-custom input,
main .booking .custom-modal .modal-body .field-group .input-group-custom textarea {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
}
main .booking .custom-modal .modal-body .field-group .input-group-custom textarea {
  height: 110px;
  resize: none;
}
main .booking .custom-modal .modal-body .field-group .input-group-custom:focus-within {
  border-color: #16465f;
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
}
main .booking .custom-modal .modal-body .field-group .input-group-custom.textarea {
  align-items: flex-start;
}
main .booking .custom-modal .modal-body .field-group .input-group-custom.textarea i {
  margin-top: 4px;
}
main .booking .custom-modal .modal-body .phone-input {
  display: flex;
  border: 1px solid rgba(22, 70, 95, 0.4);
  border-radius: 12px;
  overflow: hidden;
  direction: ltr;
  transition: 0.3s;
}
main .booking .custom-modal .modal-body .phone-input .country-code {
  padding: 12px 14px;
  background: #f8f9fa;
  border-right: 1px solid rgba(22, 70, 95, 0.4);
  color: #16465f;
  font-weight: 600;
}
main .booking .custom-modal .modal-body .phone-input input {
  border: none;
  outline: none;
  padding: 12px;
  width: 100%;
  background: transparent;
}
main .booking .custom-modal .modal-body .phone-input:focus-within {
  border-color: #16465f;
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
}
main .booking .custom-modal {
  /* Footer */
}
main .booking .custom-modal .modal-footer .btn {
  border-radius: 12px;
  padding: 12px;
  font-weight: 600;
  background: #16465f;
  border: none;
}
main .booking .custom-modal .modal-footer .btn:hover {
  background: rgb(15, 51, 68);
}
main .booking {
  /* Animation */
}
@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  main .booking .booking-layout {
    flex-direction: column;
  }
  main .booking .steps-sidebar {
    flex: auto;
    width: 100%;
  }
  main .booking .steps-sidebar .steps {
    flex-direction: row;
    justify-content: space-around;
    gap: 0;
  }
  main .booking .steps-sidebar .steps::before {
    display: none;
  }
  main .booking .steps-sidebar .steps .step {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 24px;
  }
  main .booking .price-after {
    font-size: 1.2rem;
  }
}

/* =====================================================================
   AL-ATA — Brand identity refresh (navy logo palette)
   Header redesign + Hero (text Swiper + 3D map)
   NOTE: supersedes the old hero image/.image-wrapper/.shape styles.
   ===================================================================== */
:root {
  --brand: #16465f;
  --brand-dark: #0e3346;
  --brand-soft: #eef4f7;
  --brand-rgb: 22, 70, 95;
  --main: #16465f;
}

/* ---------- Header ---------- */
header nav {
  background-color: rgba(255, 255, 255, 0.78) !important;
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 12px 34px rgba(14, 51, 70, 0.1);
  border: 1px solid rgba(22, 70, 95, 0.08);
}
header nav .nav_links a {
  color: var(--brand-dark);
  font-weight: 600;
}
header nav .nav_links a:hover,
header nav .nav_links a.active,
header nav .nav_links .dropdown .dropdown-menu a:hover {
  color: var(--brand);
}
header nav .actions .login-btn {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 22px -10px rgba(var(--brand-rgb), 0.7);
}
header nav .actions .login-btn:hover {
  background: var(--brand-dark);
}
header nav .actions .lang-btn {
  background: var(--brand-soft);
  border: 1px solid rgba(var(--brand-rgb), 0.25);
  color: var(--brand);
}
header nav .actions .lang-btn:hover {
  background: rgba(var(--brand-rgb), 0.12);
}
header nav .actions .toggler {
  color: var(--brand);
}

/* sticky state: solid navy bar */
header nav.sticky {
  background: var(--brand) !important;
  box-shadow: 0 18px 40px rgba(14, 51, 70, 0.35);
  border-color: transparent;
}
header nav.sticky .nav_links a {
  color: rgba(255, 255, 255, 0.9) !important;
}
header nav.sticky .nav_links .dropdown-menu a {
  color: var(--brand) !important;
}
header nav.sticky .nav_links a:hover,
header nav.sticky .nav_links a.active {
  color: #2ca8e0 !important;
}
header nav.sticky .actions .login-btn {
  background: #fff;
  color: var(--brand);
}
header nav.sticky .actions .login-btn:hover {
  background: var(--brand-soft);
}
header nav.sticky .actions .lang-btn {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
header nav.sticky .actions .toggler {
  color: #fff;
}

/* ---------- Hero layout ---------- */
/* main .hero-recruitment {
  background: linear-gradient(125deg, #ffffff 0%, var(--brand-soft) 100%);
} */
main .hero-recruitment .hero-grid .hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

/* hero subtitle as a chip */
main .hero-recruitment .hero-grid .hero-content .hero-sub {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--brand-rgb), 0.08);
  color: var(--brand);
  border: 1px solid rgba(var(--brand-rgb), 0.18);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* ---------- Hero text Swiper ---------- */
main .hero-recruitment .hero-grid .hero-content .heroSwiper {
  width: 100%;
  padding-bottom: 2.5rem;
  padding-top: 1rem;
  overflow: hidden;
}
main .hero-recruitment .hero-grid .hero-content .heroSwiper .swiper-slide {
  height: auto;
}
main .hero-recruitment .hero-grid .hero-content .heroSwiper .hero-title {
  margin-bottom: 0.75rem;
}
main .hero-recruitment .hero-grid .hero-content .heroSwiper .hero-quote {
  margin: 0;
  font-size: 1.25rem;
  color: #4a5560;
}
html[lang=en] main .hero-recruitment .hero-grid .hero-content .heroSwiper .swiper-slide {
  text-align: left;
}
main .hero-recruitment .hero-grid .hero-content .heroSwiperPagination {
  position: absolute;
  bottom: 0;
  display: flex;
  gap: 8px;
}
main .hero-recruitment .hero-grid .hero-content .heroSwiperPagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(var(--brand-rgb), 0.25);
  opacity: 1;
  transition: all 0.3s ease;
}
main .hero-recruitment .hero-grid .hero-content .heroSwiperPagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 6px;
  background: var(--brand);
}
main .hero-recruitment .hero-grid .hero-content .hero-buttons {
  margin-top: 1rem;
}

/* ---------- Hero 3D map ---------- */
main .hero-recruitment .hero-grid .hero-visual {
  flex: 1;
  min-width: 300px;
}
main .hero-recruitment .hero-grid .hero-visual .hero-globe {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  animation: heroGlobeFloat 7s ease-in-out infinite alternate;
}

/* the sphere */
main .hero-recruitment .hero-grid .hero-visual .hero-globe__sphere {
  position: relative;
  width: 82%;
  height: 82%;
  border-radius: 50%;
  overflow: hidden;
  background: #0a2a3a;
  box-shadow: inset -26px -22px 70px rgba(0, 0, 0, 0.7), inset 16px 14px 40px rgba(255, 255, 255, 0.12), 0 30px 70px -20px rgba(10, 42, 58, 0.7), 0 0 70px rgba(var(--brand-rgb), 0.45);
}

/* real earth texture (two copies) spinning seamlessly */
main .hero-recruitment .hero-grid .hero-visual .hero-globe__land {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: max-content;
  display: flex;
  filter: grayscale(0.35) saturate(1.15) brightness(1.02) contrast(1.05);
  animation: heroGlobeSpin 22s linear infinite;
}
main .hero-recruitment .hero-grid .hero-visual .hero-globe__land img {
  height: 100%;
  width: auto;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
}

/* navy duotone tint + spherical curvature shading */
main .hero-recruitment .hero-grid .hero-visual .hero-globe__shade {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, rgba(var(--brand-rgb), 0.15) 0%, rgba(var(--brand-rgb), 0.28) 45%, rgba(8, 34, 47, 0.6) 78%, rgba(5, 22, 31, 0.92) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* top-left specular highlight */
main .hero-recruitment .hero-grid .hero-visual .hero-globe__gloss {
  position: absolute;
  top: 8%;
  left: 12%;
  width: 45%;
  height: 35%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.45), transparent 70%);
  filter: blur(4px);
  pointer-events: none;
}

/* orbiting ring */
main .hero-recruitment .hero-grid .hero-visual .hero-globe__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px dashed rgba(var(--brand-rgb), 0.35);
  transform: translate(-50%, -50%) rotateX(74deg);
  animation: heroGlobeOrbit 18s linear infinite;
}
main .hero-recruitment .hero-grid .hero-visual .hero-globe__ring::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 14px 2px rgba(var(--brand-rgb), 0.7);
  transform: translateX(-50%);
}

/* location pins floating above the globe */
main .hero-recruitment .hero-grid .hero-visual .hero-globe__pin {
  position: absolute;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 12px 20px -8px rgba(10, 42, 58, 0.8);
  z-index: 5;
}
main .hero-recruitment .hero-grid .hero-visual .hero-globe__pin i {
  transform: rotate(45deg);
  font-size: 0.8rem;
}
main .hero-recruitment .hero-grid .hero-visual .hero-globe__pin::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(var(--brand-rgb), 0.5);
  animation: heroPinPulse 2.4s ease-out infinite;
}
main .hero-recruitment .hero-grid .hero-visual .hero-globe__pin--1 {
  top: 14%;
  left: 26%;
}
main .hero-recruitment .hero-grid .hero-visual .hero-globe__pin--2 {
  top: 40%;
  right: 14%;
  animation-delay: 0.6s;
}
main .hero-recruitment .hero-grid .hero-visual .hero-globe__pin--3 {
  bottom: 20%;
  left: 18%;
  animation-delay: 1.2s;
}

main .hero-recruitment .hero-grid .hero-visual .hero-globe__badge {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 18px 34px -16px rgba(10, 42, 58, 0.8);
  z-index: 6;
}
main .hero-recruitment .hero-grid .hero-visual .hero-globe__badge i {
  color: var(--brand);
  font-size: 1.15rem;
}

main .hero-recruitment .hero-grid .hero-visual .hero-globe__shadow {
  position: absolute;
  left: 50%;
  bottom: -2%;
  width: 60%;
  height: 30px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(10, 42, 58, 0.4), transparent 70%);
  filter: blur(8px);
  z-index: -1;
}

@keyframes heroGlobeFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-16px);
  }
}
@keyframes heroGlobeSpin {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes heroGlobeOrbit {
  from {
    transform: translate(-50%, -50%) rotateX(74deg) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotateX(74deg) rotate(360deg);
  }
}
@keyframes heroPinPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--brand-rgb), 0.5);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(var(--brand-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--brand-rgb), 0);
  }
}

/* neutralize any leftover old hero image visuals (markup removed) */
main .hero-recruitment .image-wrapper,
main .hero-recruitment .hero-png,
main .hero-recruitment .hero-slider,
main .hero-recruitment .shape {
  display: none !important;
}

@media (max-width: 850px) {
  main .hero-recruitment .hero-grid .hero-content {
    align-items: center;
    text-align: center;
  }
  main .hero-recruitment .hero-grid .hero-content .heroSwiperPagination {
    justify-content: center;
    width: 100%;
  }
  main .hero-recruitment .hero-grid .hero-visual .hero-globe {
    margin-top: 3rem;
    max-width: 340px;
  }
}
@media (prefers-reduced-motion: reduce) {
  main .hero-recruitment .hero-grid .hero-visual .hero-globe,
  main .hero-recruitment .hero-grid .hero-visual .hero-globe__land,
  main .hero-recruitment .hero-grid .hero-visual .hero-globe__ring,
  main .hero-recruitment .hero-grid .hero-visual .hero-globe__pin::after {
    animation: none;
  }
}

/* ---------- Hero content & buttons polish ---------- */
main .hero-recruitment .hero-grid .hero-content .hero-sub {
  background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.12), rgba(var(--brand-rgb), 0.04));
  border: 1px solid rgba(var(--brand-rgb), 0.2);
  color: var(--brand);
  padding: 9px 18px 9px 9px;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  box-shadow: 0 6px 18px -10px rgba(var(--brand-rgb), 0.55);
}
main .hero-recruitment .hero-grid .hero-content .hero-sub i {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 0.8rem;
}

main .hero-recruitment .hero-grid .hero-content .heroSwiper .hero-title {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}
main .hero-recruitment .hero-grid .hero-content .heroSwiper .hero-quote {
  font-size: 1.2rem;
  font-weight: 500;
  color: #5a6672;
  line-height: 1.7;
  border-right: 4px solid var(--brand);
  border-radius: 2px;
  padding-right: 1rem;
  max-width: 560px;
}
html[lang=en] main .hero-recruitment .hero-grid .hero-content .heroSwiper .hero-quote {
  border-right: none;
  border-left: 4px solid var(--brand);
  padding-right: 0;
  padding-left: 1rem;
}

/* buttons */
main .hero-recruitment .hero-grid .hero-content .hero-buttons {
  gap: 14px;
  margin-top: 1.75rem;
}
main .hero-recruitment .hero-grid .hero-content .hero-buttons .btn-primary,
main .hero-recruitment .hero-grid .hero-content .hero-buttons .btn-outline {
  padding: 0.95rem 2rem;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
main .hero-recruitment .hero-grid .hero-content .hero-buttons .btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  border: 1.5px solid transparent;
  box-shadow: 0 16px 30px -12px rgba(var(--brand-rgb), 0.75);
}
main .hero-recruitment .hero-grid .hero-content .hero-buttons .btn-primary i {
  color: #fff;
}
main .hero-recruitment .hero-grid .hero-content .hero-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -12px rgba(var(--brand-rgb), 0.9);
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-dark) 100%);
}
main .hero-recruitment .hero-grid .hero-content .hero-buttons .btn-outline {
  background: #fff;
  border: 1.5px solid rgba(var(--brand-rgb), 0.35);
  color: var(--brand);
  box-shadow: 0 10px 24px -16px rgba(var(--brand-rgb), 0.6);
}
main .hero-recruitment .hero-grid .hero-content .hero-buttons .btn-outline i {
  color: var(--brand);
}
main .hero-recruitment .hero-grid .hero-content .hero-buttons .btn-outline:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 34px -14px rgba(var(--brand-rgb), 0.7);
}
main .hero-recruitment .hero-grid .hero-content .hero-buttons .btn-outline:hover i {
  color: #fff;
}

/* =====================================================================
   Header redesign v2 — fresh look + icon-only action buttons
   ===================================================================== */
header nav {
  margin-top: 18px;
  padding: 8px 14px 8px 22px !important;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)) !important;
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 16px 40px -18px rgba(14, 51, 70, 0.35);
  border: 1px solid rgba(var(--brand-rgb), 0.1);
}

/* animated underline for nav links (uses ::before, caret stays on ::after) */
header nav .nav_links > li > a {
  position: relative;
  font-weight: 600;
  padding-bottom: 4px;
}
header nav .nav_links > li > a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 75%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--brand), #2f7ea0);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.3, 1.1);
}
header nav .nav_links > li > a:hover::before,
header nav .nav_links > li > a.active::before {
  transform: translateX(-50%) scaleX(1);
}

/* active link = sky blue */
header nav .nav_links > li > a.active,
header nav .nav_links .dropdown > a.dropdown-toggle.active {
  color: #2ca8e0;
}
header nav .nav_links > li > a.active::before {
  background: linear-gradient(90deg, #2ca8e0, #6fd0f5);
}
header nav.sticky .nav_links > li > a.active {
  color: #8fdcff;
}
header nav.sticky .nav_links > li > a.active::before {
  background: linear-gradient(90deg, #8fdcff, #cdeeff);
}

/* ---- icon-only action buttons ---- */
header nav .actions {
  gap: 10px;
}
header nav .actions .icon-btn {
  position: relative;
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
header nav .actions .icon-btn--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: 0 14px 26px -12px rgba(var(--brand-rgb), 0.75);
}
header nav .actions .icon-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 34px -12px rgba(var(--brand-rgb), 0.9);
}
header nav .actions .icon-btn--ghost {
  background: rgba(var(--brand-rgb), 0.07);
  border-color: rgba(var(--brand-rgb), 0.16);
  color: var(--brand);
}
header nav .actions .icon-btn--ghost:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-3px);
}
header nav .actions .icon-btn--danger {
  color: #d33b3b;
  background: rgba(211, 59, 59, 0.08);
  border-color: rgba(211, 59, 59, 0.18);
}
header nav .actions .icon-btn--danger:hover {
  background: #d33b3b;
  border-color: #d33b3b;
  color: #fff;
}

/* tooltips on icon buttons */
header nav .actions .icon-btn[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: var(--brand-dark);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 10px 20px -8px rgba(14, 51, 70, 0.5);
  z-index: 10;
}
header nav .actions .icon-btn[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* keep the mobile toggler hidden on desktop, styled like a ghost button */
header nav .actions .toggler.icon-btn {
  display: none;
  background: rgba(var(--brand-rgb), 0.07) !important;
  color: var(--brand);
}
@media screen and (max-width: 1199px) {
  header nav .actions .toggler.icon-btn {
    display: inline-grid;
  }
}
@media screen and (max-width: 768px) {
  header nav .actions .lang-switch {
    display: none;
  }
}

/* sticky state: navy bar, translucent icon buttons */
header nav.sticky {
  border-radius: 16px;
  border-color: transparent;
}
header nav.sticky .nav_links > li > a::before {
  background: #fff;
}
header nav.sticky .actions .icon-btn--ghost {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
header nav.sticky .actions .icon-btn--ghost:hover {
  background: #fff;
  color: var(--brand);
}
header nav.sticky .actions .icon-btn--primary {
  background: #fff;
  color: var(--brand);
}
header nav.sticky .actions .toggler.icon-btn {
  background: rgba(255, 255, 255, 0.14) !important;
  color: #fff;
}
/* =====================================================================
   Services section redesign — grid cards with hover image reveal
   ===================================================================== */
main .services {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--brand-soft) 100%);
}
main .services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 992px) {
  main .services .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  main .services .services-grid {
    grid-template-columns: 1fr;
  }
}

main .services .svc-card {
  position: relative;
  display: block;
  height: 410px;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(var(--brand-rgb), 0.1);
  box-shadow: 0 18px 40px -24px rgba(14, 51, 70, 0.4);
  text-decoration: none;
  isolation: isolate;
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.05), box-shadow 0.5s ease;
}
main .services .svc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 42px 70px -28px rgba(14, 51, 70, 0.6);
}

/* image + overlay */
main .services .svc-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
main .services .svc-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.25);
  opacity: 0;
  transition: opacity 0.6s ease, transform 1.4s ease;
}
main .services .svc-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 42, 58, 0.35) 0%, rgba(8, 34, 47, 0.88) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
main .services .svc-card:hover .svc-card__media img {
  opacity: 1;
  transform: scale(1);
}
main .services .svc-card:hover .svc-card__media::after {
  opacity: 1;
}

/* content */
main .services .svc-card__content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}
main .services .svc-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: var(--brand);
  background: rgba(var(--brand-rgb), 0.1);
  border: 1px solid rgba(var(--brand-rgb), 0.16);
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.05);
}
main .services .svc-card:hover .svc-card__icon {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  transform: rotate(-8deg) scale(1.06);
}
main .services .svc-card__text {
  margin-top: auto;
}
main .services .svc-card__text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin: 16px 0 8px;
  transition: color 0.45s ease;
}
main .services .svc-card__text p {
  color: #5a6672;
  line-height: 1.7;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.45s ease;
}
main .services .svc-card__text ul {
  display: grid;
  gap: 8px;
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.55s ease, opacity 0.4s ease, margin 0.4s ease;
}
main .services .svc-card__text ul li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
}
main .services .svc-card__text ul li i {
  color: #8fdcff;
  font-size: 0.85rem;
}
main .services .svc-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-weight: 700;
  color: var(--brand);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease, color 0.45s ease;
}
html[lang=en] main .services .svc-card__more i {
  transform: rotate(180deg);
}

/* hover reveal: white text + show list + show CTA */
main .services .svc-card:hover .svc-card__text h3,
main .services .svc-card:hover .svc-card__text p {
  color: #fff;
}
main .services .svc-card:hover .svc-card__text ul {
  max-height: 220px;
  opacity: 1;
  margin: 12px 0 4px;
}
main .services .svc-card:hover .svc-card__more {
  opacity: 1;
  transform: translateY(0);
  color: #fff;
}

/* touch devices: reveal without hover */
@media (hover: none) {
  main .services .svc-card__media img {
    opacity: 1;
    transform: scale(1);
  }
  main .services .svc-card__media::after {
    opacity: 1;
  }
  main .services .svc-card__text h3,
  main .services .svc-card__text p {
    color: #fff;
  }
  main .services .svc-card__text ul {
    max-height: 220px;
    opacity: 1;
    margin: 12px 0 4px;
  }
  main .services .svc-card__more {
    opacity: 1;
    transform: none;
    color: #fff;
  }
  main .services .svc-card__icon {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
  }
}

/* =====================================================================
   Header alignment fix — keep logo, links & action buttons on one row
   ===================================================================== */
@media screen and (min-width: 1200px) {
  header nav {
    align-items: center;
  }
  header nav .logo,
  header nav .nav_links,
  header nav .actions {
    display: flex;
    align-items: center;
  }
  header nav .nav_links {
    margin: 0;
    padding: 0;
  }
  header nav .nav_links > li {
    display: flex;
    align-items: center;
    margin: 0;
  }
  header nav .nav_links > li > a,
  header nav .nav_links .dropdown .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    padding-top: 0;
    padding-bottom: 0;
  }
  header nav .nav_links > li > a::before {
    bottom: -7px;
  }
  header nav .actions .icon-btn {
    flex: 0 0 auto;
    margin: 0;
  }
  header nav .actions form.d-inline {
    display: inline-flex;
    align-items: center;
    margin: 0;
  }
}

/* =====================================================================
   Small-screen header color fixes
   (mobile menu is a white slide-in panel — keep links dark even when the
    bar is sticky/navy, fix lang chip contrast, hide desktop underline)
   ===================================================================== */
@media screen and (max-width: 1199px) {
  header nav .nav_links,
  header nav.sticky .nav_links {
    background: #ffffff;
  }
  header nav .nav_links a,
  header nav.sticky .nav_links a,
  header nav.sticky .nav_links .dropdown-menu a {
    color: var(--brand-dark) !important;
  }
  header nav .nav_links a:hover,
  header nav .nav_links a.active,
  header nav.sticky .nav_links a:hover,
  header nav.sticky .nav_links a.active,
  header nav .nav_links > li > a.active,
  header nav.sticky .nav_links > li > a.active {
    color: #2ca8e0 !important;
  }
  /* the animated underline doesn't fit the vertical menu */
  header nav .nav_links > li > a::before,
  header nav.sticky .nav_links > li > a.active::before {
    display: none;
  }
  /* mobile dropdown panel: readable on light navy tint */
  header nav .nav_links .dropdown .dropdown-menu {
    background: rgba(var(--brand-rgb), 0.06);
  }
  /* language chip inside the mobile menu */
  header .nav_links .lang-mobile,
  header .nav_links .lang-mobile a,
  header .nav_links .lang-mobile .lang-btn {
    background: var(--brand) !important;
    border-color: var(--brand) !important;
    color: #ffffff !important;
  }
}

/* =====================================================================
   Small-screen menu: stop dropdown overlap — expand inline (accordion)
   ===================================================================== */
@media screen and (max-width: 1199px) {
  header nav .nav_links {
    overflow-y: auto;
    gap: 6px;
    align-items: stretch;
  }
  header nav .nav_links > li {
    width: 100%;
  }
  header nav .nav_links .dropdown {
    width: 100%;
    text-align: start;
  }
  header nav .nav_links .dropdown .dropdown-toggle {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }
  header nav .nav_links .dropdown .dropdown-toggle::after {
    margin-inline-start: auto;
    transform: rotate(-90deg);
  }
  /* force submenus into normal flow so they push siblings down */
  header nav .nav_links .dropdown .dropdown-menu {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    display: block !important;
    width: 100%;
    float: none;
    border: none;
    box-shadow: none !important;
    background: rgba(var(--brand-rgb), 0.06);
    border-radius: 12px;
    padding: 6px 12px;
    margin: 6px 0 10px;
    animation: none !important;
  }
  header nav .nav_links .dropdown .dropdown-menu a {
    padding: 9px 6px;
  }
}

/* =====================================================================
   HOME SECTIONS REDESIGN (stats / musaned / journey / countries /
   contact-center / contact) — shared heads + creative animations
   ===================================================================== */
.sec-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(var(--brand-rgb), 0.08);
  color: #2ca8e0;
  border: 1px solid rgba(var(--brand-rgb), 0.18);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.sec-eyebrow--on-dark {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.sec-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.sec-head p {
  color: #5a6672;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

/* ---------- Stats (navy band, count-up) ---------- */
main .stats-v2 {
  position: relative;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  padding: 90px 0;
  overflow: hidden;
}
main .stats-v2 .container {
  position: relative;
  z-index: 1;
}
.stats-v2__orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
  animation: floatY 9s ease-in-out infinite alternate;
}
.stats-v2__orb--1 {
  width: 340px;
  height: 340px;
  top: -120px;
  inset-inline-start: -80px;
}
.stats-v2__orb--2 {
  width: 300px;
  height: 300px;
  bottom: -120px;
  inset-inline-end: -60px;
  animation-delay: 1.5s;
}
.stats-v2__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .stats-v2__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .stats-v2__grid {
    grid-template-columns: 1fr;
  }
}
.stats-v2 .stat-card {
  text-align: center;
  padding: 34px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}
.stats-v2 .stat-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 50px -24px rgba(0, 0, 0, 0.5);
}
.stat-card__icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  font-size: 1.7rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.05);
}
.stats-v2 .stat-card:hover .stat-card__icon {
  transform: rotate(-8deg) scale(1.06);
  background: #fff;
  color: var(--brand);
}
.stat-card__num {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stats-v2 .stat-card p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin: 0;
}

/* ---------- Musaned video (dark, ripple play) ---------- */
main .musaned-v2 {
  position: relative;
  background: radial-gradient(circle at 80% 20%, #123a4f, #0a2a3a 60%);
  padding: 90px 0;
  overflow: hidden;
}
main .musaned-v2 .container {
  position: relative;
  z-index: 1;
}
.musaned-v2__orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.4), transparent 70%);
  animation: floatY 10s ease-in-out infinite alternate;
}
.musaned-v2__orb--1 {
  width: 320px;
  height: 320px;
  top: -100px;
  inset-inline-end: -80px;
}
.musaned-v2__orb--2 {
  width: 260px;
  height: 260px;
  bottom: -100px;
  inset-inline-start: -60px;
  animation-delay: 2s;
}
.musaned-v2__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .musaned-v2__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.musaned-v2__content h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin: 14px 0;
}
.musaned-v2__content p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  margin-bottom: 26px;
}
.musaned-v2__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--brand-dark);
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.musaned-v2__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px -14px rgba(0, 0, 0, 0.55);
}
.musaned-v2__btn-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
}
.musaned-v2__player {
  position: relative;
  display: block;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 45px 80px -34px rgba(0, 0, 0, 0.75);
}
.musaned-v2__player img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.musaned-v2__player:hover img {
  transform: scale(1.07);
}
.musaned-v2__player::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 42, 58, 0.65), transparent 60%);
}
.musaned-v2__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  z-index: 2;
  transition: transform 0.3s ease;
}
.musaned-v2__play i {
  margin-inline-start: 4px;
}
.musaned-v2__play::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  animation: musanedRipple 2.2s ease-out infinite;
}
.musaned-v2__player:hover .musaned-v2__play {
  transform: translate(-50%, -50%) scale(1.08);
}
.musaned-v2__tag {
  position: absolute;
  top: 16px;
  inset-inline-start: 16px;
  background: var(--brand);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
}
@keyframes musanedRipple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  70% {
    box-shadow: 0 0 0 26px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* ---------- Journey (why) — timeline ---------- */
main .journey-v2 {
  padding: 90px 0;
  background: #fff;
}
.journey-v2__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 54px;
  align-items: center;
}
@media (max-width: 900px) {
  .journey-v2__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.journey-v2__media {
  position: relative;
}
.journey-v2__media-frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 45px 80px -34px rgba(14, 51, 70, 0.5);
}
.journey-v2__media-frame img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 1s ease;
}
.journey-v2__media:hover .journey-v2__media-frame img {
  transform: scale(1.05);
}
.journey-v2__badge {
  position: absolute;
  bottom: 16px;
  inset-inline-start: 16px;
  background: #fff;
  color: var(--brand-dark);
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 12px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  box-shadow: 0 14px 28px -14px rgba(14, 51, 70, 0.6);
}
.journey-v2__badge i {
  color: var(--brand);
}
.journey-v2__media-glow {
  position: absolute;
  inset-inline-end: -30px;
  bottom: -30px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.18), transparent 70%);
  z-index: -1;
}
.journey-v2__content h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--brand-dark);
  margin: 14px 0;
}
.journey-v2__desc {
  color: #5a6672;
  line-height: 1.9;
  margin-bottom: 26px;
}
.journey-v2__timeline {
  position: relative;
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
}
.journey-v2__timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  inset-inline-start: 24px;
  width: 2px;
  background: linear-gradient(var(--brand), rgba(var(--brand-rgb), 0));
}
.journey-v2__timeline li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
}
.journey-v2__dot {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: rgba(var(--brand-rgb), 0.1);
  color: var(--brand);
  border: 1px solid rgba(var(--brand-rgb), 0.18);
  z-index: 1;
  transition: all 0.3s ease;
}
.journey-v2__timeline li:hover .journey-v2__dot {
  background: var(--brand);
  color: #fff;
  transform: scale(1.08) rotate(-6deg);
}
.journey-v2__step strong {
  display: block;
  color: var(--brand-dark);
  font-size: 1.1rem;
  margin-bottom: 2px;
}
.journey-v2__step span {
  color: #5a6672;
  line-height: 1.7;
}

/* ---------- Countries v2 ---------- */
main .countries-v2 {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(180deg, var(--brand-soft), #fff);
  overflow: hidden;
}
main .countries-v2 .container {
  position: relative;
  z-index: 1;
}
.countries-v2__orb {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  top: -140px;
  inset-inline-end: -120px;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.1), transparent 70%);
}
main .countries-v2 .countries-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 992px) {
  main .countries-v2 .countries-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  main .countries-v2 .countries-grid-v2 {
    grid-template-columns: 1fr;
  }
}
main .countries-v2 .countries-card {
  opacity: 1;
  transform: none;
}
main .countries-v2 .countries-card__inner {
  position: relative;
  overflow: hidden;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(var(--brand-rgb), 0.1);
  border-radius: 22px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 18px 40px -26px rgba(14, 51, 70, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
main .countries-v2 .countries-card__inner::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--brand), #2f7ea0);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
main .countries-v2 .countries-card:hover .countries-card__inner {
  transform: translateY(-10px);
  box-shadow: 0 42px 64px -30px rgba(14, 51, 70, 0.5);
}
main .countries-v2 .countries-card:hover .countries-card__inner::before {
  transform: scaleX(1);
}
main .countries-v2 .countries-card__image {
  width: 110px;
  height: 110px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--brand-soft);
  box-shadow: 0 12px 26px -14px rgba(14, 51, 70, 0.5);
}
main .countries-v2 .countries-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .countries-v2 .countries-card h3 {
  color: var(--brand-dark);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 6px;
}
main .countries-v2 .countries-card__subtitle {
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 6px;
}
main .countries-v2 .countries-card__summary {
  color: #5a6672;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
main .countries-v2 .countries-card__details {
  display: grid;
  gap: 10px;
  text-align: start;
  margin-bottom: 18px;
}
main .countries-v2 .detail-item {
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--brand-soft);
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.9rem;
  color: #4a5560;
}
main .countries-v2 .detail-item i {
  color: var(--brand);
}
main .countries-v2 .detail-item strong {
  color: var(--brand-dark);
}
main .countries-v2 .glass-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-weight: 700;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
main .countries-v2 .glass-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px -12px rgba(var(--brand-rgb), 0.7);
}

/* ---------- Contact center (agents) ---------- */
main .team-v2 {
  padding: 90px 0;
  background: #fff;
}
.team-v2__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 992px) {
  .team-v2__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .team-v2__grid {
    grid-template-columns: 1fr;
  }
}
.agent-card {
  position: relative;
  text-align: center;
  padding: 40px 26px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(var(--brand-rgb), 0.1);
  box-shadow: 0 18px 40px -26px rgba(14, 51, 70, 0.4);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.agent-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--brand), var(--brand-dark));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.agent-card > * {
  position: relative;
  z-index: 1;
}
.agent-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 42px 64px -30px rgba(14, 51, 70, 0.55);
}
.agent-card:hover::before {
  opacity: 1;
}
.agent-card__avatar {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  transition: all 0.4s ease;
}
.agent-card:hover .agent-card__avatar {
  background: #fff;
  color: var(--brand);
}
.agent-card__ring {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px dashed rgba(var(--brand-rgb), 0.4);
  animation: agentSpin 16s linear infinite;
  z-index: 1;
}
.agent-card:hover .agent-card__ring {
  border-color: rgba(255, 255, 255, 0.5);
}
.agent-card__status {
  position: absolute;
  bottom: 6px;
  inset-inline-end: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #22c55e;
  border: 3px solid #fff;
}
.agent-card__status::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: agentPulse 2s ease-out infinite;
}
.agent-card h3 {
  color: var(--brand-dark);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
  transition: color 0.4s ease;
}
.agent-card p {
  color: #5a6672;
  margin-bottom: 20px;
  transition: color 0.4s ease;
}
.agent-card:hover h3 {
  color: #fff;
}
.agent-card:hover p {
  color: rgba(255, 255, 255, 0.82);
}
.agent-card__actions {
  display: flex;
  gap: 10px;
}
.agent-card__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.agent-card__btn--wa {
  background: #25d366;
  color: #fff;
}
.agent-card__btn--call {
  background: var(--brand);
  color: #fff;
}
.agent-card:hover .agent-card__btn--wa {
  background: #fff;
  color: #128c7e;
}
.agent-card:hover .agent-card__btn--call {
  background: #fff;
  color: var(--brand);
}
@keyframes agentSpin {
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}
@keyframes agentPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* ---------- Contact (تواصل معنا) ---------- */
main .contact-v2 {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(180deg, #fff, var(--brand-soft));
  overflow: hidden;
}
main .contact-v2 .container {
  position: relative;
  z-index: 1;
}
.contact-v2__orb {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  bottom: -140px;
  inset-inline-start: -120px;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.1), transparent 70%);
}
main .contact-v2 .contact_info {
  position: relative;
  overflow: hidden;
  height: 100%;
  background: linear-gradient(160deg, var(--brand), var(--brand-dark));
  color: #fff;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 30px 60px -30px rgba(14, 51, 70, 0.6);
}
main .contact-v2 .contact_info::after {
  content: "";
  position: absolute;
  bottom: -70px;
  inset-inline-end: -70px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
main .contact-v2 .contact_info h3 {
  position: relative;
  color: #fff;
  margin-bottom: 24px;
  font-size: 1.4rem;
  font-weight: 800;
}
main .contact-v2 .contact_info ul {
  position: relative;
  display: grid;
  gap: 18px;
}
main .contact-v2 .contact_info .field {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
main .contact-v2 .contact_info .field .icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
main .contact-v2 .contact_info .field:hover .icon {
  background: #fff;
  color: var(--brand);
  transform: translateY(-3px);
}
main .contact-v2 .contact_info .field .text h4 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-bottom: 2px;
  font-weight: 600;
}
main .contact-v2 .contact_info .field .text a,
main .contact-v2 .contact_info .field .text p {
  color: #fff;
  font-weight: 600;
  word-break: break-word;
  margin: 0;
}
main .contact-v2 form {
  background: #fff;
  border: 1px solid rgba(var(--brand-rgb), 0.1);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 18px 40px -26px rgba(14, 51, 70, 0.35);
}
main .contact-v2 .btn-submit {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border-radius: 14px;
  padding: 14px 30px;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
main .contact-v2 .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px -14px rgba(var(--brand-rgb), 0.7);
}

@keyframes floatY {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-26px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .stats-v2__orb,
  .musaned-v2__orb,
  .agent-card__ring,
  .musaned-v2__play::before,
  .agent-card__status::after {
    animation: none;
  }
}

/* =====================================================================
   Hero — small-screen fix (stack cleanly, never collapse the text)
   ===================================================================== */
@media (max-width: 850px) {
  main .hero-recruitment {
    min-height: auto;
    padding: 120px 1.25rem 60px;
  }
  main .hero-recruitment .hero-grid {
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 0;
    gap: 2.5rem;
  }
  main .hero-recruitment .hero-grid .hero-content,
  main .hero-recruitment .hero-grid .hero-visual {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
  }
  main .hero-recruitment .hero-grid .hero-content {
    order: 1;
    align-items: center;
    text-align: center;
  }
  main .hero-recruitment .hero-grid .hero-visual {
    order: 2;
  }
  main .hero-recruitment .hero-grid .hero-content .heroSwiper {
    min-height: 140px;
  }
  main .hero-recruitment .hero-grid .hero-content .heroSwiper .swiper-slide {
    height: auto;
  }
  main .hero-recruitment .hero-grid .hero-content .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  main .hero-recruitment .hero-grid .hero-visual .hero-globe {
    max-width: 300px;
    margin: 0 auto;
  }
}

/* =====================================================================
   UNIFIED PAGE BANNER (navy) — shared .card-banner across inner pages
   ===================================================================== */
main .card-banner {
  position: relative;
  padding: 150px 0 90px;
  border-bottom: none;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 58%, #1d6f92 100%);
  clip-path: none;
  overflow: hidden;
  isolation: isolate;
}
main .card-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1.6px);
  background-size: 22px 22px;
  opacity: 0.6;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent);
  mask-image: linear-gradient(to bottom, #000, transparent);
}
main .card-banner::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  top: -170px;
  inset-inline-end: -120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 70%);
  animation: floatY 9s ease-in-out infinite alternate;
}
main .card-banner__wrapper {
  position: relative;
  padding-top: 0;
  z-index: 1;
}
main .card-banner__content {
  flex: 1 1 100%;
  min-width: 0;
}
main .card-banner__tag {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 8px 18px;
  font-size: 0.85rem;
  margin-bottom: 1.1rem;
}
main .card-banner__title {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
main .card-banner__title .highlight {
  color: #8fdcff;
  background: none;
}
main .card-banner__desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 660px;
}
main .card-banner__btn {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 14px 26px -12px rgba(0, 0, 0, 0.5);
}
main .card-banner__btn:hover {
  background: var(--brand-soft);
  color: var(--brand-dark);
  transform: translateY(-3px);
}
main .card-banner .banner-buttons .btn-policy {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}
main .card-banner .banner-buttons .btn-policy:hover {
  background: #fff;
  color: var(--brand);
}
@media (max-width: 650px) {
  main .card-banner {
    padding: 120px 0 70px;
  }
  main .card-banner__wrapper {
    text-align: center;
    padding: 0;
  }
  main .card-banner__desc {
    margin-inline: auto;
  }
}

/* =====================================================================
   ALL-WORKERS page redesign (filter + worker cards) — CSS only
   (markup/classes kept intact so filter JS / fancybox / pagination work)
   ===================================================================== */
main .filter-advanced {
  position: relative;
  z-index: 3;
  margin-top: -56px;
  padding-bottom: 10px;
}
main .filter-advanced .filter-bar {
  background: #fff;
  border: 1px solid rgba(var(--brand-rgb), 0.1);
  border-radius: 20px;
  box-shadow: 0 26px 50px -28px rgba(14, 51, 70, 0.45);
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}
main .filter-advanced .filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
main .filter-advanced .filter-tab {
  border: 1px solid rgba(var(--brand-rgb), 0.18);
  background: var(--brand-soft);
  color: var(--brand-dark);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
}
main .filter-advanced .filter-tab:hover {
  border-color: var(--brand);
  color: var(--brand);
}
main .filter-advanced .filter-tab.active {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 22px -12px rgba(var(--brand-rgb), 0.7);
}
main .filter-advanced .filter-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-dark);
  color: #fff;
  border: none;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
}
main .filter-advanced .filter-toggle-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px -12px rgba(var(--brand-rgb), 0.7);
}
main .filter-advanced .filter-toggle-btn .toggle-icon {
  transition: transform 0.3s ease;
}
main .filter-advanced .filter-advanced-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease, margin 0.35s ease;
}
main .filter-advanced .filter-advanced-panel.open {
  max-height: 900px;
  opacity: 1;
  margin-top: 14px;
}
main .filter-advanced .filter-form {
  background: #fff;
  border: 1px solid rgba(var(--brand-rgb), 0.1);
  border-radius: 20px;
  box-shadow: 0 18px 40px -28px rgba(14, 51, 70, 0.4);
  padding: 22px;
}
main .filter-advanced .filter-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
main .filter-advanced .filter-form .form-group {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
main .filter-advanced .filter-form .form-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--brand-dark);
  font-size: 0.9rem;
}
main .filter-advanced .filter-form .form-group label i {
  color: var(--brand);
}
main .filter-advanced .form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}
main .filter-advanced .btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}
main .filter-advanced .btn-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -12px rgba(var(--brand-rgb), 0.7);
}
main .filter-advanced .btn-reset {
  background: #fff;
  border: 1px solid rgba(var(--brand-rgb), 0.25);
  color: var(--brand);
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}
main .filter-advanced .btn-reset:hover {
  background: var(--brand-soft);
}

/* ---- worker cards ---- */
main .allWorkers {
  padding: 50px 0 80px;
  background: linear-gradient(180deg, var(--brand-soft), #fff);
}
main .allWorkers .worker-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(var(--brand-rgb), 0.1);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 44px -28px rgba(14, 51, 70, 0.4);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
main .allWorkers .worker-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--brand-rgb), 0.3);
  box-shadow: 0 40px 64px -30px rgba(14, 51, 70, 0.55);
}
main .allWorkers .worker-card .worker-image {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--brand-soft);
}
main .allWorkers .worker-card .worker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
main .allWorkers .worker-card:hover .worker-image img {
  transform: scale(1.06);
}
main .allWorkers .worker-card .worker-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 42, 58, 0.5), transparent 45%);
  pointer-events: none;
}
main .allWorkers .worker-card .worker-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
main .allWorkers .worker-card .worker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
main .allWorkers .worker-card .worker-header .worker-name {
  color: var(--brand-dark);
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
}
main .allWorkers .worker-card .worker-header .worker-id {
  background: var(--brand-soft);
  color: var(--brand);
  border: 1px solid rgba(var(--brand-rgb), 0.18);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}
main .allWorkers .worker-card .worker-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
main .allWorkers .worker-card .worker-details-grid .detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-soft);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.82rem;
  color: #4a5560;
}
main .allWorkers .worker-card .worker-details-grid .detail-item i {
  color: var(--brand);
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
}
main .allWorkers .worker-card .worker-details-grid .detail-item strong {
  color: var(--brand-dark);
}
main .allWorkers .worker-card .worker-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border-radius: 14px;
  padding: 12px 16px;
}
main .allWorkers .worker-card .worker-price small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
}
main .allWorkers .worker-card .worker-price strong {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}
main .allWorkers .worker-card .worker-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  color: #6b7682;
  background: rgba(var(--brand-rgb), 0.05);
  border-radius: 10px;
  padding: 8px 10px;
}
main .allWorkers .worker-card .worker-note i {
  color: var(--brand);
  margin-top: 2px;
}
main .allWorkers .worker-card .worker-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}
main .allWorkers .worker-card .worker-actions .btn-primary,
main .allWorkers .worker-card .worker-actions .btn-video {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}
main .allWorkers .worker-card .worker-actions .btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border: none;
}
main .allWorkers .worker-card .worker-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px -12px rgba(var(--brand-rgb), 0.7);
}
main .allWorkers .worker-card .worker-actions .btn-video {
  background: #fff;
  border: 1px solid rgba(var(--brand-rgb), 0.25);
  color: var(--brand);
}
main .allWorkers .worker-card .worker-actions .btn-video:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
main .allWorkers .no-results {
  background: #fff;
  border: 1px dashed rgba(var(--brand-rgb), 0.3);
  border-radius: 18px;
  color: var(--brand-dark);
  font-weight: 600;
  padding: 50px 20px;
}
@media (max-width: 480px) {
  main .allWorkers .worker-card .worker-details-grid {
    grid-template-columns: 1fr;
  }
  main .filter-advanced .form-actions {
    justify-content: stretch;
  }
  main .filter-advanced .form-actions .btn-apply,
  main .filter-advanced .form-actions .btn-reset {
    flex: 1;
    justify-content: center;
  }
}

/* =====================================================================
   INNER PAGES REDESIGN — about / faqs / policies / musand / contact /
   service forms (renew-contract, known-service, daily-labor-demand)
   CSS-only (markup & form JS preserved)
   ===================================================================== */

/* ---------- ABOUT US ---------- */
main .vision-mission {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff, var(--brand-soft));
}
main .vision-mission .vm-main {
  margin-bottom: 26px;
}
main .vision-mission .vm-card {
  background: #fff;
  border: 1px solid rgba(var(--brand-rgb), 0.1);
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 20px 44px -28px rgba(14, 51, 70, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
main .vision-mission .vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 64px -30px rgba(14, 51, 70, 0.5);
}
main .vision-mission .vm-card--main {
  background: linear-gradient(160deg, var(--brand), var(--brand-dark));
  color: #fff;
  border: none;
}
main .vision-mission .vm-card--main h3,
main .vision-mission .vm-card--main p {
  color: #fff;
}
main .vision-mission .vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
@media (max-width: 768px) {
  main .vision-mission .vm-grid {
    grid-template-columns: 1fr;
  }
}
main .vision-mission .vm-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
  background: rgba(var(--brand-rgb), 0.1);
  color: var(--brand);
  transition: all 0.4s ease;
}
main .vision-mission .vm-card--main .vm-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
main .vision-mission .vm-card:hover .vm-icon {
  transform: rotate(-8deg) scale(1.06);
}
main .vision-mission .vm-card h3 {
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
main .vision-mission .vm-card p {
  color: #5a6672;
  line-height: 1.9;
}

/* ---------- FAQS ---------- */
main .faq-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--brand-soft), #fff);
}
main .faq-section .faq-header {
  text-align: center;
  margin-bottom: 40px;
}
main .faq-section .faq-header__title {
  color: var(--brand-dark);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}
main .faq-section .faq-header__line {
  width: 70px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--brand), #2f7ea0);
}
main .faq-section .accordion {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
main .faq-section .accordion-item {
  background: #fff;
  border: 1px solid rgba(var(--brand-rgb), 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
main .faq-section .accordion-item.active {
  border-color: rgba(var(--brand-rgb), 0.4);
  box-shadow: 0 20px 40px -26px rgba(14, 51, 70, 0.45);
}
main .faq-section .accordion-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 700;
  color: var(--brand-dark);
  font-size: 1.05rem;
}
main .faq-section .accordion-question i {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(var(--brand-rgb), 0.1);
  color: var(--brand);
  transition: all 0.35s ease;
}
main .faq-section .accordion-item.active .accordion-question i {
  background: var(--brand);
  color: #fff;
  transform: rotate(180deg);
}
main .faq-section .accordion-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 22px;
  color: #5a6672;
  line-height: 1.9;
  transition: max-height 0.4s ease, opacity 0.35s ease, padding 0.35s ease;
}
main .faq-section .accordion-item.active .accordion-answer {
  max-height: 600px;
  opacity: 1;
  padding: 0 22px 22px;
}
main .faq-section .faq-cta {
  max-width: 860px;
  margin: 40px auto 0;
  text-align: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border-radius: 22px;
  padding: 36px 24px;
}
main .faq-section .faq-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 18px;
}
main .faq-section .faq-cta .btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--brand);
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
main .faq-section .faq-cta .btn-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px -14px rgba(0, 0, 0, 0.5);
}

/* ---------- POLICIES ---------- */
main .guidelines-section {
  padding: 80px 0;
  background: #fff;
}
main .guidelines-section .section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
main .guidelines-section .section-header h2 {
  color: var(--brand-dark);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  margin-bottom: 12px;
}
main .guidelines-section .section-header p {
  color: #5a6672;
  line-height: 1.9;
}
main .guidelines-section .countries-list {
  display: grid;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}
main .guidelines-section .country-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid rgba(var(--brand-rgb), 0.12);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 16px 36px -28px rgba(14, 51, 70, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
main .guidelines-section .country-row:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--brand-rgb), 0.3);
  box-shadow: 0 28px 50px -30px rgba(14, 51, 70, 0.5);
}
main .guidelines-section .country-row__flag {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--brand-soft);
  flex: 0 0 auto;
}
main .guidelines-section .country-row__info {
  flex: 1;
  min-width: 140px;
}
main .guidelines-section .country-row__info h3 {
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 2px;
}
main .guidelines-section .country-row__info p {
  color: #6b7682;
  font-size: 0.9rem;
  margin: 0;
}
main .guidelines-section .country-row__links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
main .guidelines-section .country-row__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-soft);
  color: var(--brand);
  border: 1px solid rgba(var(--brand-rgb), 0.18);
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.25s ease;
}
main .guidelines-section .country-row__links a:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

/* ---------- MUSAND ---------- */
main .journey-services {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff, var(--brand-soft));
}
main .journey-services .logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(var(--brand-rgb), 0.08);
  border: 1px solid rgba(var(--brand-rgb), 0.18);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
  font-weight: 700;
  color: var(--brand);
}
main .journey-services .logo-badge img {
  height: 26px;
}
main .journey-services h1 {
  color: var(--brand-dark);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 14px;
}
main .journey-services h1 .highlight {
  color: var(--brand);
}
main .journey-services p {
  color: #5a6672;
  line-height: 1.9;
  margin-bottom: 10px;
}
main .journey-services .journey-services__services {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
main .journey-services .service-stair {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(var(--brand-rgb), 0.1);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 34px -28px rgba(14, 51, 70, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
main .journey-services .service-stair:hover {
  transform: translateX(-6px);
  box-shadow: 0 24px 44px -30px rgba(14, 51, 70, 0.5);
}
main .journey-services .service-stair__icon {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
}
main .journey-services .service-stair__info h3 {
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
main .journey-services .service-stair__info p {
  color: #5a6672;
  margin: 0;
  font-size: 0.92rem;
}

/* musand video-section (re-styled to navy card after home migration) */
main .video-section {
  padding: 80px 0;
  background: radial-gradient(circle at 80% 20%, #123a4f, #0a2a3a 60%);
  overflow: hidden;
}
main .video-section .video-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 44px;
  align-items: center;
}
@media (max-width: 900px) {
  main .video-section .video-section__inner {
    grid-template-columns: 1fr;
  }
}
main .video-section .sectiontitle {
  color: #fff;
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin-bottom: 12px;
}
main .video-section .sectionsubtitle {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.9;
  margin-bottom: 22px;
}
main .video-section .video-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--brand-dark);
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
main .video-section .video-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px -14px rgba(0, 0, 0, 0.5);
}
main .video-section .video-card-frame {
  position: relative;
}
main .video-section .video-section__card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 40px 70px -34px rgba(0, 0, 0, 0.7);
}
main .video-section .video-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
}
main .video-section .video-card__thumb iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
main .video-section .video-card__tag {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  z-index: 2;
  background: var(--brand);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}
main .video-section .frame {
  display: none;
}

main .process-section {
  padding: 80px 0;
  background: #fff;
}
main .process-section .process-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}
main .process-section .process-header h2 {
  color: var(--brand-dark);
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin-bottom: 12px;
}
main .process-section .process-header h2 span {
  color: var(--brand);
}
main .process-section .process-header p {
  color: #5a6672;
  line-height: 1.9;
}
main .process-section .process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  counter-reset: step;
}
main .process-section .process-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(var(--brand-rgb), 0.1);
  border-radius: 20px;
  padding: 30px 24px;
  box-shadow: 0 18px 40px -28px rgba(14, 51, 70, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  counter-increment: step;
}
main .process-section .process-card::before {
  content: counter(step, decimal);
  position: absolute;
  top: 18px;
  inset-inline-end: 18px;
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(var(--brand-rgb), 0.12);
  line-height: 1;
}
main .process-section .process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 60px -30px rgba(14, 51, 70, 0.5);
}
main .process-section .process-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
}
main .process-section .process-card h3 {
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 8px;
}
main .process-section .process-card p {
  color: #5a6672;
  line-height: 1.7;
  font-size: 0.92rem;
  margin-bottom: 12px;
}
main .process-section .process-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
main .process-section .process-card__details span {
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 600;
}

main .musanedApp {
  padding: 0 0 80px;
}
main .musanedApp .info {
  background: linear-gradient(160deg, var(--brand), var(--brand-dark));
  color: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 60px -32px rgba(14, 51, 70, 0.6);
}
main .musanedApp .info img {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}
main .musanedApp .info h4 {
  color: #fff;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 12px;
}
main .musanedApp .info p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
  margin-bottom: 20px;
}
main .musanedApp .info .links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
main .musanedApp .info .links img {
  height: 46px;
  margin: 0;
  filter: none;
}
main .musanedApp .appImg img {
  width: 100%;
  border-radius: 22px;
}

/* ---------- CONTACT-US page map rounding ---------- */
main .contact-v2 + .map iframe,
main .map iframe {
  display: block;
}

/* ---------- SERVICE FORMS (renew-contract / known-service / daily-labor-demand) ---------- */
main .contractRenew,
main .request-section {
  padding: 70px 0 80px;
  background: linear-gradient(180deg, var(--brand-soft), #fff);
}
main .form-wrapper,
main .form-container {
  background: #fff;
  border: 1px solid rgba(var(--brand-rgb), 0.1);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 26px 56px -30px rgba(14, 51, 70, 0.45);
}
main .form-header {
  text-align: center;
  margin-bottom: 28px;
}
main .form-header h2,
main .form-header h1 {
  color: var(--brand-dark);
  font-weight: 800;
}
main .form-block {
  border: 1px solid rgba(var(--brand-rgb), 0.1);
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 22px;
  background: #fff;
}
main .block-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(var(--brand-rgb), 0.12);
}
main .block-title i,
main .block-title .fa-solid,
main .block-title .fas {
  color: var(--brand);
}
main .input-group-custom label,
main .form-group label {
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 0.9rem;
}
main .input-group-custom input,
main .input-group-custom select,
main .input-group-custom textarea,
main .phone-input input {
  border: 1px solid rgba(var(--brand-rgb), 0.2);
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
main .input-group-custom input:focus,
main .input-group-custom select:focus,
main .input-group-custom textarea:focus,
main .phone-input input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.12);
}
main .file-dropzone,
main .file-upload {
  border: 2px dashed rgba(var(--brand-rgb), 0.3);
  border-radius: 16px;
  background: var(--brand-soft);
  padding: 8px;
  transition: border-color 0.25s ease, background 0.25s ease;
}
main .file-dropzone:hover,
main .file-upload:hover {
  border-color: var(--brand);
  background: rgba(var(--brand-rgb), 0.08);
}
main .form-actions .btn-submit,
main .request-section .btn-submit,
main .contractRenew .btn-submit {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 14px 30px;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
main .form-actions .btn-submit:hover,
main .request-section .btn-submit:hover,
main .contractRenew .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px -14px rgba(var(--brand-rgb), 0.7);
}

/* =====================================================================
   ABOUT US — richer two-column banner + floating visual
   ===================================================================== */
main .about-v2 .about-v2__wrapper {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
}
main .about-v2 .card-banner__content {
  flex: initial;
  text-align: start;
  max-width: none;
  margin: 0;
}
main .about-v2 .card-banner__desc {
  max-width: 560px;
}
main .about-v2 .card-banner__desc span {
  color: #8fdcff;
  font-weight: 700;
}
main .about-v2 .about-v2__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}
main .about-v2 .about-v2__chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}
main .about-v2 .about-v2__chips span i {
  color: #8fdcff;
}
main .about-v2 .about-v2__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
main .about-v2 .about-v2__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}
main .about-v2 .about-v2__btn--solid {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 14px 26px -12px rgba(0, 0, 0, 0.5);
}
main .about-v2 .about-v2__btn--solid:hover {
  transform: translateY(-3px);
  background: var(--brand-soft);
}
main .about-v2 .about-v2__btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}
main .about-v2 .about-v2__btn--ghost:hover {
  background: #fff;
  color: var(--brand);
  transform: translateY(-3px);
}

/* visual */
main .about-v2 .about-v2__visual {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .about-v2 .about-v2__badge {
  position: absolute;
  top: 0;
  inset-inline-end: 6%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 16px 30px -14px rgba(0, 0, 0, 0.55);
  animation: floatY 5s ease-in-out infinite alternate;
}
main .about-v2 .about-v2__badge i {
  color: var(--brand);
}
main .about-v2 .about-v2__stack {
  position: relative;
  width: 100%;
  max-width: 360px;
  display: grid;
  gap: 16px;
  padding: 36px 0 10px;
}
main .about-v2 .about-v2__mini {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 24px 50px -30px rgba(0, 0, 0, 0.6);
  transition: transform 0.35s ease, background 0.35s ease;
}
main .about-v2 .about-v2__mini:nth-child(1) {
  transform: translateX(-18px);
}
main .about-v2 .about-v2__mini:nth-child(3) {
  transform: translateX(18px);
}
main .about-v2 .about-v2__mini:hover {
  transform: translateX(0) scale(1.02);
  background: rgba(255, 255, 255, 0.18);
}
main .about-v2 .about-v2__mini-icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
main .about-v2 .about-v2__mini strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
}
main .about-v2 .about-v2__mini span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
}
@media (max-width: 850px) {
  main .about-v2 .about-v2__wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  main .about-v2 .card-banner__content {
    text-align: center;
  }
  main .about-v2 .card-banner__desc {
    margin-inline: auto;
  }
  main .about-v2 .about-v2__chips,
  main .about-v2 .about-v2__cta {
    justify-content: center;
  }
  main .about-v2 .about-v2__stack {
    margin: 0 auto;
  }
}

.about-banner p{
  color: #fff;
}
/* =====================================================================
   AUTH pages — split layout (image half + form half; form-only on mobile)
   shared .page-content across login/register/otp/forget/reset
   ===================================================================== */
main .page-content {
  background: #fff;
  background-image: none;
  min-height: 100vh;
  padding: 0;
  align-items: stretch;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
main .page-content::before {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 46%;
  z-index: 0;
  background: linear-gradient(160deg, rgba(22, 70, 95, 0.82), rgba(14, 51, 70, 0.4)), url(../images/login-website.jpeg) center / cover no-repeat;
}
main .page-content::after {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 46%;
  z-index: 1;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1.6px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(120deg, #000, transparent);
  mask-image: linear-gradient(120deg, #000, transparent);
}
main .page-content .login-section {
  width: 54%;
  margin-inline-start: 46%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
  position: relative;
  z-index: 2;
}
main .page-content .login-section .login-content {
  padding: 0;
}
main .page-content .login-section .login-detail {
  max-width: 440px;
  width: 100%;
}
main .page-content .login-section .login-detail.centered {
  background: transparent;
  box-shadow: none;
  border: none;
  border-radius: 0;
  padding: 0;
}
main .page-content .login-section .login-detail .login-logo {
  border-bottom: none;
  padding-bottom: 6px;
  margin-bottom: 6px;
}
main .page-content .login-section .login-detail .login-logo img {
  max-width: 140px;
}
main .page-content .login-section .login-detail .login-detail-inner .login-title span {
  color: var(--brand-dark);
  font-weight: 800;
}
main .page-content .login-section .login-detail .login-detail-inner .login-title span::after {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  border-radius: 4px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, var(--brand), #2f7ea0);
}
main .page-content .login-section .login-detail .login-detail-inner .login-form input {
  height: 50px;
  border: 1px solid rgba(var(--brand-rgb), 0.2);
  background: #f8fbfc;
}
main .page-content .login-section .login-detail .login-detail-inner .site-button {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 16px 28px -14px rgba(var(--brand-rgb), 0.7);
}
main .page-content .login-section .login-detail .login-detail-inner .site-button:hover {
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  main .page-content::before,
  main .page-content::after {
    display: none;
  }
  main .page-content {
    background: linear-gradient(180deg, var(--brand-soft), #fff);
  }
  main .page-content .login-section {
    width: 100%;
    margin-inline-start: 0;
    padding: 90px 16px 50px;
  }
  main .page-content .login-section .login-detail.centered {
    background: #fff;
    box-shadow: 0 18px 44px -26px rgba(14, 51, 70, 0.4);
    border: 1px solid rgba(var(--brand-rgb), 0.12);
    border-radius: 18px;
    padding: 26px 20px;
  }
}

/* ---- Auth pages: back-to-home floating button ---- */
.auth-home-btn {
  position: fixed;
  top: 22px;
  inset-inline-start: 22px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand-dark, #0e3346);
  border: 1px solid rgba(22, 70, 95, 0.14);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 14px 30px -14px rgba(14, 51, 70, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.auth-home-btn i {
  color: var(--brand, #16465f);
  transition: transform 0.25s ease, color 0.25s ease;
}
.auth-home-btn:hover {
  background: var(--brand, #16465f);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -14px rgba(14, 51, 70, 0.6);
}
.auth-home-btn:hover i {
  color: #fff;
  transform: translateX(4px);
}
html[lang=en] .auth-home-btn i {
  transform: scaleX(-1);
}
html[lang=en] .auth-home-btn:hover i {
  transform: scaleX(-1) translateX(4px);
}
@media (max-width: 900px) {
  .auth-home-btn {
    top: 16px;
    inset-inline-start: 16px;
    padding: 9px 15px;
    font-size: 0.85rem;
  }
}

/* =====================================================================
   PROFILE / DASHBOARD redesign — sidebar + content (CSS only)
   ===================================================================== */
main .profile {
  margin-top: 36px;
  margin-bottom: 60px;
}

/* ---- Sidebar ---- */
main .profile .profileNavCol {
  background: #fff;
  border-radius: 20px;
  padding: 14px;
  border: 1px solid rgba(var(--brand-rgb), 0.1);
  box-shadow: 0 22px 48px -30px rgba(14, 51, 70, 0.45);
  margin-bottom: 30px;
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
main .profile .profileNavCol a,
main .profile .profileNavCol .logout-button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 13px 16px;
  margin: 0;
  border: none;
  border-radius: 13px;
  color: #5a6672;
  font-weight: 600;
  font-size: 0.95rem;
  background: transparent;
  text-align: start;
  text-decoration: none;
  transition: all 0.28s cubic-bezier(0.2, 0.9, 0.3, 1.05);
}
main .profile .profileNavCol a i,
main .profile .profileNavCol .logout-button i {
  margin: 0;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 0.95rem;
  background: rgba(var(--brand-rgb), 0.08);
  color: var(--brand);
  transition: all 0.28s ease;
}
main .profile .profileNavCol a:hover {
  background: rgba(var(--brand-rgb), 0.08);
  color: var(--brand-dark);
  transform: translateX(-4px);
}
html[lang=en] main .profile .profileNavCol a:hover {
  transform: translateX(4px);
}
main .profile .profileNavCol a.active {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: 0 14px 26px -12px rgba(var(--brand-rgb), 0.7);
}
main .profile .profileNavCol a.active i {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
main .profile .profileNavCol .logout-form {
  margin: 6px 0 0;
  padding-top: 6px;
  border-top: 1px solid rgba(var(--brand-rgb), 0.1);
}
main .profile .profileNavCol .logout-button {
  color: #d33b3b;
}
main .profile .profileNavCol .logout-button i {
  background: rgba(211, 59, 59, 0.1);
  color: #d33b3b;
}
main .profile .profileNavCol .logout-button:hover {
  background: #d33b3b;
  color: #fff;
}
main .profile .profileNavCol .logout-button:hover i {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
@media (max-width: 760px) {
  main .profile .profileNavCol {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  main .profile .profileNavCol a {
    flex: 1 1 46%;
  }
  main .profile .profileNavCol .logout-form {
    flex: 1 1 100%;
    border-top: none;
  }
}

/* ---- User header card ---- */
main .profileContent .userHeader {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-radius: 20px;
  padding: 26px;
  margin-bottom: 22px;
  box-shadow: 0 26px 50px -30px rgba(14, 51, 70, 0.55);
  overflow: hidden;
  position: relative;
}
main .profileContent .userHeader::after {
  content: "";
  position: absolute;
  bottom: -60px;
  inset-inline-end: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
main .profileContent .userHeader .userInfo img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.4);
}
main .profileContent .userHeader .userInfo .userName h3 {
  color: #fff;
  font-weight: 800;
  margin: 0;
}
main .profileContent .userHeader .userInfo .userName p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* ---- Stat cards ---- */
main .profileContent .stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 0 22px;
}
@media (max-width: 992px) {
  main .profileContent .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  main .profileContent .stats-row {
    grid-template-columns: 1fr;
  }
}
main .profileContent .stats-row .stat-card {
  background: #fff;
  border: 1px solid rgba(var(--brand-rgb), 0.1);
  border-radius: 18px;
  box-shadow: 0 18px 40px -28px rgba(14, 51, 70, 0.4);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
main .profileContent .stats-row .stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 54px -30px rgba(14, 51, 70, 0.5);
}
main .profileContent .stats-row .stat-card .stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
}
main .profileContent .stats-row .stat-card .stat-info h4 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin: 0 0 2px;
}
main .profileContent .stats-row .stat-card .stat-info p {
  color: #6b7682;
  margin: 0;
  font-size: 0.85rem;
}

/* ---- Orders ---- */
main .profileContent .orders-grid {
  display: grid;
  gap: 18px;
}
main .profileContent .orders-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}
main .profileContent .orders-header .orders-title {
  color: var(--brand-dark);
  font-weight: 800;
  margin: 0;
}
main .profileContent .orders-header .view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.25s ease;
}
main .profileContent .orders-header .view-all:hover {
  gap: 12px;
}
main .profileContent .order-card {
  background: #fff;
  border: 1px solid rgba(var(--brand-rgb), 0.1);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 18px 42px -30px rgba(14, 51, 70, 0.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
main .profileContent .order-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 56px -32px rgba(14, 51, 70, 0.5);
}
main .profileContent .order-card .order-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(var(--brand-rgb), 0.1);
}
main .profileContent .order-card .order-id {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--brand-dark);
}
main .profileContent .order-card .order-id i {
  color: var(--brand);
}
main .profileContent .order-card .order-status {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(var(--brand-rgb), 0.1);
  color: var(--brand);
  white-space: nowrap;
}
main .profileContent .order-card .order-status.status-completed,
main .profileContent .order-card .order-status.status-done,
main .profileContent .order-card .order-status.status-approved {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}
main .profileContent .order-card .order-status.status-pending,
main .profileContent .order-card .order-status.status-processing,
main .profileContent .order-card .order-status.status-new {
  background: rgba(245, 158, 11, 0.14);
  color: #d97706;
}
main .profileContent .order-card .order-status.status-cancelled,
main .profileContent .order-card .order-status.status-canceled,
main .profileContent .order-card .order-status.status-rejected {
  background: rgba(220, 38, 38, 0.12);
  color: #dc2626;
}
main .profileContent .order-card .order-body {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
}
@media (max-width: 600px) {
  main .profileContent .order-card .order-body {
    grid-template-columns: 1fr;
  }
}
main .profileContent .order-card .worker-media .title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
}
main .profileContent .order-card .worker-media .cv-image {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(var(--brand-rgb), 0.12);
  aspect-ratio: 3/4;
}
main .profileContent .order-card .worker-media .cv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .profileContent .order-card .info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}
main .profileContent .order-card .info-item {
  background: var(--brand-soft);
  border-radius: 12px;
  padding: 10px 12px;
}
main .profileContent .order-card .info-item h6 {
  color: #6b7682;
  font-size: 0.75rem;
  margin: 0 0 4px;
  font-weight: 600;
}
main .profileContent .order-card .info-item p {
  color: var(--brand-dark);
  font-weight: 700;
  margin: 0;
  font-size: 0.9rem;
}
main .profileContent .order-card .customer-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  background: var(--brand-soft);
  border-radius: 14px;
  padding: 14px;
}
main .profileContent .order-card .customer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
main .profileContent .order-card .customer-info img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
main .profileContent .order-card .customer-text h6 {
  margin: 0;
  color: var(--brand-dark);
  font-weight: 800;
}
main .profileContent .order-card .customer-text p {
  margin: 0;
  color: #6b7682;
  font-size: 0.85rem;
}
main .profileContent .order-card .contact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
main .profileContent .order-card .contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  background: var(--brand);
  color: #fff;
  transition: all 0.25s ease;
}
main .profileContent .order-card .contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px -12px rgba(var(--brand-rgb), 0.7);
}
main .profileContent .order-card .contact-btn.cancel-btn {
  background: #fff;
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.3);
}

/* ---- Edit profile form ---- */
main .profileContentCol .editProfileForm,
main .profileContent .editProfileForm {
  background: #fff;
  border: 1px solid rgba(var(--brand-rgb), 0.1);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 22px 48px -30px rgba(14, 51, 70, 0.4);
}
main .profileContent .editProfileForm input,
main .profileContent .editProfileForm select,
main .profileContent .editProfileForm textarea,
main .profileContentCol .editProfileForm input,
main .profileContentCol .editProfileForm select,
main .profileContentCol .editProfileForm textarea {
  border: 1px solid rgba(var(--brand-rgb), 0.2);
  border-radius: 12px;
  background: #f8fbfc;
}
main .profileContent .editProfileForm input:focus,
main .profileContentCol .editProfileForm input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.12);
}

/* empty states */
main .profileContent .no-results,
main .profileContent .empty-state {
  background: #fff;
  border: 1px dashed rgba(var(--brand-rgb), 0.3);
  border-radius: 18px;
  color: var(--brand-dark);
  padding: 40px 20px;
  text-align: center;
}
