@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat.ttf");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --white-color: #fafafa;
  --black-color: #1a1a1a;
  --primary-color: #1ab4f4;
  --secondary-color: #283646;
  --padding: 16px;
  --light-section: #a9d3ff22;
}

body {
  font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 750;
  color: #2a396e;
}

.black-text {
  color: var(--black-color);
}

/* Mobile Language Selector Styles */
.mobile-language-selector {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 8px;
  margin-top: 8px;
}

.mobile-lang-btn {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  padding: 8px 16px;
  width: 100%;
  text-align: left;
  font-size: 14px;
  color: var(--secondary-color);
}

.mobile-lang-btn:hover {
  background-color: rgba(26, 180, 244, 0.1);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.mobile-lang-dropdown {
  width: 100%;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  margin-top: 4px;
}

.mobile-lang-item {
  padding: 8px 16px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.mobile-lang-item:hover {
  background-color: rgba(26, 180, 244, 0.1);
  color: var(--primary-color);
}

.mobile-lang-item img {
  margin-right: 8px;
  width: 20px;
  height: 20px;
  border-radius: 2px;
}

@media (min-width: 992px) {
  .mobile-language-selector {
    display: none !important;
  }
}

.dimmed-text {
  opacity: 0.6;
  max-width: 48ch;
  margin-inline: auto;
}

.base-button {
  display: inline-block;
  color: var(--white-color);
  border: none;
  padding: 6px 24px;
  transition: 0.25s ease;
}

.base-button:hover {
  transform: scale(1.1);
}

.main-button {
  background-color: var(--primary-color);
  border-radius: 48px;
}

.form-button {
  background-color: #2a396e;
}

.white-bg {
  background-color: #fff !important;
}

.topbar {
  background-color: var(--primary-color);
  padding: var(--padding);

  & a,
  & p {
    color: var(--white-color);
  }

  & .icon-holder,
  & .social-item a {
    display: flex;
    background-color: var(--black-color);
    padding: 6px;
    border-radius: 50%;
  }

  & path {
    fill: var(--primary-color);
  }

  & .topbar-language a {
    color: var(--black-color);
  }
}

.navbar {
  padding-inline: var(--padding);
  background-color: var(--white-color);

  & .navbar-holder {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  & .navbar-collapse {
    flex-grow: unset;
  }

  & a {
    font-weight: 600;
  }
}

.hero {
  & .container-fluid {
    padding: 0;
  }
}

.cta-form .nhform {
  border: 1px solid #00000036;
}

.cta-form .form-control {
  border-radius: 0;
  padding-block: 12px;
}

.nhform select.form-control {
  background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%23666' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.nhform select.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 5px rgba(26, 180, 244, 0.3);
}

.form-button-holder {
  display: flex;
  align-items: end;

  & button {
    border: 1px solid #2a396e;
  }
}

.about-sb,
.body-filler,
.body-iron {
  background-color: var(--light-section);
}

.video-holder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  & .video-play {
    position: absolute;
    transition: 0.25s ease;
  }
}

.video-holder:hover .video-play {
  transform: scale(1.1);
}

.video-carousel-item img {
  object-fit: cover;
  border-radius: 12px;
}

.contact-button {
  max-width: 240px;
  background-color: #d2d0d0;
  color: var(--secondary-color);
  border-radius: 48px;
  text-align: center;
}

.testimonal-item {
  padding: var(--padding);
  border: 2px solid #d8d8d8;
  border-radius: 8px;
  color: #a4a4a4;

  & .customer-picture {
    width: 48px;
    height: 48px;
    background-color: #d8d8d8;
    border-radius: 50%;
  }
}

.blog-card {
  display: block;
  padding: 24px;
  border-radius: 24px;
  color: var(--black-color);
  -webkit-box-shadow: 10px 10px 27px 5px rgba(0, 0, 0, 0.11);
  -moz-box-shadow: 10px 10px 27px 5px rgba(0, 0, 0, 0.11);
  box-shadow: 10px 10px 27px 5px rgba(0, 0, 0, 0.11);
  transition: 0.25s ease;

  & img {
    height: 240px;
    width: 100%;
    object-fit: cover;
    border-radius: 18px;
  }
}

.blog-card:hover {
  transform: translateY(-16px);
}

.bottom-form .nhform {
  & .form-control {
    border-color: #2a396e;
    padding-block: 16px;
  }

  & label {
    color: #2a396e;
  }
}

footer {
  background-color: var(--secondary-color);
}

.footer-contact-item {
  display: flex;
  gap: 12px;

  & svg {
    flex-shrink: 0;
    margin-top: 4px;
  }
}

.bottom-footer a {
  color: var(--white-color);
}

.owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);

  & button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 54px;
    background-color: #fff !important;
  }

  & span {
    font-size: 28px;
  }
}

.content-widget {
  & h4 {
    background-color: #2a396e;
    color: var(--white-color);
    padding: var(--padding);
    border-radius: 8px;
    text-align: center;
  }

  & ul {
    list-style: none;
    padding-left: 0;
  }

  & li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
  }

  & img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
  }

  & a {
    color: var(--secondary-color);
  }

  & a:hover {
    text-decoration: underline;
  }
}

.section-banner {
  background-color: var(--primary-color);
  padding-block: 60px;

  & h1 {
    color: var(--white-color);
  }
}

.contact {
  background-color: #3b4857;
}

.contact-form {
  color: var(--white-color);

  & h2 {
    color: var(--white-color);
  }

  & .form-button {
    background-color: transparent;
    border-color: var(--white-color);
  }
}

.faq-button {
  background-color: #e6e6e6;
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 18px;
  margin-top: 24px;
  cursor: pointer;

  & .card {
    background-color: transparent;
    border: none;
    padding-left: 0;
    font-weight: normal;
  }

  & .faq-title {
    display: flex;
    justify-content: space-between;
    align-items: center;

    & .button-holder {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: #f4f4f4;
      border-radius: 8px;
    }

    & .bi-plus path {
      fill: #000;
    }
  }

  & .bi-dash-lg {
    display: none;
  }
}

.faq-button[aria-expanded="true"] {
  & .bi-plus {
    display: none;
  }

  & .bi-dash-lg {
    display: block;
  }

  & .button-holder {
    background-color: var(--emp-blue);
  }

  & .bi-dash-lg path {
    fill: var(--black-color);
  }
}

.body-filler ul {
  padding-left: 16px;

  & li {
    padding-bottom: 6px;
  }

  & span {
    font-weight: 500;
  }
}

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroller[data-animated="true"] {
  overflow: hidden;
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll 40s var(--_animation-direction, forwards) linear infinite;
  -webkit-animation: scroll 40s var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

.testimonial-holder {
  max-width: 400px;
  min-height: 200px;
  background-color: #f6f9fc;
  border-radius: 16px;
  padding: 30px 18px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 24px;
}

.testimonial-left {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d7dde2;
  padding: 8px;
  border-radius: 50%;

  & path {
    fill: #1d1d1d;
  }
}

.testimonial-end {
  margin-left: auto;
  align-self: baseline;

  & path {
    fill: var(--primary-color);
  }
}

.scroller[data-animated="true"]:hover .scroller__inner {
  animation-play-state: paused;
}

.content-detail h2,
.content-detail h3,
.content-detail h4,
.content-detail h5,
.content-detail h6 {
  margin-block: 16px;
}

.content-detail p {
  line-height: 30px;
}

.content-detail li {
  margin-block: 6px;
}

.iti {
  width: 100%;
}

.ba-item img {
  height: 540px;
  object-fit: cover;
}

.service-card {
  height: 360px;
  background-color: #f1f1f1;
  padding: 30px;
  border-radius: 8px;

  & h3 {
    font-size: clamp(18px, 4vw, 24px);
  }
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  padding: 12px;
  border-radius: 50%;
  margin: 0px auto 16px auto;

  & img {
    object-fit: contain;
  }
}

.popular-slider img,
.ba-slider img {
  object-fit: contain;
}

.alert-success {
  display: none;
}

.detail-content p {
  margin-block: 12px;
}

@media (min-width: 1920px) {
  .popular-slider img {
    object-fit: cover;
    height: auto;
  }
}

@media (min-width: 992px) {
  .navbar ul .nav-item:last-child {
    margin-left: 30px;
  }
}

@media (max-width: 991px) {
  .topbar {
    display: none;
  }

  .navbar {
    & .navbar-holder {
      display: block;
    }

    & .navbar-toggler {
      float: right;
    }

    & .navbar-collapse {
      margin-top: 24px;
    }
  }

  .form-control {
    margin-bottom: 12px;
  }

  .blog-card {
    margin-bottom: 30px;
  }

  .footer-contact-item {
    justify-content: center;
  }
}

.treatments-ba-carousel .ba-item {
  flex-direction: column;
}

.treatments-ba-carousel img {
  max-height: 440px;
  object-fit: contain;
}

.treatments-ba-carousel .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 30px;

  & .owl-dot span {
    display: block;
    width: 22px;
    height: 6px;
    border-radius: 6px;
    background-color: #828288;
  }

  & .owl-dot.active span {
    background-color: var(--primary-color);
  }
}

.treatments-ba-carousel .video-item a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  & .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  & img {
    border-radius: 12px;
  }
}

.treatments-ba-carousel .owl-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  top: unset;
  transform: translateY(0);
  margin-top: 12px;

  & button {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    font-size: 24px !important;
    border-radius: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.body-filler ul {
  padding-left: 16px;

  & li {
    padding-bottom: 6px;
  }

  & span {
    font-weight: 500;
  }
}

.body-filler .main-button {
  text-decoration: none;
  font-weight: 600;
  padding-block: 16px;
  padding-inline: 24px;
}

.body-iron img {
  max-height: 500px;
  object-fit: cover;
}