@charset "UTF-8";
/* Import Google Font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, ::before, ::after {
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  overflow: -moz-scrollbars-vertical;
  overflow-y: scroll;
}

::-webkit-scrollbar {
  width: 0px;
  background: transparent; /* make scrollbar transparent */
}

body {
  color: black;
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  background-color: white;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Ngăn không cho scroll ngang */
  width: 100%;
}

::before, ::after {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

button {
  outline: none;
  border: none;
  background-color: transparent;
}

button, input, textarea, select, a, img {
  font-family: inherit;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  border: none;
  outline: none;
}

.icon {
  filter: var(--icon-color);
}

th {
  font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
  color: #02571C;
  line-height: 1.2;
}

.input-date {
  border: 1px solid #02571C;
  border-left: none;
  border-right: none;
  border-radius: 0;
  padding: 0;
  width: 100%;
  font-weight: 600;
  font-size: 1.3rem;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

.row > *, .container-fluid, .container {
  padding-left: calc(var(--grid-gutter-x) * 0.5);
  padding-right: calc(var(--grid-gutter-x) * 0.5);
}

.container-fluid, .container {
  --grid-gutter-x: 30px;
  --grid-gutter-y: 0;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--grid-gutter-y) * -1);
  margin-left: calc(var(--grid-gutter-x) * 0.5 * -1);
  margin-right: calc(var(--grid-gutter-x) * 0.5 * -1);
}
.row > * {
  margin-top: var(--grid-gutter-y);
}

.col {
  flex: 1 0;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --grid-gutter-x: 0px;
  }
  .g-sm-0,
  .gy-sm-0 {
    --grid-gutter-y: 0px;
  }
  .g-sm-1,
  .gx-sm-1 {
    --grid-gutter-x: 7.5px;
  }
  .g-sm-1,
  .gy-sm-1 {
    --grid-gutter-y: 7.5px;
  }
  .g-sm-2,
  .gx-sm-2 {
    --grid-gutter-x: 15px;
  }
  .g-sm-2,
  .gy-sm-2 {
    --grid-gutter-y: 15px;
  }
  .g-sm-3,
  .gx-sm-3 {
    --grid-gutter-x: 30px;
  }
  .g-sm-3,
  .gy-sm-3 {
    --grid-gutter-y: 30px;
  }
  .g-sm-4,
  .gx-sm-4 {
    --grid-gutter-x: 45px;
  }
  .g-sm-4,
  .gy-sm-4 {
    --grid-gutter-y: 45px;
  }
  .g-sm-5,
  .gx-sm-5 {
    --grid-gutter-x: 90px;
  }
  .g-sm-5,
  .gy-sm-5 {
    --grid-gutter-y: 90px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --grid-gutter-x: 0px;
  }
  .g-md-0,
  .gy-md-0 {
    --grid-gutter-y: 0px;
  }
  .g-md-1,
  .gx-md-1 {
    --grid-gutter-x: 7.5px;
  }
  .g-md-1,
  .gy-md-1 {
    --grid-gutter-y: 7.5px;
  }
  .g-md-2,
  .gx-md-2 {
    --grid-gutter-x: 15px;
  }
  .g-md-2,
  .gy-md-2 {
    --grid-gutter-y: 15px;
  }
  .g-md-3,
  .gx-md-3 {
    --grid-gutter-x: 30px;
  }
  .g-md-3,
  .gy-md-3 {
    --grid-gutter-y: 30px;
  }
  .g-md-4,
  .gx-md-4 {
    --grid-gutter-x: 45px;
  }
  .g-md-4,
  .gy-md-4 {
    --grid-gutter-y: 45px;
  }
  .g-md-5,
  .gx-md-5 {
    --grid-gutter-x: 90px;
  }
  .g-md-5,
  .gy-md-5 {
    --grid-gutter-y: 90px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --grid-gutter-x: 0px;
  }
  .g-lg-0,
  .gy-lg-0 {
    --grid-gutter-y: 0px;
  }
  .g-lg-1,
  .gx-lg-1 {
    --grid-gutter-x: 7.5px;
  }
  .g-lg-1,
  .gy-lg-1 {
    --grid-gutter-y: 7.5px;
  }
  .g-lg-2,
  .gx-lg-2 {
    --grid-gutter-x: 15px;
  }
  .g-lg-2,
  .gy-lg-2 {
    --grid-gutter-y: 15px;
  }
  .g-lg-3,
  .gx-lg-3 {
    --grid-gutter-x: 30px;
  }
  .g-lg-3,
  .gy-lg-3 {
    --grid-gutter-y: 30px;
  }
  .g-lg-4,
  .gx-lg-4 {
    --grid-gutter-x: 45px;
  }
  .g-lg-4,
  .gy-lg-4 {
    --grid-gutter-y: 45px;
  }
  .g-lg-5,
  .gx-lg-5 {
    --grid-gutter-x: 90px;
  }
  .g-lg-5,
  .gy-lg-5 {
    --grid-gutter-y: 90px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --grid-gutter-x: 0px;
  }
  .g-xl-0,
  .gy-xl-0 {
    --grid-gutter-y: 0px;
  }
  .g-xl-1,
  .gx-xl-1 {
    --grid-gutter-x: 7.5px;
  }
  .g-xl-1,
  .gy-xl-1 {
    --grid-gutter-y: 7.5px;
  }
  .g-xl-2,
  .gx-xl-2 {
    --grid-gutter-x: 15px;
  }
  .g-xl-2,
  .gy-xl-2 {
    --grid-gutter-y: 15px;
  }
  .g-xl-3,
  .gx-xl-3 {
    --grid-gutter-x: 30px;
  }
  .g-xl-3,
  .gy-xl-3 {
    --grid-gutter-y: 30px;
  }
  .g-xl-4,
  .gx-xl-4 {
    --grid-gutter-x: 45px;
  }
  .g-xl-4,
  .gy-xl-4 {
    --grid-gutter-y: 45px;
  }
  .g-xl-5,
  .gx-xl-5 {
    --grid-gutter-x: 90px;
  }
  .g-xl-5,
  .gy-xl-5 {
    --grid-gutter-y: 90px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1520px;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --grid-gutter-x: 0px;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --grid-gutter-y: 0px;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --grid-gutter-x: 7.5px;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --grid-gutter-y: 7.5px;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --grid-gutter-x: 15px;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --grid-gutter-y: 15px;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --grid-gutter-x: 30px;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --grid-gutter-y: 30px;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --grid-gutter-x: 45px;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --grid-gutter-y: 45px;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --grid-gutter-x: 90px;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --grid-gutter-y: 90px;
  }
}
@media (max-width: calc(1400px - 0.02px)) {
  .d-xxl-block {
    display: block;
  }
  .d-xxl-flex {
    display: flex;
  }
  .d-xxl-grid {
    display: grid;
  }
  .d-xxl-none {
    display: none;
  }
}
@media (max-width: calc(1200px - 0.02px)) {
  .d-xl-block {
    display: block;
  }
  .d-xl-flex {
    display: flex;
  }
  .d-xl-grid {
    display: grid;
  }
  .d-xl-none {
    display: none;
  }
}
@media (max-width: calc(992px - 0.02px)) {
  .d-lg-block {
    display: block;
  }
  .d-lg-flex {
    display: flex;
  }
  .d-lg-grid {
    display: grid;
  }
  .d-lg-none {
    display: none;
  }
}
@media (max-width: calc(768px - 0.02px)) {
  .d-md-block {
    display: block;
  }
  .d-md-flex {
    display: flex;
  }
  .d-md-grid {
    display: grid;
  }
  .d-md-none {
    display: none;
  }
}
@media (max-width: calc(576px - 0.02px)) {
  .d-sm-block {
    display: block;
  }
  .d-sm-flex {
    display: flex;
  }
  .d-sm-grid {
    display: grid;
  }
  .d-sm-none {
    display: none;
  }
}
@keyframes horizontal-shaking {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}
.logo__img-helper {
  width: 200px;
  height: 200px;
  object-fit: contain;
  position: absolute;
  left: -95px;
  top: -53px;
}
.logo__img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.logo__img--large {
  width: 200px;
  height: 200px;
}
.logo__img-header {
  transform: translateY(-10px);
}
.logo__title {
  color: var(--Secondary-Color-Secondary-1, #1A162E);
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.45; /* 145.455% */
}
.logo__user {
  display: block;
}

.logo_medium {
  width: 100px;
  height: 100px;
  left: -55px;
}

.drop-down {
  position: absolute;
  padding-top: 54px;
  left: 0;
  width: min(1240px, 100%);
  display: none;
}
@media (max-width: 992px) {
  .drop-down {
    position: initial;
    padding-top: 0;
  }
}
.drop-down__inner {
  --inner-padding:30px;
  position: relative;
  padding: var(--inner-padding);
  border-radius: 20px;
  background: var(--background-dropdown);
  box-shadow: 0px 40px 90px 20px var(--color-box-shadow);
}
@media (max-width: 992px) {
  .drop-down__inner {
    padding: 0;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
  }
}
.drop-down__inner::before {
  content: url("../icon/arrow-top.svg");
  position: absolute;
  top: -12px;
  left: var(--arrow-left-pos);
  translate: -50%;
}
@media (max-width: 992px) {
  .drop-down__inner::before {
    content: none;
  }
}

.menu-top {
  position: relative;
}
.menu-top__main {
  --width-menu-top-main:292px;
  max-height: calc(min(582px, 100vh - 150px) - var(--inner-padding) * 2);
  width: var(--width-menu-top-main);
  border-right: solid 1px var(--menu-top-main-color-border-right);
  overflow-y: auto;
}
@media (max-width: 992px) {
  .menu-top__main {
    width: 100%;
    max-height: none;
    height: auto;
    border-right: none;
  }
}
.menu-top__title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  height: 50px;
  margin-top: -30px;
  margin-left: -30px;
  margin-right: -30px;
  border-radius: 20px 20px 0 0;
  background-color: var(--br-menu-top-heading);
  color: var(--color-menu-top-heading);
}
.menu-top__content-table {
  width: 100%;
}
.menu-top__content-col {
  border: solid 1px #666;
  height: 30px;
  padding: 5px;
}
.menu-top__content-heading {
  margin: 20px 0 10px;
  font-size: 2rem;
  color: var(--color-text-menu-top);
  padding-left: 10px;
  padding-right: 10px;
}
.menu-top__content {
  flex-grow: 1;
  max-height: calc(min(582px, 100vh - 150px) - var(--inner-padding) * 2);
  overflow-y: auto;
}
.menu-top__content--heading {
  margin-top: 10px;
  color: var(--Secondary-Color-Secondary-1);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5; /* 150% */
}
.menu-top__content-table-row-1 {
  color: var(--color-menu-top-heading);
  background-color: var(--br-menu-top-heading);
}
.menu-top__content-table-row-2 {
  background-color: var(--br-row-2);
}
.menu-top__content-desc {
  padding-left: 30px;
  font-size: 1.5rem;
  line-height: 30px;
  color: var(--color-text-detail);
}
.menu-top__content-desc::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-text-detail);
  transform: translateY(-50%);
  margin-right: 10px;
}
.menu-top__content-desc-list {
  margin-top: 20px;
}
.menu-top__content-desc-child {
  font-size: 1.4rem;
  margin-left: 65px;
  color: var(--color-text-detail);
  line-height: 30px;
}
.menu-top__content-infor {
  display: flex;
  flex-direction: column;
  /* justify-content: flex-start; */
  /* align-content: flex-start; */
  text-align: start;
}
.menu-top__content-detail {
  display: flex;
  flex-direction: column;
  /* justify-content: flex-start; */
  /* align-content: flex-start; */
  text-align: start;
}
.menu-top__content-detail + .menu-top__content-detail {
  margin-top: 20px;
}
.menu-top__list {
  margin-top: 26px;
}
.menu-top__list-question {
  margin-top: 17px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-height: calc(min(582px, 100vh - 175px) - var(--inner-padding) * 2);
  overflow-y: auto;
}
.menu-top__button-question {
  background-color: var(--br-row-2);
  color: #ffffff;
  padding: 17px;
  font-weight: 600;
  width: 100%;
}
.menu-top__button-question.active .menu-top__dropdown {
  display: block;
  opacity: 1;
  visibility: visible;
  background: #fff;
  padding-right: 20px;
  border-radius: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 10px;
}
.menu-top__dropdown {
  opacity: 0;
  visibility: hidden;
  display: none;
  transition: opacity visibility;
  transition-duration: 1s;
}
.menu-top__link {
  display: block;
  padding: 3px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.42; /* 142.857% */
}
.menu-top__item {
  padding: 3px 0;
}
.menu-top__item:first-child .menu-top__link {
  padding-top: 0;
}
.menu-top__item:last-child .menu-top__link {
  padding-bottom: 0;
}
.menu-top__item--active > .menu-top__link, .menu-top__item:hover > .menu-top__link {
  color: var(--Blue-Blue-hover, #0071DC);
}
.menu-top__item--active .sub-menu {
  display: grid;
}
.menu-top .hide {
  display: none;
}
.menu-top .show {
  display: block;
}

.menu-column {
  display: flex;
  gap: 14px;
}
.menu-column + .menu-column {
  margin-top: 30px;
}
.menu-column__icon {
  width: 36px;
  height: 36px;
  position: relative;
}
.menu-column__icon-1 {
  width: 30px;
  height: 30px;
  object-fit: cover;
}
.menu-column__icon-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 24px;
  height: 24px;
  object-fit: cover;
  filter: var(--filter-case-2);
}

.sub-menu {
  position: absolute;
  padding-left: 30px;
  inset: 0 0 0 277px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow-y: auto;
}
@media (max-width: 992px) {
  .sub-menu {
    position: initial;
    grid-template-columns: 1fr;
    padding-left: 0;
  }
}
.sub-menu__notmain {
  display: grid;
  position: inherit;
  inset: inherit;
  grid-template-columns: repeat(4, 1fr);
  max-height: calc(min(582px, 100vh - 150px) - var(--inner-padding) * 2);
}
@media (max-width: 992px) {
  .sub-menu__notmain {
    grid-template-columns: 1fr;
    padding-left: 0;
    height: auto;
    max-height: none;
  }
}

.slideshow__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slideshow__search {
  z-index: 100;
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  width: 90%;
  background-color: white;
  border-radius: 10px;
  border-radius: 10px;
  background-color: var(--white);
  background: linear-gradient(135deg, #2ecc71, #2980b9);
}
@media (max-width: 1200px) {
  .slideshow__search {
    width: 55%;
  }
}
@media (max-width: 768px) {
  .slideshow__search {
    width: 90% !important;
  }
}
@media (max-width: 576px) {
  .slideshow__search {
    width: 100% !important;
  }
}
.slideshow__search-heading {
  text-align: center;
  margin-top: -8px;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 3rem;
  color: white;
}
.slideshow__list {
  width: 100%;
  height: 100vh;
}
.slideshow__item {
  width: 100%;
  height: 100vh;
  background: url(/img/picture-home-1-destop.jpg) no-repeat center center;
  background-size: cover;
  background-position: center;
  animation: animate 15s infinite ease-in-out;
}
@keyframes animate {
  0% {
    background: url(/img/picture-home-1-destop.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  25% {
    background: url(/img/picture-home-2-destop.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  50% {
    background: url(/img/picture-home-3-destop.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  100% {
    background: url(/img/picture-home-1-destop.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
}
.slideshow__form-group {
  display: flex;
}
.slideshow__form-group--button {
  width: 30%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1200px) {
  .slideshow__form-group--button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 66%;
  }
}
@media (max-width: 768px) {
  .slideshow__form-group--button {
    width: 100%;
  }
}
.slideshow__form-group--adjust {
  width: 75%;
  height: 44px;
}
@media (max-width: 1200px) {
  .slideshow__form-group--adjust {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
  }
}
.slideshow__form-group--remain {
  width: 30%;
  height: 44px;
  font-size: 1.4rem;
  font-weight: 600;
}
@media (max-width: 1200px) {
  .slideshow__form-group--remain {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 15px;
  }
}
@media (max-width: 1200px) {
  .slideshow__form-group--remain {
    height: 70px;
  }
}
@media (max-width: 576px) {
  .slideshow__form-group--remain {
    margin-top: -15px;
  }
}
.slideshow .form-select__province {
  width: 35%;
  font-size: 1.3rem;
  font-weight: 600;
  height: 44px;
  border-radius: 0;
  border: 1px solid #02571C;
  border-right: none;
}
@media (max-width: 1200px) {
  .slideshow .form-select__province {
    width: 100%;
  }
}
.slideshow .form-select__district {
  width: 25%;
  font-size: 1.3rem;
  font-weight: 600;
  height: 44px;
  border-radius: 0;
  border: 1px solid #02571C;
  border-left: none;
  border-right: none;
}
@media (max-width: 1200px) {
  .slideshow .form-select__district {
    width: 100%;
  }
}
.slideshow .form-select__service {
  width: 40%;
  font-size: 1.3rem;
  font-weight: 600;
  height: 44px;
  border-radius: 0;
  border: 1px solid #02571C;
  border-left: none;
  border-right: none;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .slideshow .form-select__service {
    width: 100%;
  }
}
.slideshow .form-select__end-time {
  width: 50%;
  font-size: 1.3rem;
  font-weight: 600;
  height: 44px;
  border-radius: 0;
  border: 1px solid #02571C;
  border-left: none;
  border-right: none;
}
@media (max-width: 1200px) {
  .slideshow .form-select__end-time {
    width: 100%;
  }
}
.slideshow .form-select__start-time {
  width: 50%;
  font-size: 1.3rem;
  font-weight: 600;
  height: 44px;
  border-radius: 0;
  border: 1px solid #02571C;
  border-left: none;
  border-right: none;
}
@media (max-width: 1200px) {
  .slideshow .form-select__start-time {
    width: 100%;
  }
}
.slideshow__hidden {
  z-index: 1;
  animation: opacity-anime-hidden;
  animation-duration: 1.5s;
}
@keyframes opacity-anime-hidden {
  0% {
    opacity: 1;
    transition: opacity;
    transition-duration: 0.5;
  }
  20% {
    opacity: 0.8;
    transition: opacity;
    transition-duration: 0.5;
  }
  40% {
    opacity: 0.6;
    transition: opacity;
    transition-duration: 0.5;
  }
  60% {
    opacity: 0.4;
    transition: opacity;
    transition-duration: 0.5;
  }
  80% {
    opacity: 0.2;
    transition: opacity;
    transition-duration: 0.5;
  }
  100% {
    opacity: 0;
    transition: opacity;
    transition-duration: 0.5;
  }
}
.slideshow__appear {
  z-index: 2;
  animation: opacity-anime-appear;
  animation-duration: 1.5s;
}
@keyframes opacity-anime-appear {
  0% {
    opacity: 0;
    transition: opacity;
    transition-duration: 0.5;
  }
  20% {
    opacity: 0.2;
    transition: opacity;
    transition-duration: 0.5;
  }
  40% {
    opacity: 0.4;
    transition: opacity;
    transition-duration: 0.5;
  }
  60% {
    opacity: 0.6;
    transition: opacity;
    transition-duration: 0.5;
  }
  80% {
    opacity: 0.8;
    transition: opacity;
    transition-duration: 0.5;
  }
  100% {
    opacity: 1;
    transition: opacity;
    transition-duration: 0.5;
  }
}

.form__short-term {
  margin-top: 20px;
  display: flex;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #d4d4d4;
  background-color: var(--white);
  border-radius: 15px;
}
@media (max-width: 1200px) {
  .form__short-term {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.form__long-term {
  margin-top: 20px;
  display: flex;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #d4d4d4;
  background-color: var(--white);
  border-radius: 15px;
}
@media (max-width: 1200px) {
  .form__long-term {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.heading {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 1px black;
  font-size: 2rem;
  color: var(--text-black-900);
  line-height: 1.2;
}
@media (max-width: 1700px) {
  .heading {
    font-size: 2.5rem;
  }
}
@media (max-width: 1200px) {
  .heading {
    font-size: 1.5rem;
  }
}
@media (max-width: 992px) {
  .heading {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .heading {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .heading {
    font-size: 3rem;
  }
}

.heading.extra-color-white {
  color: #fff;
  position: relative;
  top: 25px;
}

.heading::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--text-black-700);
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.heading::after:has(.extra-color-white) {
  content: "";
  background-color: #fff;
}

/* === ABOUT SECTION === */
.section-padding {
  padding: 100px 0;
}

.about__subtitle {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2ecc71;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
  padding-left: 40px;
}

.about__subtitle:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 2px;
  background: #2ecc71;
  transform: translateY(-50%);
}

.about__heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #222;
}

.about__content {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.text-highlight {
  color: #2ecc71;
  font-weight: 600;
}

.about__features {
  margin: 30px 0;
}

.about__feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(13, 110, 253, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2ecc71;
  margin-right: 15px;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.feature-text h4 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.feature-text p {
  font-size: 1.4rem;
  color: #666;
  margin: 0;
}

.about__image-wrapper {
  position: relative;
  padding: 15px;
}

.about__image {
  border-radius: 10px;
  transition: transform 0.5s;
}

.about__image-wrapper:hover .about__image {
  transform: scale(1.03);
}

.about__experience-badge {
  position: absolute;
  bottom: 30px;
  left: 0;
  background: #2ecc71;
  color: white;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about__experience-badge .years {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.about__experience-badge .text {
  font-size: 0.9rem;
}

.about__app-download {
  margin-top: 30px;
}

.download-title {
  font-size: 1.6rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.download-buttons {
  display: flex;
  gap: 15px;
}

.download-buttons img {
  max-height: 45px;
  transition: transform 0.3s;
}

.download-buttons a:hover img {
  transform: translateY(-5px);
}

/* Process Section */
.section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-subtitle {
  color: #666;
  font-size: 1.6rem;
  max-width: 700px;
  margin: 0 auto 40px;
}

.process-timeline {
  position: relative;
  padding: 40px 0;
}

.process-connector {
  position: absolute;
  top: 105px;
  left: 12.5%;
  width: 75%;
  height: 4px;
  background: #e9ecef;
  z-index: -1;
}

.process-step {
  text-align: center;
  margin-bottom: 30px;
}

.process-icon-container {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.process-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: white;
  border: 3px solid #2ecc71;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #2ecc71;
  position: relative;
  transition: all 0.3s;
  z-index: 2;
}

.step-number {
  position: absolute;
  top: -10px;
  right: -5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #2ecc71;
  color: white;
  font-size: 0.9rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step:hover .process-icon {
  background: #2ecc71;
  color: white;
  transform: translateY(-5px);
}

.process-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-description {
  color: #666;
  font-size: 1.4rem;
  margin: 0 auto;
  max-width: 200px;
}

/* Stats Section */
.about__stats {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e9ecef;
}

.stat-item {
  padding: 20px;
  transition: transform 0.3s;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-icon {
  font-size: 2rem;
  color: #2ecc71;
  margin-bottom: 15px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #222;
}

.stat-title {
  color: #666;
  font-size: 1.5rem;
}

@media (max-width: 991px) {
  .about__heading {
    font-size: 2rem;
  }
  .process-connector {
    display: none;
  }
}
@media (max-width: 767px) {
  .section-padding {
    padding: 70px 0;
  }
  .about__heading {
    font-size: 1.8rem;
  }
  .section-heading {
    font-size: 1.8rem;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .about__experience-badge {
    padding: 10px 15px;
  }
  .about__experience-badge .years {
    font-size: 2rem;
  }
}
/* Overall service section styling */
#service {
  background: linear-gradient(135deg, #2ecc71, #2980b9);
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

#service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

#service .extra-color-white {
  color: white;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.padding-top__service--50px {
  padding-top: 30px;
}

/* Service boxes */
.service__box {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 5px 0;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service__box:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.service__box i {
  background-color: rgba(0, 0, 0, 0.2);
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  margin-bottom: 15px;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 30px !important;
}

.service__box:hover i {
  transform: scale(1.1);
  background-color: rgba(0, 0, 0, 0.3);
}

.service__box-heading {
  color: #ffffff;
  font-size: 1.4rem;
  margin: 15px 0;
  font-weight: 600;
}

.service__box-content {
  color: #f5f5f5;
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Grid spacing */
.grid-service {
  margin-bottom: 20px;
}

.margin-top {
  margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .service__box i {
    font-size: 25px !important;
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}
@media (max-width: 992px) {
  .grid-service .col-lg-3 {
    margin-bottom: 25px;
  }
  .service__box {
    padding: 25px 15px;
  }
}
@media (max-width: 767px) {
  #service {
    padding: 60px 0;
  }
  .service__box {
    margin-bottom: 20px;
  }
  .service__box-heading {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .col-mobile-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/* Add service box animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.service__box {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.grid-service .col-lg-3:nth-child(1) .service__box {
  animation-delay: 0.1s;
}

.grid-service .col-lg-3:nth-child(2) .service__box {
  animation-delay: 0.2s;
}

.grid-service .col-lg-3:nth-child(3) .service__box {
  animation-delay: 0.3s;
}

.grid-service .col-lg-3:nth-child(4) .service__box {
  animation-delay: 0.4s;
}

/* Fix for icon display in service boxes */
.service__box i {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
}

.service-icon {
  color: #ffffff;
  font-size: 30px;
}

/* CSS nâng cấp cho phần Partner/Helper */
.helper {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  position: relative;
  overflow: hidden;
}

.helper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/img/pattern-dots.svg");
  opacity: 0.05;
  pointer-events: none;
}

.section-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  text-align: center;
  color: #333;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #4a6cf7, #24c1e0);
  border-radius: 3px;
}

.helper__mySwiper {
  padding: 20px 10px 50px;
  overflow: visible !important;
}

.helper__wrapper {
  padding-bottom: 15px;
}

.helper__swiper-slide {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: scale(0.95);
  transition: all 0.4s ease !important;
  position: relative;
  background: #fff;
  height: 300px;
}

.helper__swiper-slide:hover {
  transform: translateY(-10px) scale(0.97);
}

.helper__swiper-slide::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.helper__swiper-slide:hover::before {
  opacity: 1;
}

.helper__swiper-slide::after {
  content: "Xem chi tiết";
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-weight: 500;
  font-size: 14px;
  z-index: 3;
  opacity: 0;
  transition: all 0.3s ease;
  padding: 6px 12px;
  background: rgba(74, 108, 247, 0.8);
  border-radius: 20px;
}

.helper__swiper-slide:hover::after {
  opacity: 1;
  bottom: 25px;
}

.helper__swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.helper__swiper-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.helper__swiper-slide:hover .helper__swiper-slide-img {
  transform: scale(1.08);
}

/* Hiệu ứng dấu tích cho partner */
.helper__swiper-slide a::before {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  width: 22px;
  height: 22px;
  background: #4a6cf7;
  border-radius: 50%;
  z-index: 3;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.helper__swiper-slide a::after {
  content: "✓";
  position: absolute;
  top: 15px;
  right: 15px;
  width: 22px;
  height: 22px;
  color: white;
  font-weight: bold;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.helper__swiper-slide:hover a::before,
.helper__swiper-slide:hover a::after {
  opacity: 1;
  transform: scale(1);
}

/* Thêm hiệu ứng hiển thị thông tin người giúp việc */
.helper__infor {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 5;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.helper__swiper-slide:hover .helper__infor {
  transform: translateY(0);
}

.helper__infor-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.helper__infor-time,
.helper__infor-age {
  font-size: 14px;
  color: #666;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}

.helper__infor-time::before,
.helper__infor-age::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #4a6cf7;
  border-radius: 50%;
  margin-right: 8px;
}

/* Làm đẹp thanh pagination */
.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ddd;
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  width: 20px;
  background: linear-gradient(90deg, #4a6cf7, #24c1e0);
  border-radius: 5px;
}

/* Thêm nút điều hướng */
.helper__mySwiper .swiper-button-next,
.helper__mySwiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.helper__mySwiper .swiper-button-next:hover,
.helper__mySwiper .swiper-button-prev:hover {
  background: #4a6cf7;
}

.helper__mySwiper .swiper-button-next::after,
.helper__mySwiper .swiper-button-prev::after {
  font-size: 16px;
  color: #333;
  transition: color 0.3s ease;
}

.helper__mySwiper .swiper-button-next:hover::after,
.helper__mySwiper .swiper-button-prev:hover::after {
  color: white;
}

/* Các điểm nhấn khi hiển thị slide */
.swiper-slide-active.helper__swiper-slide {
  transform: scale(1);
}

/* Animation cho phần section heading */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#helper .section-heading {
  animation: fadeInUp 0.8s ease forwards;
}

/* Làm đẹp container */
.partnership .container {
  padding-bottom: 0;
}

/* Responsive styles */
@media (max-width: 992px) {
  .helper {
    padding: 40px 0;
  }
  .section-heading {
    font-size: 28px;
    margin-bottom: 35px;
  }
  .helper__swiper-slide {
    height: 250px;
  }
}
@media (max-width: 768px) {
  .helper {
    padding: 30px 0;
  }
  .section-heading {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .helper__swiper-slide {
    height: 220px;
  }
  .helper__swiper-slide::after {
    font-size: 12px;
    padding: 4px 10px;
  }
}
.padding-bottom {
  padding-bottom: 130px;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.helper__mySwiper {
  height: 80%;
}
.helper__wrapper {
  align-items: center;
}
.helper__swiper-slide {
  width: 300px;
  height: 400px;
}
.helper__swiper-slide:hover .helper__infor-time {
  opacity: 1;
  visibility: visible;
}
.helper__swiper-slide:hover .helper__infor-age {
  opacity: 1;
  visibility: visible;
}
.helper__swiper-slide-img {
  width: 90%;
  height: 300px;
  object-fit: contain;
  border-radius: 10px 10px 0px 0px;
  transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
  filter: blur(0px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.helper__swiper-slide-img:hover {
  cursor: pointer;
  transform: scale(1.05);
  opacity: 0.9;
}
@media (max-width: 1200px) {
  .helper__swiper-slide-img {
    width: 90%;
    height: 250px;
  }
}
@media (max-width: 992px) {
  .helper__swiper-slide-img {
    width: 90%;
    height: 280px;
  }
}
@media (max-width: 768px) {
  .helper__swiper-slide-img {
    width: 90%;
    height: 200px;
  }
}
@media (max-width: 576px) {
  .helper__swiper-slide-img {
    width: 100%;
    height: 90%;
  }
}

.swiper-slide-active {
  scale: 1.2;
  transition: scale 0.3s ease;
}

.swiper-pagination {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 10px;
}

.swiper__slideshow {
  width: 100%;
  height: 100%;
}

.swiper-wrapper__slideshow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-slide__slideshow {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide__slideshow .slideshow__img {
  object-fit: cover;
  display: block;
}

@media (max-width: 1200px) {
  .form-label__start-date {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .icon-service {
    font-size: 25px;
  }
}

@media (max-width: 1200px) {
  .service__box i {
    font-size: 25px !important;
  }
}

@media (max-width: 992px) {
  .container .grid-service {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    column-gap: 20px !important;
  }
}
@media (max-width: 576px) {
  .container .grid-service {
    display: flex !important;
  }
}

@media (max-width: 992px) {
  .container .col-mobile-12 {
    display: block !important;
    width: 70% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 576px) {
  .container .col-mobile-12 {
    display: flex !important;
  }
}

@media (max-width: 576px) {
  .extra-infor-row {
    flex-direction: column;
  }
}

.cate-item {
  display: flex;
  padding: 20px;
  gap: 20px;
  border-radius: 16px;
  background-color: var(--br-cate-item);
  height: 100%;
}
@media (max-width: 1700px) {
  .cate-item {
    align-items: center;
  }
}
@media (max-width: 1200px) {
  .cate-item {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .cate-item {
    flex-direction: row;
  }
}
.cate-item__thumb {
  display: block;
  width: 116px;
  height: 116px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--br-cate-item-picture);
}
@media (max-width: 1200px) {
  .cate-item__thumb {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .cate-item__thumb {
    width: 88px;
    height: 88px;
  }
}
.cate-item__title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.45; /* 145.455% */
  margin-bottom: 6px;
}
.cate-item__infor {
  padding: 20px 30px 20px 0;
}
@media (max-width: 1200px) {
  .cate-item__infor {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
}
.cate-item__desc {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5; /* 150% */
}

#short-term-btn {
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
@media (max-width: 1200px) {
  #short-term-btn {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 0px;
  }
}

#long-term-btn {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
}
@media (max-width: 1200px) {
  #long-term-btn {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 0px;
  }
}

.filter-btn {
  display: flex;
  gap: 14px;
  padding: 10px 12px;
  background-color: var(--br-filter);
  border-radius: 6px;
  /* Medium 16 */
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}

.like-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--br-like);
  box-shadow: 0px 20px 60px rgba(124, 124, 124, 0.2);
}
.like-btn.liked-btn .like-btn__icon {
  display: none;
}
.like-btn:not(.liked-btn) .like-btn__icon--liked {
  display: none;
}

.btn {
  height: 44px;
  padding: 0 20px;
  border-radius: 6px;
  background: #292E39;
  font-size: 1.4rem;
  font-weight: 500;
  user-select: none;
  white-space: nowrap;
  border: 1px solid #4CAF50;
}
.btn-find {
  background: linear-gradient(135deg, #2ecc71, #2980b9);
  border-radius: 0px;
  height: 45px;
  color: #fff;
  font-weight: 600;
}
.btn__short-term, .btn__long-term {
  width: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  border-radius: 0px;
  background-color: #2ecc71;
}
.btn__short-term:hover, .btn__long-term:hover {
  background-color: #02571C;
  border: solid 1px #fff;
  border-radius: 3px;
}
.btn__short-term:active, .btn__long-term:active {
  background-color: red;
}
.btn--text {
  color: black;
  background-color: transparent;
  font-weight: 400;
}
.btn--primary {
  background-color: #4CAF50;
  color: #1A162E;
  white-space: nowrap;
}
.btn--outline {
  background: transparent;
  border: solid 1px #9E9DA8;
}
.btn[disabled], .btn--disabled {
  opacity: 0.5;
  pointer-events: none;
}
.btn--rounded {
  border-radius: 99px;
  border: solid 1px #fff;
}
.btn:hover {
  opacity: 0.9;
}
.btn-center {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.active-term {
  background-color: #4CAF50;
  border-radius: 3px;
  pointer-events: none;
}

@media (max-width: 1200px) {
  .btn-google-play__img {
    display: inline-block;
    height: 40px;
  }
}

@media (max-width: 1200px) {
  .btn-apple-store__img {
    display: inline-block;
    height: 40px;
  }
}

.btn.btn-find::hover {
  opacity: 0.7;
}

.btn-long {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  position: relative;
  top: 10px;
}

.btn-find-short-term {
  border: 1px solid #d4d4d4;
  position: relative;
  top: 10px;
  left: 45%;
  border-radius: 10px;
}
@media (max-width: 576px) {
  .btn-find-short-term {
    left: 34%;
  }
}

.product-card {
  padding: 16px;
  border-radius: 20px;
  background-color: var(--br-product-card);
  box-shadow: var(--color-box-shadow-pro-card);
  height: 100%;
}
.product-card__img-wrap {
  padding-top: 100%;
  position: relative;
}
.product-card__img-thumb {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-card .like-btn__product-item {
  position: absolute;
  bottom: 0;
  right: 0;
}
.product-card .product-item__title {
  margin-top: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
.product-card .product-item__price, .product-card .product-item__rate {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
.product-card .product-item__branch {
  display: inline-block;
  margin-top: 16px;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 146.667% */
}
.product-card .product-item__infor {
  margin-top: 16px;
  display: flex;
  align-items: center;
}
.product-card .product-item__star {
  margin-left: auto;
  margin-right: 6px;
}

.filter-wrap {
  position: relative;
}

.filter {
  margin-top: 10px;
  position: absolute;
  right: 0;
  top: 50px;
  background: var(--Secondary-Color-Background);
  z-index: 5;
  border-radius: 20px;
  padding: 30px;
  transition: opacity visibility;
  transition-duration: 0.3s;
}
@media (max-width: 576px) {
  .filter {
    position: fixed;
    height: 100vh;
    width: 100vw;
    inset: 0;
    margin-top: 0;
    border-radius: 0;
  }
}
.filter__form {
  max-height: calc(100vh - 350px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0 20px;
}
@media (max-width: 576px) {
  .filter__form {
    max-height: calc(100vh - 90px);
  }
}
.filter.hide {
  opacity: 0;
  visibility: hidden;
}
.filter__arrow-top {
  position: absolute;
  top: -13px;
  right: 26px;
  filter: var(--color-arrow-top);
}
.filter__heading {
  font-size: 2.2rem;
  padding-bottom: 30px;
  font-weight: 500;
  line-height: 32px; /* 145.455% */
}
.filter__row {
  display: flex;
}
@media (max-width: 1200px) {
  .filter__content {
    flex-direction: column;
  }
}
.filter__separate {
  width: 2px;
  background-color: #EEEEEE;
  margin: 0 30px;
}
@media (max-width: 1200px) {
  .filter__separate {
    width: initial;
    height: 2px;
    margin: 30px 0px;
  }
}
.filter__footer {
  display: flex;
  margin-top: 32px;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .filter__footer {
    position: sticky;
    bottom: 0;
    background-color: var(--Secondary-Color-Background);
    padding-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .filter__footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.filter__cancel, .filter__search {
  height: 38px;
}
.filter__cancel {
  font-size: 1.5rem;
}
.filter__search {
  font-size: 1.4rem;
}

.filter__form-label {
  display: block;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 32px; /* 145.455% */
  padding-bottom: 10px;
}
.filter__form-label--small {
  display: block;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}
.filter__form-slider {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: var(--color-slider);
  margin-top: 15px;
}
.filter__form-slider::before, .filter__form-slider::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  translate: 0 -50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: solid 6px yellow;
  background-color: var(--Secondary-Color-Background);
}
.filter__form-slider::before {
  left: var(--min-value);
}
.filter__form-slider::after {
  left: var(--max-value);
}
.filter__form-group {
  padding-top: 20px;
}
.filter__form-group--inline {
  display: flex;
  gap: 30px;
}
@media (max-width: 576px) {
  .filter__form-group--inline {
    justify-content: space-between;
    gap: 10px;
  }
}
.filter__form-input {
  border: solid 1px #fff;
  border-radius: 6px;
  background-color: transparent;
  padding: 12px;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  width: 121px;
}
@media (max-width: 576px) {
  .filter__form-input {
    width: 100%;
    font-size: 1.6rem;
  }
}
.filter__form-selector-wrap {
  display: flex;
  border: solid 1px #fff;
  padding: 10px 15px;
  border-radius: 6px;
}
@media (max-width: 576px) {
  .filter__form-selector-wrap {
    justify-content: space-evenly;
    flex-grow: 1;
  }
}
.filter__form-selector {
  display: flex;
  align-items: center;
  border-right: solid 1px #fff;
  padding-right: 14px;
  gap: 65px;
}
@media (max-width: 576px) {
  .filter__form-selector {
    gap: 0px;
    flex-grow: 1;
    justify-content: space-between;
  }
}
.filter__form-selector + .filter__form-selector {
  border-right: 0;
  padding-left: 14px;
  padding-right: 0;
  gap: 17px;
}
@media (max-width: 576px) {
  .filter__form-selector + .filter__form-selector {
    justify-content: space-between;
    gap: 0;
  }
}
.filter__form-tags {
  display: flex;
  gap: 20px;
}
@media (max-width: 576px) {
  .filter__form-tags {
    justify-content: space-evenly;
    gap: 0;
  }
}
.filter__form-tag {
  padding: 6px 12px;
  background-color: var(--color-tag);
  border-radius: 6px;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  transition: opacity 0.2;
}
.filter__form-tag:hover {
  opacity: 0.4;
}
.filter__form-input-text {
  display: flex;
  align-items: center;
  border: solid 1px var(--color-border);
  padding-right: 10px;
}
.filter__form-input--mod {
  border: none;
  width: 100%;
}

.form:has(:invalid) .form__submit-btn {
  opacity: 0.5;
  pointer-events: none;
}
.form__group-footer {
  box-shadow: 0 10px 15px rgba(22, 22, 22, 0.9);
  border: 1px solid #4CAF50;
  border-radius: 10px;
  background-color: var(--white);
  padding-top: 5px;
  padding-bottom: 5px;
}
@media (max-width: 768px) {
  .form__group-footer {
    width: 100%;
  }
}
.form__group {
  margin-top: 30px;
}
.form__group-tel {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.form__text-input {
  border-radius: 5px;
  border: 1px solid #d4d4d4;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form__input {
  flex-grow: 1;
  margin-right: 10px;
  height: 40px;
  color: var(--Secondary-Color-Secondary-1, #D2D1D6);
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.44; /* 144.444% */
  background: transparent;
}
.form__input::placeholder {
  color: #D2D1D6;
  font-weight: 400;
}
.form__input-icon {
  margin-right: 10px;
}
.form__group-inline {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.form__check-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
}
.form__check-box::after, .form__check-box::before {
  content: "";
  position: absolute;
}
.form__check-box::before {
  border-radius: 5px;
  border: solid 2px var(--Secondary-Color-Secondary-3);
  width: 19px;
  height: 19px;
  left: 0;
}
.form__check-box:has(:checked)::before {
  background-color: #ff0000;
  border-color: #ff0000;
}
.form__check-box:has(:checked)::after {
  width: 15px;
  height: 5px;
  border: solid 2px;
  border-color: transparent transparent #fff #fff;
  rotate: -45deg;
  left: 0;
  top: 6px;
  left: 1px;
}
.form__checkbox-input {
  display: none;
}
.form__checkbox-label {
  color: var(--Secondary-Color-Secondary-2, #9E9DA8);
  /* Medium 15 */
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.46; /* 146.667% */
  margin-left: 30px;
}
.form__group-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form__error {
  text-align: start;
  color: #ff0000;
  font-size: 1.4rem;
  font-weight: 500;
  position: absolute;
  transform: translateY(6px);
  z-index: 2;
}
.form__error-tel {
  position: absolute;
  transform: translateY(32px);
  z-index: 2;
}
.form__input-icon-error {
  display: none;
  margin-left: 12px;
  margin-right: 10px;
  animation: horizontal-shaking 0.3s;
}
.form .form-control:hover {
  border-color: #1dbfaf;
}
.form .form__group.invalid .form-control {
  border-color: #f33a58;
}
.form .form__group.invalid .form__error {
  color: #f33a58;
}
.form .form__group.invalid .form__text-input {
  border-color: #ff0000;
  background-color: rgba(255, 0, 0, 0.1);
}
.form .form__group.invalid .form__input-icon-error {
  display: block;
}
.form .form__group.invalid .form__input-icon {
  display: none;
}

.otp-input {
  border: solid 1px black !important;
}

input[type=checkbox] {
  position: relative;
  width: 20px;
  height: 20px;
  background-color: #cfcfcf;
  border-radius: 0.25rem;
  appearance: none;
  cursor: pointer;
}

input[type=checkbox]:checked {
  background-color: limegreen;
}

input[type=checkbox]:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  width: 10px;
  height: 16px;
  border: 4px solid transparent;
  border-left: none;
  border-top: none;
  transform: rotate(45deg) Scale(1);
}

input[type=checkbox]:checked:before {
  border-color: #fff;
  animation: checkAnim 0.2s ease;
}

@keyframes checkAnim {
  from {
    transform: rotate(45deg) scale(0);
  }
}
input:disabled {
  color: #666;
}

input:not(:disabled) {
  color: black;
}

.message {
  width: 100%;
  padding: 16px;
  text-align: start;
  border-radius: 10px;
}
.message__error {
  border: 1px solid #5bc45f;
  background: rgba(39, 243, 117, 0.2);
}

.custom-select {
  position: relative;
  font-family: Arial;
}

.custom-select:hover {
  background-color: #8c8c8c;
}

.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  background-color: #FFF;
  height: 44px;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 19px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: black transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent black transparent;
  top: 11px;
}

/*style the items (options), including the selected item:*/
.select-items div, .select-selected {
  color: black;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: #FFF;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  height: 300%;
  overflow-y: auto;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

.hide-form {
  display: none;
}

/* ===== FAQ Section Styling ===== */
.faq {
  padding: 80px 0;
  background-color: #f9fbfd;
  position: relative;
}

.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/img/pattern-dots.png");
  opacity: 0.05;
  pointer-events: none;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a2b49;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #2ecc71, #2980b9);
  border-radius: 3px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 40px;
}

.faq__list {
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.faq__item {
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__item:hover {
  background-color: #f8f9fa;
}

.faq__item-question {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq__item-question:hover {
  background-color: rgba(0, 86, 179, 0.03);
}

.faq__item-question-text {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 600;
  color: #1a2b49;
  flex: 1;
  position: relative;
  padding-left: 15px;
}

.faq__item-question-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: linear-gradient(135deg, #2ecc71, #2980b9);
  border-radius: 4px;
}

.faq__item-question i {
  color: #0056b3;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq__item.active .faq__item-question i {
  transform: rotate(45deg);
}

.faq__item-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__item.active .faq__item-answer {
  max-height: 1000px;
}

.faq__item-answer-text {
  padding: 0 30px 25px 45px;
  color: #636973;
}

/* Styling cho header của câu trả lời */
.faq__item-answer-text--desc.faq-title {
  font-weight: 700 !important;
  margin-bottom: 20px !important;
  color: #0056b3 !important;
  font-size: 1.1rem !important;
  border-left: 3px solid #0056b3;
  padding-left: 15px;
  line-height: 1.4;
}

/* Styling cho danh sách bullet points */
.faq__item-answer-text--desc {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
}

.faq__item-answer-text--desc li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  line-height: 1.6;
  color: #4a5568;
  transition: transform 0.3s ease;
}

.faq__item-answer-text--desc li:hover {
  transform: translateX(5px);
}

/* Styling cho bullet point */
.faq__item-answer-text--desc li span {
  position: absolute;
  left: 0;
  top: 2px;
  font-weight: bold;
  font-size: 1.2em;
  color: #0056b3;
  background: linear-gradient(135deg, #2ecc71, #2980b9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hiệu ứng khi hover trên câu hỏi */
.faq__item-question:hover .faq__item-question-text {
  color: #0056b3;
}

/* Animation cho FAQ items */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.faq__item {
  animation: fadeIn 0.5s ease forwards;
  opacity: 0;
}

.faq__item:nth-child(1) {
  animation-delay: 0.1s;
}

.faq__item:nth-child(2) {
  animation-delay: 0.2s;
}

.faq__item:nth-child(3) {
  animation-delay: 0.3s;
}

.faq__item:nth-child(4) {
  animation-delay: 0.4s;
}

.faq__item:nth-child(5) {
  animation-delay: 0.5s;
}

.faq__item:nth-child(6) {
  animation-delay: 0.6s;
}

/* Media queries cho responsive */
@media (max-width: 768px) {
  .section-heading {
    font-size: 2rem;
  }
  .faq__item-question {
    padding: 15px 20px;
  }
  .faq__item-answer-text {
    padding: 0 20px 20px 35px;
  }
  .faq__item-question-text {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
@media (max-width: 480px) {
  .section-heading {
    font-size: 1.8rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }
  .faq__item-answer-text--desc li {
    padding-left: 25px;
  }
  .faq__item-question-text {
    padding-left: 12px;
  }
}
.aside {
  width: 270px;
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 102%;
  padding: 30px;
  border-right: 1px solid var(--bg-black-50);
  transition: all 0.3 ease;
}
.aside__nav--extra {
  width: 100%;
  position: absolute;
  top: 20px;
}
.aside__nav-child {
  margin-top: 10px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.aside__extra {
  padding: 30px 0;
  overflow-y: scroll;
  border: 1px solid #Dadada;
}
.aside .aside__search {
  width: 100%;
  background: linear-gradient(135deg, #2ecc71, #2980b9);
  padding: 15px;
  position: absolute;
  top: 0;
  color: var(--white);
  text-shadow: 1px 0 0 var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.aside .aside__search i {
  margin-right: 10px;
}
.aside__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.aside-general {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 0;
}
.aside-profile-user {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(180deg, rgba(26, 22, 46, 0) 0%, #1A162E 100%), url(/img/backgrond-avatar.jpg) no-repeat center/cover;
  width: 100%;
  padding: 40px 20px 20px;
  box-shadow: 0px 20px 60px 10px rgba(237, 237, 246, 0.2);
}
.aside-profile-user__avatar {
  width: 121px;
  height: 121px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0px 4px 14px 2px rgba(0, 0, 0, 0.08);
  border: 5px solid rgba(255, 255, 255, 0.2);
  background: #ccc, content-box;
}
.aside-profile-user__name {
  margin-top: 15px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 144.444%;
  color: var(--white) !important;
}
.aside-profile-user__desc {
  margin-top: 2px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.2rem;
  color: var(--white);
}
.aside-detail {
  align-items: start;
  top: 0;
}
@media (max-width: 1200px) {
  .aside {
    left: -270px;
  }
  .aside.open {
    left: 0;
  }
}
.aside__logo {
  position: absolute;
  top: 50px;
  font-size: 30px;
  text-transform: capitalize;
}
.aside__logo-link {
  color: var(--text-black-900);
  font-weight: 700;
  padding: 15px 20px;
  font-size: 30px;
  letter-spacing: 5px;
  position: relative;
}
.aside__logo-link span {
  font-family: "Clicker Script", cursive;
  font-size: 4rem;
}
.aside__logo-link::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-bottom: 5px solid var(--skin-color);
  border-left: 5px solid var(--skin-color);
  bottom: 20px;
  left: 10px;
}
.aside__logo-link::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-top: 5px solid var(--skin-color);
  border-right: 5px solid var(--skin-color);
  top: 0;
  right: -239px;
}
.aside__nav-toggle {
  height: 40px;
  width: 45px;
  border: 1px solid var(--bg-black-50);
  cursor: pointer;
  position: fixed;
  left: 280px;
  top: 131px;
  border-radius: 5px;
  background: var(--bg-black-100);
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
@media (max-width: 1200px) {
  .aside__nav-toggle {
    display: flex;
    left: 30px;
    top: 13px;
  }
  .aside__nav-toggle.open {
    left: 280px;
  }
}
.aside__nav-toggle.open span {
  background-color: transparent;
}
.aside__nav-toggle.open span::before {
  content: "";
  transform: rotate(45deg);
  top: 0;
}
.aside__nav-toggle span {
  height: 2px;
  width: 18px;
  background: var(--skin-color);
  display: inline-block;
  position: relative;
}
.aside__nav-toggle span::before {
  content: "";
  height: 2px;
  width: 18px;
  background: var(--skin-color);
  position: absolute;
  top: -6px;
  left: 0;
}
.aside__nav-toggle span::after {
  content: "";
  height: 2px;
  width: 18px;
  background: var(--skin-color);
  position: absolute;
  bottom: -6px;
  left: 0;
}
.aside__nav-toggle.open span::after {
  content: "";
  transform: rotate(-45deg);
  top: 0;
}
.aside__nav {
  margin-top: 20px;
  background-color: white;
}
.aside__item {
  margin-bottom: 20px;
  display: block;
}
.aside__item a {
  font-size: 1.6rem;
  text-shadow: 1px 0 0 var(--bg-black-50);
  display: block;
  border-bottom: 1px solid var(--bg-black-50);
  color: var(--text-black-900);
  padding: 5px 15px;
  white-space: nowrap;
}
.aside__item a i {
  margin-right: 9px;
  font-size: 15px;
}
.aside__item a i:first-child {
  margin-right: 7px;
}
.aside__item a i:last-child {
  margin-right: 7px;
}
.aside__item:first-child {
  margin-bottom: 20px;
  display: block;
}
.aside__item:first-child a {
  font-size: 1.6rem;
  text-shadow: 1px 0 0 var(--bg-black-50);
  display: block;
  border-bottom: 1px solid var(--bg-black-50);
  color: var(--text-black-900);
  padding: 5px 15px;
  white-space: nowrap;
}
.aside__item:first-child a i {
  margin-right: 3px;
  font-size: 15px;
}
.aside__item:last-child {
  margin-bottom: 20px;
  display: block;
}
.aside__item:last-child a {
  font-size: 1.6rem;
  text-shadow: 1px 0 0 var(--bg-black-50);
  display: block;
  border-bottom: 1px solid var(--bg-black-50);
  color: var(--text-black-900);
  padding: 5px 15px;
  white-space: nowrap;
}
.aside__item:last-child a i {
  margin-right: 3px;
  font-size: 15px;
}

.hidden-detail {
  display: none !important;
}

.home-btn {
  font-size: 1.6rem;
  font-weight: 500;
  padding: 12px 35px;
  color: white;
  border-radius: 40px;
  border: none;
  display: inline-block;
  white-space: nowrap;
  background: var(--skin-color);
  transition: all 0.3s ease;
}

.home-btn:hover {
  transform: scale(1.05);
}

.section-account {
  background: var(--bg-black-900);
  min-height: 100vh;
  display: block;
  position: fixed;
  left: 270px;
  bottom: 0;
  z-index: 0;
  top: 111px;
  right: 0;
  opacity: 1;
  padding: 0 30px;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.3s ease;
}
.section-account .home__container-2 {
  min-height: 100vh;
}

.section {
  background: var(--bg-black-900);
  min-height: 100vh;
  display: block;
  position: fixed;
  left: 270px;
  bottom: 0;
  z-index: 0;
  top: 0;
  right: 0;
  opacity: 1;
  padding: 0 30px;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.3s ease;
  background-color: white;
}
.section .home__container-2 {
  min-height: 100vh;
}
@media (max-width: 1200px) {
  .section {
    left: 0;
  }
  .section.open {
    left: 270px;
  }
  .section .home__container-2 {
    padding-top: 70px;
  }
}
.section.back-section {
  z-index: 1;
}
.section.home-active {
  z-index: 2;
  opacity: 1;
  animation: slideSection 1s ease;
}
@keyframes slideSection {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translate(0%);
  }
}
.section-title {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 60px;
}
.section-title h2 {
  font-size: 2.5rem;
  color: var(--text-black-900);
  font-weight: 700;
  position: relative;
}
.section-title h2::before {
  content: "";
  height: 4px;
  width: 50px;
  background-color: var(--skin-color);
  position: absolute;
  top: 100%;
  left: 0;
}
.section-title h2::after {
  content: "";
  height: 4px;
  width: 25px;
  background-color: var(--skin-color);
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
}

.padd-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.home {
  min-height: 100vh;
  display: flex;
  color: var(--text-black-900);
}
.home__container-2 {
  max-width: 1100px;
  width: 100%;
  margin: auto;
}
.section .home__container-2 {
  padding-top: 84px;
  padding-bottom: 70px;
}
.home__row-2 {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
}
.home__infor {
  flex: 0 0 60%;
  max-width: 60%;
}
.home__infor .home__infor-desc {
  margin-bottom: 20px;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--text-black-700);
}
@media (max-width: 992px) {
  .home__infor {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.home__img, .home__img-detail {
  flex: 0 0 40%;
  max-width: 40%;
  text-align: center;
  position: relative;
}
@media (max-width: 992px) {
  .home__img, .home__img-detail {
    display: none;
  }
}
.home__img::after {
  content: "";
  position: absolute;
  height: 80px;
  width: 80px;
  border-bottom: 10px solid var(--skin-color);
  border-right: 10px solid var(--skin-color);
  right: 10px;
  bottom: -40px;
}
@media (max-width: 1200px) {
  .home__img::after {
    right: -10px;
  }
}
.home__img-detail::after {
  content: "";
  position: absolute;
  height: 80px;
  width: 80px;
  border-bottom: 10px solid var(--skin-color);
  border-right: 10px solid var(--skin-color);
  right: 10px;
  bottom: 61px;
}
@media (max-width: 1200px) {
  .home__img-detail::after {
    right: -10px;
  }
}
.home__img::before, .home__img-detail::before {
  content: "";
  position: absolute;
  height: 80px;
  width: 80px;
  border-top: 10px solid var(--skin-color);
  border-left: 10px solid var(--skin-color);
  left: 10px;
  top: -40px;
}
@media (max-width: 1200px) {
  .home__img::before, .home__img-detail::before {
    left: -10px;
  }
}
.home__img img {
  margin: auto;
  border-radius: 5px;
  height: 400px;
  width: 300px;
  object-fit: cover;
}
.home__img-detail img {
  margin: auto;
  border-radius: 5px;
  height: 400px;
  width: 300px;
  object-fit: cover;
}
.home__hello {
  font-size: 2rem;
  margin: 15px 0;
  font-weight: 700;
  color: var(--text-black-900);
}
.home__hello-name {
  font-family: "Clicker Script", cursive;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--skin-color);
}
.home__my-profession {
  font-size: 2rem;
  margin: 15px 0;
  font-weight: 700;
  color: var(--text-black-900);
}
.home__my-profession-typing {
  color: var(--skin-color);
}

.about-detail__content {
  flex: 0 0 100%;
  max-width: 100%;
}
.about-detail__text {
  flex: 0 0 100%;
  max-width: 100%;
}
.about-detail__tab-ui {
  margin-top: 25px;
  flex: 0 0 100%;
  max-width: 100%;
}
.about-detail__tab-ui.about__tab-ui-detail {
  display: inline-flex;
  align-items: start;
  flex-direction: column;
}
.about-detail__text h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--text-black-900);
}
.about-detail__text h3 span {
  color: var(--skin-color);
}
@media (max-width: 1200px) {
  .about-detail__text h3 span {
    display: block;
    margin-left: 0;
  }
}
.about-detail__text p {
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--text-black-700);
}
.about-detail__personal-infor {
  flex: 0 0 100%;
  max-width: 100%;
  margin-top: 40px;
}
.about-detail__personal-infor .button {
  margin-top: 30px;
}
.about-detail__personal-infor .button .home-btn {
  margin-right: 15px;
  margin-top: 10px;
}
@media (max-width: 1200px) {
  .about-detail__personal-infor {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .about-detail__personal-infor {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.about-detail__skills {
  flex: 0 0 40%;
  max-width: 40%;
  margin-top: 40px;
}
.about-detail__infor-item {
  flex: 0 0 50%;
  max-width: 50%;
}
.about-detail__infor-item p {
  font-weight: 600;
  padding: 10px 0;
  font-size: 1.6rem;
  color: var(--text-black-900);
  border-bottom: 1px solid var(--bg-black-50);
  white-space: nowrap;
}
.about-detail__infor-item p span {
  font-weight: 400;
  color: var(--text-black-700);
  margin-left: 4px;
  display: inline-block;
}

/* Tabs Container Styles */
.helper-details__tabs {
  margin-top: 30px;
  margin-bottom: 60px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.tabs-container {
  padding: 0;
}

/* Tabs Header */
.tabs-header {
  display: flex;
  position: relative;
  background: linear-gradient(to right, #f8f9fa, #fff);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0;
}

.tab-item {
  min-width: 120px;
  padding: 18px 24px;
  font-size: 15px;
  text-align: center;
  color: #555;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.tab-icon {
  margin-right: 10px;
  font-size: 18px;
  color: #2ecc71;
}

.tab-item.active {
  color: #2ecc71;
  font-weight: 600;
}

.indicator {
  position: absolute;
  height: 3px;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, #2ecc71, #2980b9);
  border-radius: 3px 3px 0 0;
  transition: all 0.3s;
}

/* Tab Content */
.tabs-content {
  background: #fff;
  padding: 30px;
}

.tab-pane {
  display: none;
  animation: fadeEffect 0.6s ease;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeEffect {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tab-title {
  font-size: 20px;
  color: #333;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.tab-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #2ecc71, #2980b9);
  border-radius: 3px;
}

/* Reviews Tab */
.reviews-container {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.review-card {
  background: #f8f9fc;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s;
  border-left: 3px solid #2ecc71;
  position: relative;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.review-date {
  display: flex;
  align-items: center;
  color: #666;
  font-size: 14px;
}

.review-date i {
  margin-right: 6px;
  color: #2ecc71;
}

.stars-container {
  display: flex;
  gap: 3px;
}

.stars-container i {
  color: #ffb800;
}

.review-content {
  color: #444;
  line-height: 1.6;
}

.review-service {
  margin-top: 15px;
}

.service-badge {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(74, 108, 247, 0.1);
  color: #2ecc71;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.no-reviews {
  text-align: center;
  padding: 40px 0;
  color: #777;
}

.no-reviews i {
  font-size: 48px;
  color: #ccc;
  margin-bottom: 15px;
}

/* Experience Tab */
.experience-section {
  display: grid;
  gap: 30px;
}

.districts-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.district-card,
.service-card {
  background: #f8f9fc;
  border-radius: 10px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}

.district-card:hover,
.service-card:hover {
  background: #eef1ff;
  transform: translateY(-2px);
}

.district-card i,
.service-card i {
  margin-right: 10px;
  color: #2ecc71;
}

.section-subtitle {
  font-size: 17px;
  margin-bottom: 15px;
  color: #333;
  display: flex;
  align-items: center;
}

.section-subtitle i {
  margin-right: 10px;
  color: #2ecc71;
  width: 24px;
  text-align: center;
}

.year-badge {
  background: linear-gradient(135deg, #2ecc71, #2980b9);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: 20px;
  box-shadow: 0 10px 20px rgba(74, 108, 247, 0.2);
}

.year-badge span {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.year-badge p {
  font-size: 14px;
  margin-top: 5px;
  opacity: 0.9;
}

/* Details Tab */
.details-container {
  display: grid;
  gap: 30px;
}

.education-level {
  background: #f8f9fc;
  border-radius: 10px;
  padding: 15px 20px;
  margin-top: 15px;
}

.skills-grid {
  display: grid;
  gap: 15px;
  margin-top: 20px;
}

.skill-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skill-name {
  font-weight: 500;
  color: #444;
}

.skill-bar {
  height: 8px;
  background: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  background: linear-gradient(135deg, #2ecc71, #2980b9);
  border-radius: 4px;
}

.language-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fc;
  border-radius: 10px;
  padding: 12px 20px;
  margin-top: 15px;
}

.language-level {
  background: rgba(74, 108, 247, 0.1);
  color: #2ecc71;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
}

.no-data {
  color: #777;
  margin-top: 10px;
}

/* Certificate Tab */
.certificate-container {
  margin-top: 20px;
}

.certificate-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.certificate-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  aspect-ratio: 3/4;
}

.certificate-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.certificate-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: all 0.3s;
}

.certificate-item:hover .certificate-overlay {
  opacity: 1;
}

.certificate-item:hover .certificate-img {
  transform: scale(1.05);
}

.view-full {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.view-full i {
  font-size: 16px;
}

.no-certificates {
  text-align: center;
  padding: 40px 0;
  color: #777;
}

.no-certificates i {
  font-size: 48px;
  color: #ccc;
  margin-bottom: 15px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .tabs-header {
    flex-wrap: wrap;
  }
  .tab-item {
    padding: 15px 10px;
    font-size: 13px;
  }
  .tab-icon {
    margin-right: 5px;
  }
  .tabs-content {
    padding: 20px;
  }
  .districts-grid,
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
  .certificate-gallery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
/* Animation Keyframes */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.year-badge:hover {
  animation: pulse 1.5s infinite;
}

.book-item__form-tel {
  flex: 0 0 50%;
  max-width: 50%;
}
.book-item__form-otp {
  flex: 0 0 50%;
  max-width: 50%;
}
.book-item__form-main {
  flex: 0 0 100%;
  max-width: 100%;
}
.book-item__form-name {
  flex: 0 0 50%;
  max-width: 50%;
}
.book-item__form-address {
  flex: 0 0 50%;
  max-width: 50%;
}
.book-item__form-city {
  flex: 0 0 50%;
  max-width: 50%;
}
.book-item__form-district {
  flex: 0 0 50%;
  max-width: 50%;
}
.book-item__form-data {
  flex: 0 0 40%;
  max-width: 40%;
}
.book-item__form-time {
  padding-left: 40px;
  flex: 0 0 60%;
  max-width: 60%;
}
.book-item__form-time-start {
  flex: 0 0 50%;
  max-width: 50%;
}
.book-item__form-time-end {
  padding-left: 18px;
  flex: 0 0 50%;
  max-width: 50%;
}
.book-item__form-service {
  flex: 0 0 60%;
  max-width: 60%;
}
.book-item__form-service-checkbox {
  flex: 0 0 100%;
  max-width: 100%;
}
.book-item__flex-50 {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.book-item__flex-50-text {
  font-size: 1.6rem;
  font-weight: 600;
}
.book-item__flex-30 {
  flex: 0 0 30%;
  max-width: 30%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.book-item__flex-30-text {
  font-size: 1.6rem;
  font-weight: 600;
}
.book-item__form-basic {
  flex: 0 0 50%;
  max-width: 50%;
}
.book-item__form-out {
  flex: 0 0 50%;
  max-width: 50%;
}
.book-item__form-extra {
  flex: 0 0 50%;
  max-width: 50%;
}
.book-item__form-total {
  padding-left: 10px;
  flex: 0 0 50%;
  max-width: 50%;
}

.book-helper__cancel {
  background-color: #fb2b36;
  width: 190px;
}

@media (max-width: 992px) {
  .extra-flex {
    display: flex;
  }
}
@media (max-width: 768px) {
  .extra-flex {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 992px) {
  .extra-flex-direction {
    display: flex;
    flex-direction: column;
  }
}

.container-input-form {
  width: 100%;
  max-width: 480px;
  padding: 20px;
}

#userForm-input-form {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.title-input-form {
  color: #333;
  margin-bottom: 25px;
  text-align: center;
}

.form-group-input-form {
  margin-bottom: 20px;
}

.label-input-form {
  display: block;
  margin-bottom: 8px;
  color: #555;
  font-size: 0.9rem;
}

.input-form-accountdetail {
  width: 100%;
  padding: 12px;
  border: 2px solid #e1e1e1;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.input-form-accountdetail:focus {
  outline: none;
  border-color: #4CAF50;
}

.input-form-accountdetail:disabled {
  background-color: #f9f9f9;
  cursor: not-allowed;
}

.button-group {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.btn-homedetail {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-homedetail:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.edit {
  background-color: #fb2b36;
  color: white;
}

.edit:hover {
  background-color: #1976D2;
}

.save {
  background-color: #4CAF50;
  color: white;
}

.save:hover {
  background-color: #388E3C;
}

@media (max-width: 480px) {
  .container-input-form {
    padding: 15px;
  }
  #userForm-input-form {
    padding: 20px;
  }
  .button-group {
    flex-direction: column;
  }
}
.container-homedetail {
  max-width: 1200px;
  margin: 0 auto;
}

.table-section-homedetail {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  padding: 20px;
}

.title-homedetail {
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
}

.table-container-homedetail {
  overflow-x: auto;
}

.modern-table-homedetail {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.modern-table-homedetail th,
.modern-table-homedetail td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.modern-table-homedetail th {
  background: #f8f9fa;
  font-weight: 600;
  color: #333;
}

.modern-table-homedetail tbody tr:hover {
  background-color: #f8f9fa;
}

.status-select-homedetail {
  width: 100%;
  padding: 8px;
  border: 2px solid #e1e1e1;
  border-radius: 6px;
  font-size: 0.9rem;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.status-select-homedetail option[value=completed] {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.status-select-homedetail option[value=in-progress] {
  background-color: #fff3e0;
  color: #ef6c00;
}

.status-select-homedetail option[value=cancelled] {
  background-color: #ffebee;
  color: #c62828;
}

/* Status colors */
.status-select-homedetail.completed-homedetail {
  border-color: #4CAF50;
  background-color: #e8f5e9;
  color: #2e7d32;
}

.status-select-homedetail.in-progress-homedetail {
  border-color: #FF9800;
  background-color: #fff3e0;
  color: #ef6c00;
}

.status-select-homedetail.cancelled-homedetail {
  border-color: #f44336;
  background-color: #ffebee;
  color: #c62828;
}

/* Responsive design */
@media (max-width: 768px) {
  .table-section-homedetail {
    padding: 15px;
    margin-bottom: 20px;
  }
  .modern-table-homedetail th,
  .modern-table-homedetail td {
    padding: 10px;
    font-size: 0.9rem;
  }
  .status-select-homedetail {
    padding: 6px;
    font-size: 0.8rem;
  }
}
@media (max-width: 480px) {
  .modern-table-homedetail {
    font-size: 0.8rem;
  }
  .modern-table-homedetail th,
  .modern-table-homedetail td {
    padding: 8px;
  }
  .title-homedetail {
    font-size: 1.2rem;
  }
}
.container-homecare {
  min-width: 100%;
}

.time-picker-wrapper-homecare {
  display: flex;
}

.time-picker-homecare {
  flex: 1;
}
@media (max-width: 992px) {
  .time-picker-homecare {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.time-label-homecare {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-color);
}

.time-input-homecare {
  position: relative;
  width: 100%;
  border: 0.1px solid #d4d4d4;
}

.selected-time-homecare {
  display: block;
  width: 100%;
  padding: 14px 4px;
  background-color: var(--background-color);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.selected-time-homecare:hover {
  border-color: var(--primary-color);
}

.dropdown-homecare {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-top: 4px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 1000;
}

.time-input-homecare.active-extra .dropdown-homecare {
  display: block;
}

.time-list-homecare {
  max-height: 250px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--background-color);
  scroll-behavior: smooth;
  background: white;
}

.time-list-homecare::-webkit-scrollbar {
  width: 6px;
}

.time-list-homecare::-webkit-scrollbar-track {
  background: var(--background-color);
}

.time-list-homecare::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 3px;
}

.time-option-homecare {
  padding: 10px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.time-option-homecare:hover {
  background-color: var(--hover-color);
}

.time-option-homecare.selected {
  background-color: var(--primary-color);
  color: white;
}

/* Animation for dropdown */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.time-input-homecare.active-extra .dropdown-homecare {
  animation: fadeIn 0.2s ease-out;
}

.container-homecare-long {
  min-width: 100%;
}

.time-picker-wrapper-homecare-long {
  display: flex;
}

.time-picker-homecare-long {
  flex: 1;
}
@media (max-width: 992px) {
  .time-picker-homecare-long {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.time-label-homecare-long {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-color);
}

.time-input-homecare-long {
  position: relative;
  width: 100%;
  border: 1px solid #d4d4d4;
}

.selected-time-homecare-long {
  display: block;
  width: 100%;
  padding: 13px 4px;
  background-color: var(--background-color);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.selected-time-homecare-long:hover {
  border-color: var(--primary-color);
}

.dropdown-homecare-long {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-top: 4px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 1000;
}

.time-input-homecare-long.active-extra-long .dropdown-homecare-long {
  display: block;
}

.time-list-homecare-long {
  max-height: 250px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--background-color);
  scroll-behavior: smooth;
  background-color: white;
}

.time-list-homecare-long::-webkit-scrollbar {
  width: 6px;
}

.time-list-homecare-long::-webkit-scrollbar-track {
  background: var(--background-color);
}

.time-list-homecare-long::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 3px;
}

.time-option-homecare-long {
  padding: 10px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.time-option-homecare-long:hover {
  background-color: var(--hover-color);
}

.time-option-homecare-long.selected {
  background-color: var(--primary-color);
  color: white;
}

/* Animation for dropdown */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.time-input-homecare-long.active-extra-long .dropdown-homecare-long {
  animation: fadeIn 0.2s ease-out;
}

/* General Styles */
.body-homecare {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f5f5f5;
}

/* Unpaid Bills List Styles */
.unpaid-bills-container-history-homecare {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.unpaid-bills-title-history-homecare {
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
}

.bills-list-history-homecare {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bill-item-history-homecare {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.bill-item-history-homecare:hover {
  background-color: #e9ecef;
}

.bill-info-history-homecare {
  flex: 1;
}

.customer-name-history-homecare {
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 5px;
}

.bill-date-history-homecare {
  color: #6c757d;
  font-size: 0.9em;
}

/* Modal Styles */
.modal-history-homecare {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.modal-content-history-homecare {
  position: relative;
  background-color: #fff;
  margin: 50px auto;
  padding: 20px;
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.close-btn-history-homecare {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.close-btn-history-homecare:hover {
  color: #333;
}

.modal-title-history-homecare {
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
}

.bill-details-history-homecare {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.detail-row-history-homecare {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.detail-label-history-homecare {
  font-weight: bold;
  color: #495057;
}

.detail-value-history-homecare {
  color: #6c757d;
}

.status-unpaid {
  color: #dc3545;
  font-weight: bold;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal-history-homecare.show-history-homecare {
  display: block;
  animation: fadeIn 0.3s ease;
}

td img {
  width: 36px;
  height: 36px;
  margin-right: 0.5rem;
  border-radius: 50%;
  vertical-align: middle;
}

table, th, td {
  padding: 1rem;
  border-collapse: collapse;
  text-align: left;
}

.table__main {
  width: 75vw;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .table__main {
    width: 100vw;
  }
}

.table__header {
  width: 100%;
  height: 10%;
  background-color: rgba(255, 255, 255, 0.2666666667);
  padding: 0.8rem 1rem;
}

.table__body {
  width: 100%;
  background-color: #fff;
  margin: 0.8rem auto;
  overflow: auto;
}

table__body::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}

.table__body::-webkit-scrollbar-thumb {
  border-radius: 0.5rem;
  background-color: rgba(0, 0, 0, 0.2666666667);
}

thead th {
  position: sticky;
  top: 0;
  left: 0;
  background-color: rgba(213, 209, 222, 0.9960784314);
}

tbody tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.0431372549);
}

tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.status-detail {
  padding: 0.4rem 0;
  border-radius: 2rem;
  text-align: center;
}

.status-detail.done {
  background-color: #86e49d;
  color: #006b21;
}

.status-detail.cancel {
  background-color: #d893a3;
  color: #b30021;
}

.status-detail.pending {
  background-color: #ebc874;
}

@media (max-width: 992px) {
  td td:not(:first-op-type) {
    min-width: 12.1rem;
  }
}

/* } */
/* common */
/* slider-lastest */
.header__slideshow.shadow {
  transition: 0.5s;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid hsla(0, 4%, 14%, 0.1);
  border-top: 1px solid hsla(0, 4%, 14%, 0.1);
  border-radius: 0;
  border-left: none;
  border-right: none;
  box-shadow: 0 10px 15px rgba(22, 22, 22, 0.9);
  border: 1px solid #4CAF50;
  background-color: var(--white);
}

.owl-carousel {
  padding-top: 0px !important;
}

.slider-lastest__item {
  width: 100vw;
  height: 100vh;
  position: relative;
}

.slider-lastest__item::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}

.slider-lastest__item--2 {
  background-image: url(/img/pexels-falling4utah-2724748.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* owl carousel */
.owl-prev {
  position: absolute;
  left: 0;
  font-size: 8rem !important;
  top: 50%;
  transform: translateY(-50%);
  color: #fff !important;
}

.owl-next {
  position: absolute;
  right: 0;
  font-size: 8rem !important;
  top: 50%;
  transform: translateY(-50%);
  color: #fff !important;
}

.owl-prev:hover,
.owl-next:hover {
  background: none !important;
}

.owl-dots {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

.owl-dot span {
  width: 10px !important;
  height: 10px !important;
  margin: 0 !important;
  border-radius: 50%;
  background-color: transparent !important;
}

.owl-dot {
  width: 16px;
  height: 16px;
  border: 2px solid #fff !important;
  border-radius: 50%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 6px;
}

.owl-dot.active span {
  background-color: var(--skin-color, #fff) !important;
}

.wrapper {
  padding: 0 30px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

/* navbar */
.header__slideshow {
  position: fixed;
  z-index: 100;
  width: 100%;
  border: 1px solid #4CAF50;
  background-color: var(--white);
}
@media (max-width: 576px) {
  .header__slideshow {
    width: 94%;
  }
}

.header-slideshow__row {
  display: flex;
  align-items: center;
}

.header-slideshow__row {
  justify-content: space-between;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

@media (max-width: 1200px) {
  .header-menu {
    display: none;
  }
}

.header-menu > ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo__img {
  width: 160px;
  height: 80px;
}
@media (max-width: 1200px) {
  .header-logo__img {
    width: 150px;
    height: 100%;
  }
}
@media (max-width: 992px) {
  .header-logo__img {
    width: 150px;
    height: 100%;
  }
}
@media (max-width: 768px) {
  .header-logo__img {
    width: 140px;
    height: 100%;
  }
}
@media (max-width: 576px) {
  .header-logo__img {
    max-width: 100px;
    height: 100%;
  }
}

.header-menu__item {
  font-size: 1.4rem;
  padding: 0 10px;
}
@media (max-width: 1200px) {
  .header-menu__item {
    padding: 0 5px;
  }
}
@media (max-width: 992px) {
  .header-menu__item {
    font-size: 1.2rem;
  }
}

.header-menu__item a {
  color: black;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.header-menu__item:hover a {
  color: #02571c;
}

.header-menu__item:last-child a {
  color: var(--color, #fff);
  background-color: #02571c;
  padding: 10px 20px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-menu__item:nth-child(8) {
  margin-right: 20px;
}

.header-menu__item:nth-child(10) a {
  color: var(--color, #fff);
  background: linear-gradient(135deg, #2ecc71, #2980b9);
  padding: 10px 20px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-menu__item:last-child a:hover {
  background-color: #02571c;
  color: #fff;
}

@media (max-width: 1200px) {
  .hamburger-icon {
    font-size: 2rem;
  }
}

@media (max-width: 1700px) {
  .mobile-menu-btn {
    display: none;
  }
}
@media (max-width: 1200px) {
  .mobile-menu-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.padding-top__service--50px {
  padding-top: 50px;
}

.container-request {
  width: 60%;
  margin: 0 auto;
  padding: 20px;
  box-shadow: 0 10px 15px rgba(22, 22, 22, 0.9);
  border: 1px solid #4CAF50;
  border-radius: 10px;
  background-color: var(--white);
}

.section-title {
  margin-bottom: 20px;
}

.form-group__request {
  margin-bottom: 15px;
}
.form-group__request label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}
.form-group__request input[type=text],
.form-group__request input[type=tel] {
  width: 100%;
  max-width: 300px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.form-group__request .value {
  display: inline-block;
  padding: 8px 0;
}

.form-details__request {
  border-top: 1px solid #eee;
  margin-top: 20px;
  padding-top: 20px;
}

.location {
  display: flex;
  gap: 20px;
}

.form-actions {
  margin-top: 20px;
  text-align: center;
}

.submit-btn__request {
  padding: 10px 20px;
  background-color: darkcyan;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.submit-btn__request:hover {
  background-color: #006666;
}

.section-3 {
  min-height: 100vh;
  display: block;
  left: 270px;
  bottom: 0;
  z-index: 0;
  top: 0;
  right: 0;
  opacity: 1;
  padding: 0 30px;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.3s ease;
}

:root {
  --primary-blue: #2196F3;
  --primary-blue-dark: #1976D2;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-medium: #e0e0e0;
  --text-dark: #333333;
  --text-light: #666666;
  --error-red: #f44336;
  --success-green: #4CAF50;
}

.html-form-homecare {
  height: 100%;
  margin: 0;
  padding: 0;
}

.body-form-homecare {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--gray-light);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.confirmation-container-form-homecare {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  width: 90%;
  max-width: 900px;
  margin: 2rem auto;
  animation: fadeIn-form-homecare 0.5s ease-out;
}

.title-form-homecare {
  color: black;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.form-form-homecare {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.grid-form-homecare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.group-form-homecare {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.full-width-form-homecare {
  grid-column: 1/-1;
}

.label-form-homecare {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1.5rem;
}

.input-form-homecare,
.select-form-homecare {
  padding: 0.75rem;
  border: 1px solid var(--gray-medium);
  border-radius: 6px;
  font-size: 1.5rem;
  transition: border-color 0.3s ease;
}

.input-form-homecare:focus,
.select-form-homecare:focus {
  outline: none;
  border-color: #4CAF50;
  box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.1);
}

.readonly-form-homecare {
  background-color: var(--gray-light);
  color: var(--text-light);
}

.total-form-homecare {
  font-size: 1.2rem;
  font-weight: 600;
  color: #4CAF50;
}

.button-group-form-homecare {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.button-form-homecare {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cancel-form-homecare {
  background-color: var(--white);
  color: var(--text-dark);
  border: 1px solid var(--gray-medium) !important;
}

.confirm-form-homecare {
  background-color: #4CAF50;
  color: var(--white);
}

.cancel-form-homecare:hover {
  background-color: var(--gray-light);
}

.confirm-form-homecare:hover {
  background-color: #4CAF50;
}

/* Responsive Design */
@media (max-width: 900px) {
  .grid-form-homecare {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .confirmation-container-form-homecare {
    padding: 1rem;
    margin: 1rem;
  }
  .grid-form-homecare {
    grid-template-columns: 1fr;
  }
  .button-group-form-homecare {
    flex-direction: column;
  }
  .button-form-homecare {
    width: 100%;
  }
}
/* Animation */
@keyframes fadeIn-form-homecare {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.wrapper-province, .wrapper-province__long, .wrapper-district, .wrapper-service {
  margin: 15px auto 0;
  width: 30%;
}
@media (max-width: 992px) {
  .wrapper-province, .wrapper-province__long, .wrapper-district, .wrapper-service {
    width: 100%;
  }
}

.extra-wrapper {
  width: 90%;
  margin-left: 22px;
  border: 0.5px solid #d4d4d4;
  border-radius: 2px;
}

.wrapper-province.extra-wrapper.active-menu-search {
  width: 90%;
}

.wrapper-district.extra-district-short.active-menu-search {
  width: 100%;
}

.wrapper-province.active-menu-search {
  width: 30%;
}
@media (max-width: 992px) {
  .wrapper-province.active-menu-search {
    width: 100%;
  }
}

.wrapper-district.active-menu-search {
  width: 30%;
}
@media (max-width: 992px) {
  .wrapper-district.active-menu-search {
    width: 100%;
  }
}

.wrapper-province__select-btn, .wrapper-district__select-, .wrapper-service__select-btn {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.wrapper-province__select-btn, .wrapper-district__select-btn, .wrapper-service__select-btn {
  height: 33px;
  padding: 0 7px;
  font-size: 1.6rem;
  background: #fff;
  justify-content: space-between;
  border: solid 1px #d4d4d4;
}

.wrapper-province__select-btn i, .wrapper-district__select-btn i, .wrapper-service__select-btn i {
  font-size: 1.5rem;
  transition: transform 0.3s linear;
}

.wrapper-province.active-menu-search .wrapper-province__select-btn i, .wrapper-district.active-menu-search .wrapper-district__select-btn i, .wrapper-service.active-menu-search .wrapper-service__select-btn i {
  transform: rotate(-180deg);
}

.wrapper-province__long.active-menu-search .wrapper-province__select-btn i, .wrapper-district__long.active-menu-search .wrapper-district__select-btn i, .wrapper-service__long.active-menu-search .wrapper-service__select-btn i {
  transform: rotate(-180deg);
}

.wrapper-province__content, .wrapper-district__content, .wrapper-service__content {
  display: none;
  padding: 20px;
  background: #fff;
  border-radius: 7px;
}

.wrapper-province.active-menu-search .wrapper-province__content, .wrapper-district.active-menu-search .wrapper-district__content, .wrapper-service.active-menu-search .wrapper-service__content {
  display: block;
}

.wrapper-province__long.active-menu-search .wrapper-province__content, .wrapper-district__long.active-menu-search .wrapper-district__content, .wrapper-service__long.active-menu-search .wrapper-service__content {
  display: block;
}

.wrapper-province__content .wrapper-province__search, .wrapper-district__content .wrapper-district__search, .wrapper-service__content .wrapper-service__search {
  position: relative;
}

.wrapper-province__search i, .wrapper-district__search i, .wrapper-service__search i {
  top: 50%;
  left: 15px;
  color: #999;
  font-size: 20px;
  pointer-events: none;
  transform: translateY(-50%);
  position: absolute;
}

.wrapper-province__search .wrapper-province__input, .wrapper-district__search .wrapper-district__input, .wrapper-service__search .wrapper-service__input {
  height: 50px;
  width: 100%;
  outline: none;
  font-size: 17px;
  border-radius: 5px;
  padding: 0 20px 0 43px;
  border: 1px solid #B3B3B3;
}

.wrapper-province__search .wrapper-province__input:focus, .wrapper-district__search .wrapper-district__input:focus, .wrapper-service__search .wrapper-service__input:focus {
  padding-left: 42px;
  border: 2px solid #4285f4;
}

.wrapper-province__search .wrapper-province__input::placeholder, .wrapper-district__search .wrapper-district__input::placeholder, .wrapper-service__search .wrapper-service__input::placeholder {
  color: #bfbfbf;
}

.wrapper-province__content .wrapper-province__options, .wrapper-district__content .wrapper-district__options, .wrapper-service__content .wrapper-service__options {
  margin-top: 10px;
  max-height: 250px;
  overflow-y: auto;
  padding-right: 7px;
}

.wrapper-province__options::-webkit-scrollbar, .wrapper-district__options::-webkit-scrollbar, .wrapper-service__options::-webkit-scrollbar {
  width: 7px;
}

.wrapper-province__options::-webkit-scrollbar-track, .wrapper-district__options::-webkit-scrollbar-track, .wrapper-service__options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 25px;
}

.wrapper-province__options::-webkit-scrollbar-thumb, .wrapper-district__options::-webkit-scrollbar-thumb, .wrapper-service__options::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 25px;
}

.wrapper-province__options::-webkit-scrollbar-thumb:hover, .wrapper-district__options::-webkit-scrollbar-thumb:hover,
.wrapper-service__options::-webkit-scrollbar-thumb:hover {
  background: #b3b3b3;
}

.wrapper-province__options li, .wrapper-district__options li, .wrapper-service__options li {
  height: 30px;
  padding: 0 13px;
  font-size: 1.5rem;
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.wrapper-province__options li:hover, .wrapper-district__options li:hover, .wrapper-service__options li:hover, li.selected {
  border-radius: 5px;
  background: #f2f2f2;
  display: flex;
  align-items: center;
}

.extra-short {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  width: 100%;
  height: 100%;
  border: 1px solid #d4d4d4;
  border-right: none;
  border-radius: 0px;
  font-weight: 600;
}
@media (max-width: 1200px) {
  .extra-short {
    padding: 0 8px;
  }
}

.extra-border-left {
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
}
@media (max-width: 1200px) {
  .extra-border-left {
    border-bottom-left-radius: 0px;
    border-top-right-radius: 15px;
  }
}

.extra-border-right {
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
}
@media (max-width: 1200px) {
  .extra-border-right {
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
  }
}

.extra-long-border-right {
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
}
@media (max-width: 1200px) {
  .extra-long-border-right {
    border-top-right-radius: 0px;
    border-bottom-left-radius: 15px;
  }
}

@media (max-width: 1200px) {
  .extra-province, .extra-district, .extra-service {
    height: 40px;
    width: 100%;
  }
}

.form-label__start-date {
  width: 23%;
}
@media (max-width: 1200px) {
  .form-label__start-date {
    width: 100%;
    height: 100%;
    height: 40px;
  }
}

.hour_short {
  width: 50%;
  height: 100%;
}
@media (max-width: 1200px) {
  .hour_short {
    width: 100%;
  }
}

.extra-district-short {
  width: 100%;
  height: 37px;
  border: 0.5px solid #d4d4d4;
}

.container-input-time {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
}

.time-input-container {
  position: relative;
  width: 280px;
}

.time-display {
  width: 100%;
  position: relative;
}

#timeDisplay {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  background-color: #fff;
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s;
}

#timeDisplay:focus {
  border-color: #4a90e2;
}

.time-picker {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 5px;
  display: none;
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
}

.time-picker.active {
  display: block;
}

.time-list {
  padding: 8px 0;
}

.time-option {
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.time-option:hover {
  background-color: #f0f7ff;
}

.time-option.selected {
  background-color: #e3f2fd;
  color: #1976d2;
}

.time-picker::-webkit-scrollbar {
  width: 6px;
}

.time-picker::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.time-picker::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.time-picker::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

html {
  --text-color:#000;
  --icon-color: brightness(0) saturate(100%) invert(8%) sepia(16%) saturate(2698%) hue-rotate(212deg) brightness(94%) contrast(95%);
  --icon-color-footer: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(331deg) brightness(102%) contrast(101%);
  --header-br-color: #ffffff;
  --color-body:#FFFFFF;
  --Secondary-Color-Secondary-1:#1A162E;
  --Secondary-Color-Background:#fff;
  --box-shadow-avatar:0px 4px 14px 2px rgba(0, 0, 0, 0.08);
  --br-separate:#EDEDF6;
  --box-shadow-group:0px 20px 60px 10px rgba(237, 237, 246, 0.20);
  --background-dropdown: #FFF;
  --color-box-shadow:rgba(200, 200, 200, 0.40);
  --color-arrow-top:brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
  --menu-top-main-color-border-right:#D2D1D6;
  --Secondary-Color-Secondary-1:#1A162E;
  --filter-case-2: brightness(0) saturate(100%) invert(4%) sepia(62%) saturate(4840%) hue-rotate(245deg) brightness(91%) contrast(88%);
  --Blue-Blue-hover:#0071DC;
  --color-navbar-dis: #efeded;
  --br-cate-item:#eeeeee;
  --br-cate-item-picture:#fff;
  --br-filter:#eeeeee;
  --br-like:#fff;
  --br-product-card:#FFF;
  --color-box-shadow-pro-card:0px 20px 60px 10px rgba(237, 237, 246, 0.20);
  --color-slider:#D2D1D6;
  --color-tag:#171C28;
  --color-border:#171C28;
  --footer-br-color:#eeeeee;
  --Secondary-Color-Secondary-1:#1A162E;
  --Secondary-Color-Secondary-2:#9E9DA8;
  --Secondary-Color-Secondary-3: #D2D1D6;
  --Blue-Blue: #0071DC;
  --Secondary-Color-Secondary-1:#171C28;
  --Secondary-Color-Secondary-2:#171C28;
  --Secondary-Color-Secondary-3: #171C28;
  --Blue-Blue: #0071DC;
  --color-menu-top-heading:#fff;
  --br-menu-top-heading:#02571C;
  --br-row-2: rgb(140 193 61);
  --color-text-menu-top: rgb(37 110 59);
  --color-text-detail:rgb(37 110 59);
  --bg-black-900:#f2f2fc;
  --bg-black-100:#fdf9ff;
  --bg-black-50:#e8dfec;
  --text-black-900:#302e4d;
  --text-black-700:#504e70;
  --skin-color: #4CAF50;
  --container-color:#1a1e21;
  --second-color:#4CAF50;
  --bg-color:#fdf9ff;
  --primary: #eeeeee;
  --secondary:#227c70;
  --green:#82cd47;
  --secondary-light:rgb(34,124,112,0.2);
  --secondary-light-2:rgb(127,183,126,0.1);
  --white:#fff;
  --black:#393e46;
  --shadow:0px 2px 8px 0px var(var(--secondary-light));
  --skin-button:#a9f300;
}
@media (max-width: 992px) {
  html {
    --header-br-color:#ffffff;
    --color-body:#FFFFFF;
    --Secondary-Color-Background:#EEEEEE;
    --br-separate:black;
  }
}

html.dark {
  --text-color:#FFFFFF;
  --icon-color:brightness(0) saturate(100%) invert(99%) sepia(3%) saturate(98%) hue-rotate(40deg) brightness(113%) contrast(100%);
  --color-body:#2f3441;
  --header-br-color:#171C28;
  --Secondary-Color-Secondary-1:#fff;
  --Secondary-Color-Background:#292E39;
  --box-shadow-avatar:0px 4px 14px 2px rgba(0, 0, 0, 0.08);
  --br-separate:#EDEDF6;
  --box-shadow-group:0px 20px 60px 10px rgba(0, 0, 0, 0.20);
  --background-dropdown: #292E39;
  --color-box-shadow:rgba(23, 28, 40, 0.40);
  --color-arrow-top: brightness(0) saturate(100%) invert(16%) sepia(10%) saturate(1199%) hue-rotate(183deg) brightness(87%) contrast(91%);
  --menu-top-main-color-border-right:#171C28;
  --Secondary-Color-Secondary-1:#B9BABE;
  --filter-case-2:brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(1619%) hue-rotate(237deg) brightness(97%) contrast(103%);
  --Blue-Blue-hover:#0071DC;
  --color-navbar-dis:#292e39;
  --br-cate-item:#171C28;
  --br-cate-item-picture:lightgray 8.558px 7.136px / 87.535% 87.021% no-repeat;
  --br-filter:#171C28;
  --br-like:#292E39;
  --br-product-card:#171C28;
  --color-box-shadow-pro-card:0px 20px 60px 10px rgba(0, 0, 0, 0.20);
  --color-slider:#D2D1D6;
  --color-tag:#171C28;
  --color-border:#fff;
  --footer-br-color:#171C28;
  --icon-color-footer: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(331deg) brightness(102%) contrast(101%);
  --Secondary-Color-Secondary-1:#B9BABE;
  --Secondary-Color-Secondary-2:#9E9DA8;
  --Secondary-Color-Secondary-3: #D2D1D6;
  --Blue-Blue: #0071DC;
}

.top-act__btn, .top-act__group, .top-act, .navbar__link, .nav-top {
  display: flex;
  align-items: center;
}

#header {
  position: sticky;
  top: 0;
  z-index: 999;
}

#helper {
  padding: 10%;
  position: relative;
  top: 20px;
}

.header {
  background-color: #fdf9ff;
}
@media (max-width: 992px) {
  .header {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .header {
    width: 100%;
    padding: 10px;
  }
}
@media (max-width: 1200px) {
  .header {
    width: 100%;
  }
}

.nav-top {
  z-index: 10;
  position: relative;
}
@media (max-width: 576px) {
  .nav-top {
    justify-content: space-between;
  }
}
.nav-top__group {
  display: none;
}
@media (max-width: 992px) {
  .nav-top__group {
    display: block;
    margin-right: 20px;
  }
}
@media (max-width: 576px) {
  .nav-top__group {
    margin-right: 0px;
  }
}
@media (max-width: 576px) {
  .nav-top__btn .icon {
    margin-right: 10px;
  }
}

.navbar {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1200px) {
  .navbar {
    margin-left: 50px;
  }
}
.navbar__list {
  display: flex;
}
@media (max-width: 992px) {
  .navbar__list {
    display: flex;
    position: fixed;
    inset: 0 50% 0 0;
    background-color: var(--Secondary-Color-Background);
    flex-direction: column;
    z-index: 9;
    translate: -100%;
    transition: translate 0.5s;
    overflow-y: auto;
    height: 100%;
    overscroll-behavior: contain;
  }
  .navbar__list.show {
    translate: 0%;
  }
  .navbar__list.show + .navbar__overlay {
    visibility: visible;
    opacity: 1;
  }
}
.navbar__close--btn {
  display: none;
}
@media (max-width: 992px) {
  .navbar__close--btn {
    display: inherit;
    padding: 20px 40px;
    filter: var(--icon-color);
  }
}
.navbar-dis {
  display: none;
}
@media (max-width: 992px) {
  .navbar-dis {
    display: block;
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: var(--color-navbar-dis);
  }
  .navbar-dis .nav-btn {
    display: none;
  }
}
@media (max-width: 768px) {
  .navbar-dis {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: var(--color-navbar-dis);
  }
}
.navbar-dis .nav-btn {
  display: none;
}
@media (max-width: 768px) {
  .navbar-dis .nav-btn {
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    align-items: center;
  }
  .navbar-dis .nav-btn__icon {
    filter: var(--icon-color);
  }
  .navbar-dis .nav-btn__title {
    margin-left: 16px;
  }
  .navbar-dis .nav-btn__qtn {
    margin-left: auto;
  }
}
.navbar__overlay {
  visibility: hidden;
  opacity: 0;
  transition: visibility opacity;
  transition-duration: 0.5s;
}
@media (max-width: 992px) {
  .navbar__overlay {
    position: fixed;
    inset: 0;
    z-index: 8;
    background: rgba(0, 0, 0, 0.4);
  }
}
.navbar__item:hover .drop-down {
  display: block;
}
.navbar__item:first-child a {
  padding-left: 0px;
}
.navbar__item:last-child a {
  padding-right: 0px;
}
@media (max-width: 992px) {
  .navbar__item {
    padding: 0 40px;
  }
  .navbar__item:hover .drop-down {
    display: none;
  }
  .navbar__item--active .drop-down {
    display: block !important;
  }
  .navbar__item--active .navbar__arrow {
    rotate: 0deg;
  }
}
.navbar__link {
  gap: 6px;
  height: 50px;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.46; /* 146.667% */
  padding: 0 10px;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .navbar__link {
    padding: 0;
    justify-content: space-between;
  }
}
.navbar__link:hover {
  text-shadow: 1px 0 0 black;
}
.navbar__arrow {
  margin-top: 3px;
  transform: translateY(-50%);
}
@media (max-width: 992px) {
  .navbar__arrow {
    rotate: -90deg;
    transition: rotate 0.3s;
  }
}

@media (max-width: 768px) {
  .top-act__btn {
    display: none;
  }
}
.top-act__group {
  justify-content: center;
  border-radius: 8px;
  background: var(--Secondary-Color-Background, #fff);
  box-shadow: var(--box-shadow-group);
  padding: 13px;
  margin-right: 20px;
  gap: 20px;
}
@media (max-width: 768px) {
  .top-act__group {
    display: none;
    margin-right: 0px;
  }
}
@media (max-width: 576px) {
  .top-act__group {
    display: none;
    margin-right: 0px;
  }
}
.top-act__btn {
  gap: 10px;
  cursor: pointer;
}
.top-act__btn--extra {
  padding: 6px;
}
@media (max-width: 992px) {
  .top-act__group--first {
    padding: 0px;
    display: none;
  }
}
.top-act__avatar {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  box-shadow: var(--box-shadow-avatar);
  object-fit: cover;
  cursor: pointer;
}
.top-act__title {
  /* Medium 15 */
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.46; /* 146.667% */
}
.top-act__separate {
  width: 1px;
  height: 30px;
  background: var(--br-separate, #EDEDF6);
}

@media (max-width: 1700px) {
  .short-helper__btn {
    display: none;
  }
}

.modal-backdrop.show {
  display: none;
  z-index: 6;
}

.modal.show .modal-dialog {
  max-width: 1000px;
  position: relative;
  top: 10%;
}

.modal.hide .modal-dialog {
  max-width: 1000px;
  position: relative;
  top: 20%;
}

.modal-body {
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}

.header-para {
  margin-left: 10px;
}
.header-para p {
  margin-top: 15px;
  line-height: 1.4;
  text-align: justify;
  color: #02571C;
}

.header-title {
  margin-top: 15px;
  font-weight: 700;
}

.modal-header {
  background: linear-gradient(135deg, #2ecc71, #2980b9);
}

.modal-title {
  color: white;
  font-size: 2rem;
  font-weight: 500;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 0.8;
  }
  40% {
    opacity: 0.6;
  }
  60% {
    opacity: 0.4;
  }
  80% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
  }
}
.fade:not(.show) {
  overflow: hidden;
  opacity: 0;
  animation: fadeOut 0.3s ease forwards;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  font-family: Arial, sans-serif;
}

.price-table th {
  background: linear-gradient(135deg, #2ecc71, #2980b9);
  color: white;
  padding: 12px;
  text-align: left;
  border: 1px solid #ddd;
}

.price-table td {
  padding: 12px;
  border: 1px solid #ddd;
}

.price-table tr:nth-child(odd) {
  background: linear-gradient(135deg, #2ecc71, #2980b9);
}

.price-table tr:nth-child(even) {
  background-color: white;
}

.notes {
  color: #0B5722;
  margin-top: 20px;
  text-align: justify;
}

.notes h2 {
  color: #0B5722;
  margin-bottom: 15px;
}

.notes ul {
  list-style-type: none;
  padding-left: 0;
}

.notes li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

.notes li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0B5722;
}

/* === CSS nâng cao cho Modal === */
.modal-content {
  border: none;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

/* Header của modal */
.modal-header {
  background: linear-gradient(135deg, #2ecc71, #2980b9);
  padding: 20px 25px;
  border-bottom: none;
  position: relative;
}

.modal-title {
  color: white !important;
  font-size: 22px !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}

.modal-title::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 20px;
  background: white;
  margin-right: 12px;
  border-radius: 3px;
}

.modal .close {
  color: white;
  opacity: 0.8;
  text-shadow: none;
  transition: all 0.2s ease;
  position: absolute;
  top: 20px;
  right: 25px;
}

.modal .close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* Body của modal */
.modal-body {
  padding: 30px;
  max-height: 70vh;
  overflow-y: auto;
}

.modal-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: #444;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

/* Scrollbar tùy chỉnh cho modal body */
.modal-body::-webkit-scrollbar {
  width: 8px;
}

.modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Định dạng tiêu đề và nội dung chính sách */
.header-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-top: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.header-title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #2ecc71, #2980b9);
  margin-right: 10px;
  border-radius: 50%;
}

.header-para {
  padding-left: 18px;
  border-left: 2px solid #f0f0f0;
  margin-bottom: 15px;
}

.header-para p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 10px;
  text-align: justify;
}

/* Footer của modal */
.modal-footer {
  padding: 15px 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: #f8f9fa;
}

.modal-footer .btn {
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: none;
  font-size: 14px;
}

.modal-footer .btn-secondary {
  background: linear-gradient(135deg, #2ecc71, #2980b9) !important;
  border-color: #4a6cf7 !important;
}

.modal-footer .btn-secondary:hover {
  background: linear-gradient(135deg, #2ecc71, #2980b9) !important;
  box-shadow: 0 5px 15px rgba(74, 108, 247, 0.2);
  transform: translateY(-2px);
}

.modal-footer .btn-secondary:active {
  transform: translateY(0);
}

/* === CSS cho bảng giá === */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.price-table th,
.price-table td {
  padding: 15px;
  text-align: left;
  border: none;
}

.price-table th {
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.price-table tr {
  border-bottom: 1px solid #f1f1f1;
  transition: all 0.2s ease;
}

.price-table tr:nth-child(even) {
  background-color: #f8f9fc;
}

.price-table tr:hover {
  background-color: #f0f4ff;
}

.price-table td {
  color: #444;
  font-size: 14px;
}

.price-table td:nth-child(2) {
  font-weight: 600;
}

/* Phần ghi chú */
.notes {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  border-left: 4px solid #4a6cf7;
}

.notes h2 {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  padding-left: 15px;
}

.notes h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 18px;
  background: #4a6cf7;
  border-radius: 3px;
}

.notes ul {
  padding-left: 20px;
}

.notes li {
  margin-bottom: 12px;
  position: relative;
  list-style-type: none;
  padding-left: 15px;
  line-height: 1.6;
  font-size: 14px;
  color: #555;
}

.notes li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4a6cf7;
  font-weight: bold;
}

/* Hiệu ứng mở modal */
.modal.fade .modal-dialog {
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.3s ease;
}

.modal.show .modal-dialog {
  transform: scale(1);
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .modal-body {
    padding: 20px;
  }
  .modal-title {
    font-size: 18px !important;
  }
  .header-title {
    font-size: 15px;
  }
  .price-table th,
  .price-table td {
    padding: 10px;
    font-size: 12px;
  }
  .notes {
    padding: 15px;
  }
  .notes h2 {
    font-size: 16px;
  }
}
/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal-body > * {
  animation: fadeIn 0.5s ease forwards;
}

.modal-body > *:nth-child(2) {
  animation-delay: 0.1s;
}

.modal-body > *:nth-child(3) {
  animation-delay: 0.2s;
}

.modal-body > *:nth-child(4) {
  animation-delay: 0.3s;
}

.modal-body > *:nth-child(5) {
  animation-delay: 0.4s;
}

.footer {
  position: relative;
  background-image: url(/img/background__footer.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
  background: linear-gradient(135deg, #2ecc71, #2980b9);
}
.footer__heading {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}
.footer__more {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.footer__input {
  width: 100%;
  height: 40px;
  border: 1px solid #fff;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
.footer__bottom {
  position: absolute;
  padding: 50px 0;
  bottom: -70px;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, #2ecc71, #2980b9);
}
.footer__icon-tiktok, .footer__icon-facebook, .footer__icon-youtube, .footer__icon-twitter, .footer__icon-linkin {
  width: 20px;
  height: 20px;
}
.footer__list-icon {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}
.footer__item-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
.footer__item-icon:hover {
  opacity: 0.5;
}
.footer__item-icon-facebook {
  background-color: #556386;
}
.footer__item-icon-youtube {
  background-color: #9b1b1b;
}
.footer__item-icon-tiktok {
  background-color: #000000;
}
.footer__item-icon-twitter {
  background-color: #6b93ba;
}
.footer__item-icon-linkin {
  background-color: #4b6c89;
}
.footer__author {
  color: #556386;
}
.footer .icon1 {
  filter: var(--icon-color-footer);
}

@media (max-width: 992px) {
  .row-footer {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 22px;
  }
}

.btn-footer {
  width: 70%;
}

@media (max-width: 768px) {
  .flex-footer {
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .flex-footer {
    flex-direction: column;
  }
}

.home__container {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .home__container {
    margin-top: 30px;
  }
}
.home__heading {
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.41; /* 141.667% */
  padding-bottom: 20px;
}
.home__heading.fix-padding {
  padding-bottom: 0;
}
.home__cate {
  --gutter-x:51px;
}
@media (max-width: 1200px) {
  .home__cate {
    --gutter-x:20px;
  }
}
@media (max-width: 768px) {
  .home__cate {
    --gutter-y:10px;
  }
}
.home__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
}

.auth {
  display: flex;
  height: 100vh;
  min-height: -webkit-fill-available;
}
.auth__intro {
  position: relative;
  background-color: var(--header-br-color);
  flex-grow: 1;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
}
.auth__intro-img {
  max-width: 100%;
}
.auth__logo {
  white-space: nowrap;
  display: none;
}
@media (max-width: 768px) {
  .auth__logo {
    display: flex;
    white-space: nowrap;
    position: absolute;
    top: 66px;
    transform: translateX(-50%);
  }
}
.auth-btn {
  position: absolute;
  bottom: 118px;
}
.auth__content {
  padding: 0 30px;
  flex-grow: 1;
  padding-top: 20px;
}
.auth__content-inner {
  width: min(440px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}
.auth__heading {
  color: var(--Secondary-Color-Secondary-1, #1A162E);
  font-size: 3.3rem;
  font-weight: 500;
  line-height: 1.46; /* 146.667% */
}
.auth__desc {
  margin-top: 10px;
  color: var(--Secondary-Color-Secondary-2, #9E9DA8);
  text-align: center;
  /* Medium 15 */
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.46; /* 146.667% */
}
.auth__form {
  width: 100%;
}
.auth__link {
  color: var(--Blue-Blue, #0071DC);
  /* Medium 15 */
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.46; /* 146.667% */
}
.auth__text {
  padding-top: 30px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.auth__icon-the-next-page {
  display: none;
}
@media (max-width: 768px) {
  .auth__icon-the-next-page {
    display: block;
  }
}
@media (max-width: 768px) {
  .auth__logo-sign-in {
    display: none;
  }
}
.auth__message {
  margin-top: 20px;
}
.auth__intro {
  width: 50%;
}
.auth__intro-img {
  width: min(400px, 100%);
  height: 60%;
}

.header-test {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header-test.open {
  z-index: 0;
}
.header-test.open.remove {
  display: none;
}
.header-test__title, .header-test__button {
  position: relative;
}
.header-test__title {
  text-transform: uppercase;
  letter-spacing: 1pt;
  font-size: 3em;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}
.header-test button {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  bottom: 100px;
  left: calc(50% - 60px);
  width: 120px;
  height: 50px;
  border: 0;
  box-shadow: 2px 1px 20px 0 rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  cursor: pointer;
  background: #fff;
  font-size: 1em;
  color: #09203f;
  transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955), box-shadow 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  overflow: hidden;
}
.header-test button:hover {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
}
.header-test button:focus {
  outline: 0;
}
.header-test button:before, .header-test button:after {
  font-family: "Font Awesome 5 Free";
  transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  top: 17px;
  position: absolute;
}
.header-test button:before {
  content: "\f067";
  opacity: 1;
  left: 53px;
}
.header-test button:after {
  content: "\f0c9";
  opacity: 0;
  left: 0;
}
.header-test .triangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, green 0%, #fff 100%);
  transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.header-test .triangle.left {
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.header-test .triangle.right {
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.header-test.open .triangle.left {
  clip-path: polygon(0 0, 0 100%, 0 100%);
}
.header-test.open .triangle.right {
  clip-path: polygon(100% 0, 100% 0, 100% 100%);
}
.header-test.open .header-test__button {
  left: 40px;
  bottom: 40px;
  width: 50px;
  border-radius: 50%;
}
.header-test.open .header-test__button:before {
  opacity: 0;
  left: 100%;
}
.header-test.open .header-test__button:after {
  opacity: 1;
  left: 18px;
}
.header-test.open .header-test__button.menu {
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  border-radius: 0;
}
.header-test.open .header-test__button.menu:after {
  left: -100%;
}

content section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1em;
  letter-spacing: 2pt;
  color: #fff;
}

.nav-test {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.nav-test__list {
  list-style: none;
}
.nav-test__list li {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 2;
  letter-spacing: 1pt;
  font-size: 2em;
  color: #09203f;
  animation: fadeDown 0.5s forwards;
  opacity: 0;
  cursor: pointer;
  transform: translateY(-20px);
  transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.nav-test__list li:hover {
  text-shadow: 2px 1px 40px rgba(0, 0, 0, 0.5);
  opacity: 0.8;
}
.nav-test__list li:nth-child(1) {
  animation-delay: 0.8s;
}
.nav-test__list li:nth-child(2) {
  animation-delay: 0.9s;
}
.nav-test__list li:nth-child(3) {
  animation-delay: 1s;
}
.nav-test #nav-close {
  position: fixed;
  top: 40px;
  right: 40px;
  font-size: 1.5em;
  cursor: pointer;
  animation: fadeDown 0.5s forwards;
  animation-delay: 1.1s;
  opacity: 0;
  color: #09203f;
  transform: translateY(-20px);
}
@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

form#form-1 .input-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.input-field input {
  height: 50px;
  width: 50px;
  border-radius: 6px;
  font-weight: 500;
  outline: none;
  font-size: 2rem;
  text-align: center;
  border: 1px solid #ddd;
}

.input-field input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.input-field input::-webkit-inner-spin-button,
.input-field input::-webkit-outer-spin-button {
  display: none;
}

form .submit-btn.active {
  background: green;
  pointer-events: auto;
}

form .submit-btn:hover {
  opacity: 0.8;
}

section {
  padding: 3rem 0 2rem;
}

.blog__container {
  max-width: 1086px;
  margin: auto;
  width: 100%;
}

.blog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
}
.blog.shadow {
  background: var(--bg-color);
  box-shadow: 0 1px 4px hsla(0, 4%, 14%, 0.1);
  transition: 0.5s;
}
.blog.shadow .blog__logo {
  color: var(--text-color) !important;
}
.blog__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog__logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bg-color);
}
.blog__logo span {
  color: var(--second-color);
}
.blog__login {
  padding: 8px 14px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 4px;
  background: var(--second-color);
  color: var(--bg-color);
}
.blog__login:hover {
  background: hsl(199, 98%, 56%);
  transition: 0.5s;
}
.blog__home {
  display: none;
  width: 100%;
  min-height: 440px;
  background: url(/img/banner2.png);
  display: grid;
  justify-content: center;
  align-items: center;
}
.blog__home-text {
  color: var(--bg-color);
  text-align: center;
}
.blog__home-title {
  font-size: 3.5rem;
  color: #fff !important;
  font-weight: 700;
}
.blog__home-subtitle {
  font-size: 1rem;
  font-weight: 400;
}
.blog__contentBx {
  max-width: 50%;
  width: 50%;
  text-align: left;
  padding-right: 40px;
}
.blog__titleText {
  font-weight: 600;
  color: #111;
  font-size: 2rem;
  margin-bottom: 10px;
}
.blog__title-text {
  color: #111;
  font-size: 1em;
}
.blog__imgbx {
  position: relative;
  min-width: 50%;
  width: 50%;
  min-height: 500px;
}
.blog__btn2 {
  position: relative;
  display: inline-block;
  margin-top: 30px;
  padding: 10px 30px;
  background: #fff;
  border: 0.8px solid #111;
  color: #333;
  text-decoration: none;
  transition: 0.5s;
}
.blog__btn2:hover {
  background-color: var(--second-color);
  border: none;
  color: #fff;
}

.blog__about {
  padding-top: 80px;
  position: relative;
  width: 100%;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.blog__post-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.5rem;
  margin-top: 2rem !important;
}

.blog__filter-item {
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

.active-filter {
  background: var(--second-color);
  color: var(--bg-color);
  padding: 4px 10px;
  border-radius: 4px;
}

.blog__post {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, auto));
  justify-content: center;
  gap: 1.5rem;
}

.blog__post-box {
  background: var(--bg-color);
  box-shadow: 0 4px 14px hsla(35, 25%, 15%, 0.1);
  padding: 15px;
  border-radius: 0.5rem;
}

.blog__post-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 0.5rem;
}

.blog__category {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--second-color);
}

.blog__post-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-color);
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog__post-date {
  display: flex;
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 400;
  font-style: italic;
}

.blog__post-description {
  font-size: 1.5rem;
  line-height: 1.5rem;
  margin: 5px 0 10px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog__profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog__profile-img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid var(--second-color);
}

.blog__profile-name {
  font-size: 1rem;
  font-weight: 500;
}

.blog__search-bar {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  border-radius: 60px;
  padding: 0 20px;
  border: 1px solid black;
  max-width: 1000px;
  margin: 0 auto;
}
.blog__search-bar input {
  background: transparent;
  flex: 1;
  border: 0;
  outline: none;
  padding: 12px 20px;
  font-size: 20px;
  color: #cac7ff;
}

.detail-nav {
  position: sticky;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  background-color: var(--white);
  padding: 0 8%;
  z-index: 100;
}

.profile-dropdown {
  position: relative;
  width: fit-content;
  z-index: 100;
  margin-left: auto;
  top: -50px;
  right: 30px;
}
.profile-dropdown__list {
  position: absolute;
  top: 68px;
  width: 220px;
  right: 0;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s;
}
.profile-dropdown__list hr {
  border: 0.5px solid var(--green);
}
.profile-dropdown__list.active {
  max-height: 500px;
}
.profile-dropdown__item {
  padding: 0.5rem 0 0.5rem 1rem;
  transition: background-color 0.2s, padding-left 0.2s;
}
.profile-dropdown__item:hover {
  padding-left: 1.5rem;
  background-color: var(--secondary-light);
}
.profile-dropdown__item a {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
}
.profile-dropdown__item a i {
  margin-right: 1rem;
  font-size: 1.1rem;
  width: 2.3rem;
  height: 2.3rem;
  background-color: var(--secondary);
  color: var(--white);
  line-height: 2.3rem;
  text-align: center;
  border-radius: 50%;
}
.profile-dropdown__btn {
  position: fixed;
  top: 20px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--secondary);
  border-radius: 50px;
  cursor: pointer;
  width: 150px;
  transition: box-shadow 0.2s, background-color 0.2s;
}
.profile-dropdown__btn:hover {
  background-color: var(--secondary-light-2);
  box-shadow: var(--shadow);
}
.profile-dropdown__btn span {
  margin: 0 0.5rem;
  margin-right: 0;
}
.profile-dropdown__img {
  position: relative;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: url(/img/testi1.jpg);
  background-position: center;
  background-size: cover;
}
.profile-dropdown__img i {
  position: absolute;
  right: 0;
  bottom: 0.3rem;
  font-size: 1rem;
  color: var(--green);
}

.popup {
  width: 60vw;
  background: #fff;
  border-radius: 6px;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.1);
  text-align: center;
  padding: 0 30px 30px;
  color: #333;
  height: 70%;
  overflow-y: scroll;
  visibility: hidden;
  transition: transform 0.4s, top 0.4s;
}

.open-popup {
  visibility: visible;
  top: 30%;
  transform: translate(-50%, -50%) scale(1);
}

.table-container {
  width: 100%;
  overflow-x: auto;
  /* Tùy chọn: làm mịn cuộn trên các trình duyệt webkit */
  -webkit-overflow-scrolling: touch;
}

.table__main {
  min-width: 800px; /* hoặc chiều rộng tối thiểu phù hợp với nội dung bảng của bạn */
  width: 100%;
}

/* Tùy chọn: Tùy chỉnh thanh cuộn */
.table-container::-webkit-scrollbar {
  height: 8px;
}

.table-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.body-homecare {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding-top: 50px;
  background-color: #f0f2f5;
}

.profile-container-homecare {
  position: fixed;
  z-index: 99999;
  top: 10px;
  left: 82%;
  right: 2%;
  display: flex;
  justify-content: flex-end;
}

.profile-dropdown-homecare {
  position: relative;
  display: inline-block;
}

.dropdown-btn-homecare {
  background-color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.dropdown-btn-homecare:hover {
  background-color: #f8f9fa;
}

.profile-img-homecare {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-name-homecare {
  font-size: 14px;
  color: #333;
}

.dropdown-content-homecare {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-top: 10px;
  z-index: 1;
}

.dropdown-content-homecare.active-detail-homecare {
  display: block;
  animation: fadeIn-homecare 0.3s ease;
}

.dropdown-item-homecare {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
}

.dropdown-item-homecare:hover {
  background-color: #f8f9fa;
}

.dropdown-item-homecare .fas {
  width: 20px;
  text-align: center;
  color: #666;
}

/* Modal Styles */
.modal-homecare {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
  animation: fadeIn-homecare 0.3s ease;
}

.modal-homecare.active-detail-homecare {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content-homecare {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: slideIn-homecare 0.3s ease;
}

.close-btn-homecare {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}

.close-btn-homecare:hover {
  color: #333;
}

.modal-title-homecare {
  margin-bottom: 15px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: bold;
}

.modal-text-homecare {
  color: #666;
  line-height: 1.5;
  font-size: 14px;
}

.logout-btn-homecare {
  background-color: #dc3545;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  transition: background-color 0.3s ease;
  font-size: 14px;
}

.logout-btn-homecare:hover {
  background-color: #c82333;
}

@keyframes fadeIn-homecare {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn-homecare {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.containerHistoryDetailHomeKare {
  max-width: 800px;
  margin: 2rem auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.containerHistoryDetailHomeKare:hover {
  transform: translateY(-5px);
}

.buttonsHistoryDetailHomeKare {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.btnHistoryDetailHomeKare {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 8px;
  background: #3498db;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btnHistoryDetailHomeKare::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btnHistoryDetailHomeKare:hover {
  background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btnHistoryDetailHomeKare:hover::after {
  width: 200px;
  height: 200px;
  opacity: 0;
}

.btnHistoryDetailHomeKare:active {
  transform: translateY(0);
}

.titleHistoryDetailHomeKare {
  color: #2c3e50;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.billDetailsHistoryDetailHomeKare {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.detailItemHistoryDetailHomeKare {
  display: flex;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.labelHistoryDetailHomeKare {
  flex: 0 0 120px;
  font-weight: bold;
  color: #34495e;
}

.valueHistoryDetailHomeKare {
  flex: 1;
  color: #2c3e50;
}

.commentHistoryDetailHomeKare {
  margin: 0;
  color: #666;
  line-height: 1.5;
}

.status-completeHistoryDetailHomeKare {
  color: #27ae60;
  font-weight: 500;
}

.status-assignedHistoryDetailHomeKare {
  color: #f39c12;
  font-weight: 500;
}

.status-cancelHistoryDetailHomeKare {
  color: #c0392b;
  font-weight: 500;
}

.status-wayPaymentHistoryDetailHomeKare {
  color: #2980b9;
  font-weight: 500;
}

.status-notDoneHistoryDetailHomeKare {
  color: #7f8c8d;
  font-weight: 500;
}

.status-processingHistoryDetailHomeKare {
  color: #8e44ad;
  font-weight: 500;
}

.dayBillHistoryDetailHomeKare {
  margin-bottom: 2rem;
  background: white;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.dayBillHistoryDetailHomeKare:hover {
  transform: translateX(5px);
  border-left: 4px solid #3498db;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dayTitleHistoryDetailHomeKare {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #3498db;
}

.longTermContainerHistoryDetailHomeKare {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
}

.totalCostHistoryDetailHomeKare {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 2px solid #3498db;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
}

.billContentHistoryDetailHomeKare {
  animation: fadeInHistoryDetailHomeKare 0.3s ease-in-out;
}

@keyframes fadeInHistoryDetailHomeKare {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Làm nổi bật tổng tiền */
.totalCostHistoryDetailHomeKare .valueHistoryDetailHomeKare {
  font-size: 1.4rem;
  font-weight: bold;
  color: #2980b9;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
}

/* Hiệu ứng hover cho detail items */
.detailItemHistoryDetailHomeKare {
  transition: all 0.3s ease;
}

.detailItemHistoryDetailHomeKare:hover {
  background: rgba(52, 152, 219, 0.05);
  border-radius: 4px;
  padding-left: 10px;
}

/* Hiệu ứng nhấp nháy cho trạng thái pending */
@keyframes blinkHistoryDetailHomeKare {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
.status-pendingHistoryDetailHomeKare {
  animation: blinkHistoryDetailHomeKare 2s infinite;
}

/* Modal styles */
.modalHistoryDetailHomeKare {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  animation: fadeInHistoryDetailHomeKare 0.3s ease-in-out;
}

.modalContentHistoryDetailHomeKare {
  position: relative;
  background-color: #fff;
  width: 90%;
  max-width: 600px;
  margin: 50px auto;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  max-height: 80vh;
  overflow-y: auto;
}

.closeModalHistoryDetailHomeKare {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.closeModalHistoryDetailHomeKare:hover {
  background-color: #f1f1f1;
  color: #333;
  transform: rotate(90deg);
}

.modalHeaderHistoryDetailHomeKare {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #3498db;
}

.modalTitleHistoryDetailHomeKare {
  font-size: 1.5rem;
  color: #2c3e50;
  margin: 0;
}

.showModalHistoryDetailHomeKare {
  display: block;
}

@keyframes modalFadeInHistoryDetailHomeKare {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.rating-stars {
  font-size: 24px;
  text-align: center;
}

.rating-stars .fa-star {
  color: #ddd;
  cursor: pointer;
  padding: 0 5px;
}

.rating-stars .fa-star.active {
  color: #ffd700;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,...") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
}

.btn-close:hover {
  opacity: 0.75;
  cursor: pointer;
}

.btn-close-modal {
  font-size: 3rem;
}

/* Thêm style cho nút xác nhận hoàn thành */
#completeButton, #completeButtonShort {
  background-color: #28a745;
  border-color: #28a745;
  color: white;
  margin-top: 10px;
  transition: all 0.3s;
}

#completeButton:hover, #completeButtonShort:hover {
  background-color: #218838;
  border-color: #1e7e34;
}

/* Animation cho icon spinner */
.fa-spinner {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.short-helper {
  flex: 0 0 100%;
  max-width: 100%;
}

.short-helper__item--image::hover {
  transform: translateY(-10px);
  transition: transform 0.3s ease;
  box-shadow: 0 10px 15px rgba(22, 22, 22, 0.9);
}
.short-helper__img-portrait {
  border-radius: 5px;
}
.short-helper__item {
  margin-top: 15px;
  padding: 20px;
  border: 1px solid #Dadada;
  border-radius: 10px;
  background-color: var(--white);
}
.short-helper__item--helper-name::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #666;
  margin-top: 10px;
  margin-bottom: 20px;
}
.short-helper__item--helper-box::after {
  margin-top: 10px;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #666;
}
.short-helper__item--helper {
  padding-top: 15px;
  padding-left: 15px;
  margin-left: 30px;
}
@media (max-width: 768px) {
  .short-helper__item--helper {
    margin: 0;
  }
}
.short-helper__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .short-helper__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.short-helper__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: linear-gradient(135deg, #2ecc71, #2980b9);
  color: var(--white);
  padding: 5px;
  border-radius: 50%;
  padding: 10px;
  width: 50px;
  height: 50px;
}

.vertical-line {
  width: 1px;
  height: 66px;
  background-color: #666;
}

.helper-box__list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.helper-box {
  margin-top: 10px;
  padding: 5px;
  border-radius: 5px;
  color: black;
}

.short-popup {
  width: 400px;
  background-color: var(--white);
  border-radius: 6px;
  position: absolute;
  top: 0;
  left: 38%;
  transform: translate(-50%, -50%) scale(0.1);
  text-align: center;
  padding: 0 30px 30px;
  color: #333;
  visibility: hidden;
  transition: transform 0.4s, top 0.4s;
  z-index: 10000;
}

.short-popup h2 {
  font-size: 2rem;
  font-weight: 500;
  margin: 30px 0 10px;
}

.short-popup p {
  font-size: 17px;
  padding: 10px 0;
}

.short-popup .short-popup__btn {
  width: 100%;
  margin-top: 50px;
  padding: 10px 0;
  background-color: var(--skin-color);
  color: var(--white);
  border: 0;
  outline: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.open-popup__short {
  top: 23%;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.overlay-short {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5); /* Màu đen với độ trong suốt 50% */
  display: none;
  z-index: 9999;
}

.overlay-short.active {
  display: block;
  z-index: 9999;
}

/* Add to your existing CSS file */
.wrapper-service {
  margin: 10px 0;
  position: relative;
}

.wrapper-service__select-btn {
  display: flex;
  height: 100%;
  padding: 0 7px;
  background: #fff;
  border: 1px solid #d4d4d4;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.wrapper-service__select-btn span {
  font-size: 1.3rem;
  font-weight: 600;
}

.wrapper-service__content {
  display: none;
  position: absolute;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  margin-top: 5px;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.wrapper-service.active-menu-search .wrapper-service__content {
  display: block;
}

.wrapper-service__search {
  position: relative;
  margin-bottom: 10px;
}

.wrapper-service__input {
  width: 100%;
  height: 40px;
  padding: 0 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1.4rem;
}

.wrapper-service__search i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

.wrapper-service__options {
  max-height: 200px;
  overflow-y: auto;
}

.service-option {
  display: flex;
  padding: 8px 15px;
  cursor: pointer;
  font-size: 1.4rem;
  align-items: center;
}

.service-option:hover {
  background: #f5f5f5;
}

.service-option input {
  margin-right: 10px;
}

.extra-wrapper__service {
  width: 100%;
  height: 40px;
}

.hide-longterm {
  display: none !important;
}

.show-longterm {
  display: block;
}

.detail-longterm__tittle {
  background-color: var(--skin-color);
  padding: 10px;
  width: 100%;
  color: var(--white);
  text-shadow: 1px 0 0 var(--white);
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.detail-longterm__tittle--heading {
  flex: 0 0 50%;
  max-width: 50%;
  background-color: red;
  font-size: 2rem;
}
.detail-longterm__tittle--back {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
}
.detail-longterm__tittle--back button {
  margin-left: auto;
}

.long-helper__item {
  margin-top: 15px;
  box-shadow: 0 10px 15px rgba(22, 22, 22, 0.9);
  border: 1px solid #4CAF50;
  background-color: var(--white);
  height: 100%;
}

.detail-employee {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 50px;
  position: relative;
}

.aside-detail__longterm {
  position: absolute;
  inset: 0 70% 0 0;
  background-color: var(--Secondary-Color-Background);
  flex-direction: column;
  z-index: 9;
  translate: -100%;
  transition: translate 0.1s;
  overflow-y: auto;
  height: 100%;
  overscroll-behavior: contain;
}
.aside-detail__longterm.show {
  translate: 0%;
  box-shadow: 0 10px 20px rgba(22, 22, 22, 0.9);
  border: 1px solid #4CAF50;
  height: 93.5vh;
}
@media (max-width: 576px) {
  .aside-detail__longterm.show {
    inset: 0 50% 0 0 !important;
  }
}
.aside-detail__longterm.hide {
  visibility: hidden;
}
.aside-detail__longterm ul li {
  list-style: none;
  text-align: center;
}
@media (max-width: 1200px) {
  .aside-detail__longterm ul li {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .aside-detail__longterm ul li {
    width: 90%;
  }
}
@media (max-width: 768px) {
  .aside-detail__longterm ul li {
    width: 100%;
  }
}
.aside-detail__longterm ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1200px) {
  .aside-detail__longterm ul {
    justify-content: center;
    align-items: center;
  }
}
.aside-detail__longterm ul li a {
  color: #011a41;
  font-weight: 500;
  padding: 5px 0;
  display: block;
  text-transform: capitalize;
  text-decoration: none;
  transition: 0.2s ease-out;
  padding: 10px;
}

.section-longterm {
  background: var(--bg-black-900);
  min-height: 100vh;
  display: block;
  z-index: 0;
  right: 0px;
  opacity: 1;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.3s ease;
}

.aside-longterm__detail {
  inset: 0 70% 0 0;
  background-color: var(--Secondary-Color-Background);
  flex-direction: column;
  z-index: 9;
  translate: -100%;
  transition: translate 0.1s;
  overflow-y: auto;
  height: 100%;
  overscroll-behavior: contain;
}
.aside-longterm__detail.show-2 {
  translate: 0%;
  box-shadow: 0 10px 20px rgba(22, 22, 22, 0.9);
  border: 1px solid #4CAF50;
  height: 93.5vh;
}
.aside-longterm__detail.hide-2 {
  visibility: hidden;
}

/*# sourceMappingURL=style.css.map */
