body {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #393939;
  background-color: #f2f2f2;
}
.section {
  padding-top: 70px;
  padding-bottom: 70px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
  margin-bottom: 1rem;
}
.heading-priamry {
  font-size: 45px;
}
.headinf-secondary {
  font-size: 35px;
}
.heading-info {
  font-size: 1.5rem;
}
.color-accent {
  color: #722f43;
}
a {
  color: #722f43;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
a:hover {
  color: #7a2b48;
  text-decoration: underline;
}
.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.button span {
  display: inline-block;
  position: relative;
  overflow: hidden;
  height: 1em;
}
.button span::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.button .bi {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.button:hover .bi {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}
.button:hover span::after {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.button:hover span::before {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
}
.button-dark {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}
.button-dark:hover {
  background: #fff;
  color: #1a1a1a;
}
.button--accent {
  background: #722f43;
  color: #fff;
  border-color: #722f43;
}
.button--accent:hover {
  background: #fff;
  color: #722f43;
}
.button-outline-dark {
  background: rgba(0, 0, 0, 0);
  color: #1a1a1a;
  border-color: #1a1a1a;
}
.button-outline-dark:hover {
  background: #1a1a1a;
  color: #fff;
}
.button-light {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
}
.button-light:hover {
  background: #1a1a1a;
  color: #fff;
}
.animate-button span::before {
  content: attr(data-text);
  display: inline-block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.animate-button:hover span::before {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
}
.button-glass {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  border-radius: 50px;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.button-glass span {
  display: inline-block;
  position: relative;
  height: 1.5em;
  overflow: hidden;
}
.button-glass span::before {
  content: attr(data-text);
  display: block;
  -webkit-transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.button-glass span::after {
  content: attr(data-hover-text);
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  display: block;
  -webkit-transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.button-glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(transparent),
    color-stop(rgba(255, 255, 255, 0.1)),
    to(transparent)
  );
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.button-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.button-glass:hover::before {
  left: 100%;
}
.button-glass:hover span::before {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
}
.button-glass:hover span::after {
  top: 0;
}
.button-glass:active,
.button-glass:focus {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.button-glass-light {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  border-radius: 50px;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1),
    inset 0 0 10px rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1),
    inset 0 0 10px rgba(255, 255, 255, 0.8);
}
.button-glass-light span {
  display: inline-block;
  position: relative;
  height: 1.5em;
  overflow: hidden;
}
.button-glass-light span::before {
  content: attr(data-text);
  display: block;
  -webkit-transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.button-glass-light span::after {
  content: attr(data-hover-text);
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  display: block;
  -webkit-transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.button-glass-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(transparent),
    color-stop(rgba(255, 255, 255, 0.5)),
    to(transparent)
  );
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.button-glass-light:hover {
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15),
    inset 0 0 15px rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15),
    inset 0 0 15px rgba(255, 255, 255, 0.9);
}
.button-glass-light:hover::before {
  left: 100%;
}
.button-glass-light:hover span::before {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
}
.button-glass-light:hover span::after {
  top: 0;
}
.button-glass-light:active,
.button-glass-light:focus {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1),
    inset 0 0 8px rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1),
    inset 0 0 8px rgba(255, 255, 255, 0.8);
}
.theme-text-primary {
  color: #393939;
}
.theme-text-secondary {
  color: #5b5b5b;
}
.theme-text-accent {
  color: #722f43;
}
.theme-text-info {
  color: #ae9f7c;
}
.theme-text-success {
  color: #28a745;
}
.theme-text-warning {
  color: #ffc107;
}
.theme-text-error {
  color: #dc3545;
}
.theme-text-contrast {
  color: #868f91;
}
.theme-bg-primary {
  background-color: #393939;
}
.theme-bg-secondary {
  background-color: #5b5b5b;
}
.theme-bg-accent {
  background-color: #722f43;
}
.theme-bg-dark {
  background-color: #1a1a1a;
}
.theme-bg-light {
  background-color: #722f43;
}
.theme-bg-white {
  background-color: #fff;
}
.theme-mt-sm {
  margin-top: 0.5rem;
}
.theme-mt-md {
  margin-top: 1rem;
}
.theme-mt-lg {
  margin-top: 50px;
}
.theme-mt-xl {
  margin-top: 70px;
}
.theme-mb-sm {
  margin-bottom: 0.5rem;
}
.theme-mb-md {
  margin-bottom: 1rem;
}
.theme-mb-lg {
  margin-bottom: 50px;
}
.theme-mb-xl {
  margin-bottom: 70px;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.header .navbar-brand img {
  height: 50px;
  -o-object-fit: cover;
  object-fit: cover;
}
.header .nav-left {
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 30px;
}
.header .nav-right {
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 30px;
}
.header .navbar-nav .nav-item {
  padding: 0px 15px;
}
.header .navbar-nav .nav-item > .nav-link {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  color: #fff;
  padding: 0.5rem 0.2rem;
  margin: 0 0.25rem;
  border-radius: 0px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.header .navbar-nav .nav-item > .nav-link:after {
  content: "";
  width: 0%;
  height: 1px;
  background-color: #722f43;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}
.header .navbar-nav .nav-item > .nav-link:hover:after {
  width: 100%;
}
.header .navbar-nav .nav-item > .nav-link:hover {
  color: #722f43;
  text-decoration: none;
}
.header .navbar-nav .nav-item > .nav-link.active {
  color: #722f43;
}
.header .navbar-nav .nav-item > .nav-link.active:after {
  width: 100%;
}
.header .dropdown-menu {
  padding: 0;
  margin: 0;
  background-color: #722f43;
}
.header .dropdown-menu li:first-child .dropdown-item {
  border-radius: 6px 6px 0px 0px;
}
.header .dropdown-menu li:last-child .dropdown-item {
  border-radius: 0px 0px 6px 6px;
}
.header .dropdown-menu .dropdown-item {
  padding: 8px 20px;
}
.header .dropdown-menu .dropdown-item:hover {
  text-decoration: none;
  color: #1a1a1a;
}
.header.scrolled {
  background-color: #1e2222;
}
.header.fade-in {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.header.fade-out {
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
}
.header .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0em solid;
  border-right: 0em solid rgba(0, 0, 0, 0);
  border-bottom: 0;
  border-left: 0em solid rgba(0, 0, 0, 0);
}
.hero {
  height: 100vh;
  background: url(../img/homepage-banner.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
}
.hero:after {
  content: "";
  background-color: #1a1a1a;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.45;
  z-index: -1;
}
.hero-content {
  position: relative;
}
.hero-content h2 {
  font-size: 56px;
  line-height: 72px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #fff;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .hero-content h2 {
    font-size: 42px;
    line-height: 52;
  }
}
@media (max-width: 767.98px) {
  .hero-content h2 {
    font-size: 32px;
    line-height: 42px;
  }
}
.hero-content h2 > span {
  color: #722f43;
}
.hero-content h3 {
  font-size: 24px;
  color: #fff;
  margin-top: 32px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .hero-content h3 {
    font-size: 18px;
    line-height: 32;
  }
}
@media (max-width: 767.98px) {
  .hero-content h3 {
    font-size: 16px;
    line-height: 26px;
  }
}
.hero-content .hero-content h2 div,
.hero-content .hero-content h3 div {
  display: block;
}
@media (max-width: 991.98px) {
  .video-btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
  }
}
@media (max-width: 767.98px) {
  .video-btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
  }
}
.btn-video {
  min-width: 240px;
  width: 240px;
  height: 240px;
  line-height: 240px;
  font-size: 50px;
  border-radius: 50%;
  color: #fff;
  letter-spacing: 0.3px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.btn-video:hover {
  color: #fff;
}
.btn-video:after {
  content: "";
  width: 240px;
  height: 240px;
  border: 2px solid #fff;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
}
.btn-video:hover:after {
  border-style: dashed;
  -webkit-animation: border-rotate 8s linear infinite;
  animation: border-rotate 8s linear infinite;
}
@-webkit-keyframes border-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes border-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.horizontal-accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 300px;
  height: 50vh;
  margin-top: 40px;
  padding: 0;
  overflow: hidden;
  list-style-type: none;
  width: 100%;
  min-width: 100%;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
@media (max-width: 992px) {
  .horizontal-accordion {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
    min-height: auto;
  }
}
.horizontal-accordion-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: width 0.3s ease, height 0.3s ease;
  transition: width 0.3s ease, height 0.3s ease;
  position: relative;
}
@media (max-width: 992px) {
  .horizontal-accordion-item {
    width: 100% !important;
    height: 80px;
    border-bottom: 1px solid #3e4a4d;
  }
  .horizontal-accordion-item.expand {
    height: 300px;
  }
}
.expand {
  width: 40%;
}
@media (max-width: 1200px) {
  .expand {
    width: 50%;
  }
}
.collapsed {
  width: 20%;
}
@media (max-width: 1200px) {
  .collapsed {
    width: 16.66%;
  }
}
.collapsed > .item-body {
  opacity: 0;
  pointer-events: none;
}
.expand > .item-body {
  -webkit-transition: opacity 0.3s ease 0.2s;
  transition: opacity 0.3s ease 0.2s;
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  border-right: 1px solid;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px;
  color: #868f91;
}
@media (max-width: 992px) {
  .expand > .item-body {
    border-right: none;
    padding: 15px;
    width: 100%;
  }
}
.accordion-swiper-slider-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}
.accordion-swiper-slider-nav .swiper-nav-prev,
.accordion-swiper-slider-nav .swiper-nav-next {
  font-size: 24px;
  color: #6e6e6e;
  border: 1px solid #6e6e6e;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.item-title {
  padding: 0 20px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .item-title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 0 15px;
  }
}
.expand .item-title {
  border-right: 1px solid rgba(0, 0, 0, 0);
}
.collapsed .item-title {
  border-right: 1px solid #3e4a4d;
}
@media (max-width: 992px) {
  .collapsed .item-title {
    border-right: none;
  }
}
.item-title span {
  text-overflow: ellipsis;
  display: -webkit-inline-flex;
  -webkit-writing-mode: sideways-lr;
  -ms-writing-mode: sideways-lr;
  writing-mode: sideways-lr;
  text-orientation: sideways;
  font-size: 28px;
  margin-left: 15px;
  height: 70%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 1200px) {
  .item-title span {
    font-size: 24px;
  }
}
@media (max-width: 992px) {
  .item-title span {
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    height: auto;
    margin-left: 0;
    margin-right: 15px;
    font-size: 18px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.collapsed > .item-title span,
.collapsed > .item-title h5 {
  color: #3e4a4d;
}
.expand > .item-title span {
  color: #fff;
}
.expand > .item-title h5 {
  color: #722f43;
}
.item-title h5 {
  font-size: 80px;
  color: #3e4a4d;
  line-height: 0.8;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 30%;
  padding-top: 15px;
}
@media (max-width: 1400px) {
  .item-title h5 {
    font-size: 70px;
  }
}
@media (max-width: 1200px) {
  .item-title h5 {
    font-size: 60px;
  }
}
@media (max-width: 992px) {
  .item-title h5 {
    font-size: 40px;
    padding-top: 0;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    margin-right: 15px;
    height: auto;
  }
}
@media (max-width: 576px) {
  .item-title h5 {
    font-size: 32px;
  }
}
@media (max-width: 992px) {
  .horizontal-accordion-item.collapsed .item-title {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .horizontal-accordion-item.expand .item-title {
    padding-bottom: 15px;
  }
  .collapsed > .item-body {
    width: 0;
  }
  .expand .item-title {
    width: 30%;
  }
}
.clientSwiper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.about-section {
  position: relative;
  overflow: hidden;
}
.serviceCardSwiper {
  width: 100%;
  overflow: hidden;
  padding: 0;
}
.serviceCardSwiper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  height: auto;
}
.service-card {
  border-width: 1px 0px 1px 1px;
  border-color: rgba(26, 26, 26, 0.2);
  border-radius: 0px;
  width: 100%;
  padding: 40px 70px 70px 70px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  border-style: solid;
}
.service-card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}
.service-card-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #5b5b5b;
  margin: 0;
}
.service-card-button {
  text-decoration: none;
  color: #5b5b5b;
  font-size: 45px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.service-card-button:hover,
.service-card:hover .service-card-button {
  color: #28a745;
}
.service-card-button i {
  display: inline-block;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.service-card-button:hover,
.service-card:hover .service-card-button i {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.service-card-body p {
  color: #393939;
  margin: 0;
}
.swiper-slider-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0px;
}
.swiper-slider-nav .swiper-nav-prev,
.swiper-slider-nav .swiper-nav-next {
  font-size: 24px;
  color: #6e6e6e;
  border: 1px solid #6e6e6e;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.swiper-slider-nav .swiper-nav-next {
  margin-left: 10px;
}
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #67243d, #722f43);
  z-index: -1;
}
.bg-gradient-accent {
  background: linear-gradient(135deg, #67243d, #722f43);
}
.btn-light-accent {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 30px;
  background-color: #fff;
  color: #722f43;
  border-radius: 50px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-light-accent:hover {
  background-color: #f2f2f2;
  color: #7a2b48;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}
#typing-text {
  margin: 0 auto;
  font-size: 42px;
  color: #722f43;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-animation: blink-caret 0.7s step-end infinite;
  animation: blink-caret 0.7s step-end infinite;
}
@-webkit-keyframes blink-caret {
  from,
  to {
    border-color: rgba(0, 0, 0, 0);
  }
  50% {
    border-color: #fff;
  }
}
@keyframes blink-caret {
  from,
  to {
    border-color: rgba(0, 0, 0, 0);
  }
  50% {
    border-color: #fff;
  }
}
@media (max-width: 1024px) {
  #typing-text {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  #typing-text {
    font-size: 28px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  #typing-text {
    font-size: 22px;
    text-align: center;
    padding: 0 10px;
  }
}
.featured-services .featured-service-card {
  position: relative;
  padding: 40px 30px;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid rgba(110, 110, 110, 0.5);
}
.featured-services .featured-service-card:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(160, 56, 94, 0.3);
}
.featured-services .featured-service-card .number {
  background-color: #e7e7e7;
  position: absolute;
  top: -29px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 57px;
  height: 57px;
  line-height: 57px;
  border-radius: 1000px;
  text-align: center;
  font-size: 17px;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.featured-services .featured-service-card .service-icon {
  width: 90px;
  height: 90px;
  background: #e7e7e7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 30px auto;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.featured-services .featured-service-card .service-icon i {
  font-size: 28px;
  color: #722f43;
}
.featured-services .featured-service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #393939;
}
.featured-services .featured-service-card p {
  color: #5b5b5b;
  margin-bottom: 20px;
}
.featured-services .featured-service-card .service-link {
  color: #722f43;
  font-weight: 500;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.featured-services .featured-service-card .service-link i {
  margin-left: 8px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.featured-services .featured-service-card .service-link:hover {
  color: #7a2b48;
}
.featured-services .featured-service-card .service-link:hover i {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}
.featured-services .featured-service-card:hover .number {
  background-color: #0a1119;
  color: #fff;
}
.featured-services .featured-service-card:hover .service-icon {
  background: #0a1119;
}
.featured-services .featured-service-card:hover .service-icon i {
  color: #fff;
}
.featured-services .featured-service-card:hover .service-link i {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}
.featured-services .featured-service-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.featured-services .featured-service-card ul li:not(:last-child) {
  border-bottom: 1px solid rgba(110, 110, 110, 0.3);
  padding: 10px 0px;
}


.featured-service-card .accordion-button {
  font-size: 18px;
    font-weight: 700;
    color: #393939;
    padding: 5px;
    border-bottom: 1px solid rgba(160, 56, 94, 0.3);
    border-radius: 0px;
    background-color: rgba(160, 56, 94, 0.0);
}
.featured-service-card .accordion-item{
  background-color: transparent;
  padding:0;
}
.featured-service-card .accordion-button:not(.collapsed) {
  font-size: 18px;
  font-weight: 700;
  padding: 5px;
  color: #393939;
  border-bottom: 1px solid rgba(160, 56, 94, 0.3);;
  background-color: rgba(160, 56, 94, 0.0);
}
.featured-service-card .collapsed {
    width: 100%;
}


.offers .offer-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-height: 250px;
}
.offers .offer-card:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}
.offers .offer-card .offer-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}
.offers .offer-card .offer-content p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
.offers .offerSwiper {
  padding-bottom: 90px;
  position: relative;
}
.offers .offerSwiper .swiper-navigation {
  position: absolute;
  top: calc(100% - 50px);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  z-index: 10;
}
.offers .offerSwiper .swiper-navigation .swiper-button-prev,
.offers .offerSwiper .swiper-navigation .swiper-button-next {
  position: relative;
  border: 1px solid #6e6e6e;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  top: auto;
  left: auto;
  right: auto;
  margin-top: 0;
  color: #6e6e6e;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.offers .offerSwiper .swiper-navigation .swiper-button-prev:hover,
.offers .offerSwiper .swiper-navigation .swiper-button-next:hover {
  opacity: 1;
  color: #722f43;
}
.offers .offerSwiper .swiper-navigation .swiper-button-prev::after,
.offers .offerSwiper .swiper-navigation .swiper-button-next::after {
  display: none;
}
.offers .offerSwiper .swiper-navigation .swiper-button-prev i,
.offers .offerSwiper .swiper-navigation .swiper-button-next i {
  font-size: 24px;
}
.why-choose-us .features-list {
  margin-top: 40px;
}
.why-choose-us .features-list .feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.why-choose-us .features-list .feature-item .feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(160, 56, 94, 0.1);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.why-choose-us .features-list .feature-item .feature-icon i {
  font-size: 24px;
  color: #722f43;
}
.why-choose-us .features-list .feature-item .feature-content h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #393939;
}
.why-choose-us .features-list .feature-item .feature-content p {
  color: #5b5b5b;
  margin-bottom: 0;
}
.why-choose-us .image-wrapper {
  position: relative;
}
.why-choose-us .image-wrapper img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.why-choose-us .image-wrapper:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.testimonials .testimonial-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.testimonials .testimonial-card:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}
.testimonials .testimonial-card .testimonial-content {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.testimonials .testimonial-card .testimonial-content .quote-icon {
  position: absolute;
  top: -15px;
  left: -15px;
  font-size: 40px;
  color: rgba(255, 255, 255, 0.1);
}
.testimonials .testimonial-card .testimonial-content p {
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testimonials .testimonial-card .testimonial-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.testimonials .testimonial-card .testimonial-author .author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}
.testimonials .testimonial-card .testimonial-author .author-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.testimonials .testimonial-card .testimonial-author .author-info h5 {
  color: #fff;
  margin-bottom: 5px;
  font-size: 18px;
}
.testimonials .testimonial-card .testimonial-author .author-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  font-size: 14px;
}
.testimonials .testimonialSwiper {
  padding-bottom: 90px;
  position: relative;
}
.testimonials .testimonialSwiper .swiper-navigation {
  position: absolute;
  top: calc(100% - 50px);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  z-index: 10;
}
.testimonials .testimonialSwiper .swiper-navigation .swiper-button-prev,
.testimonials .testimonialSwiper .swiper-navigation .swiper-button-next {
  position: relative;
  border: 1px solid #6e6e6e;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  top: auto;
  left: auto;
  right: auto;
  margin-top: 0;
  color: #6e6e6e;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.testimonials .testimonialSwiper .swiper-navigation .swiper-button-prev:hover,
.testimonials .testimonialSwiper .swiper-navigation .swiper-button-next:hover {
  opacity: 1;
  color: #722f43;
}
.testimonials .testimonialSwiper .swiper-navigation .swiper-button-prev::after,
.testimonials .testimonialSwiper .swiper-navigation .swiper-button-next::after {
  display: none;
}
.testimonials .testimonialSwiper .swiper-navigation .swiper-button-prev i,
.testimonials .testimonialSwiper .swiper-navigation .swiper-button-next i {
  font-size: 24px;
}
.team-section .team-card {
  border: 1px solid rgba(110, 110, 110, 0.5);
  overflow: hidden;
  -webkit-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}
.team-section .team-card:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.team-section .team-card:hover .team-image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.team-section .team-card:hover .team-image .team-overlay {
  opacity: 0.8;
}
.team-section .team-card:hover .team-image .team-social {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.team-section .team-card .team-image {
  position: relative;
  overflow: hidden;
  height: 400px;
}
.team-section .team-card .team-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.team-section .team-card .team-image .team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(160, 56, 94, 0)),
    to(rgba(160, 56, 94, 0.9))
  );
  background: linear-gradient(
    to bottom,
    rgba(160, 56, 94, 0) 0%,
    rgba(160, 56, 94, 0.9) 100%
  );
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.team-section .team-card .team-image .team-social {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.4s ease 0.1s;
  transition: all 0.4s ease 0.1s;
}
.team-section .team-card .team-image .team-social .social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: #722f43;
  font-size: 18px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.team-section .team-card .team-image .team-social .social-link:hover {
  background: #fff;
  -webkit-transform: translateY(-3px) scale(1.1);
  transform: translateY(-3px) scale(1.1);
}
.team-section .team-card .team-image .team-social .social-link:hover::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.team-section .team-card .team-image .team-social .social-link::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(5px);
  transform: translateX(-50%) translateY(5px);
  background: #1a1a1a;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.team-section .team-card .team-info {
  padding: 25px;
  text-align: center;
  position: relative;
}
.team-section .team-card .team-info h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #393939;
  font-weight: 600;
}
.team-section .team-card .team-info .position {
  color: #722f43;
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 16px;
}
@media (max-width: 991.98px) {
  .team-section .team-card .team-image {
    height: 250px;
  }
  .team-section .team-card .team-info {
    padding: 20px;
  }
}
@media (max-width: 767.98px) {
  .team-section .team-card {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
  .team-section .team-card .team-image {
    height: 280px;
  }
}
.latest-news .news-card {
  border: 1px solid rgba(110, 110, 110, 0.5);
  background: #fff;
  border-radius: 0px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 100%;
}
.latest-news .news-card:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.latest-news .news-card .news-image {
  position: relative;
  overflow: hidden;
}
.latest-news .news-card .news-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.latest-news .news-card .news-image .news-date {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  line-height: 1;
}
.latest-news .news-card .news-image .news-date span {
  display: block;
}
.latest-news .news-card .news-image .news-date span:first-child {
  font-size: 24px;
  font-weight: 700;
}
.latest-news .news-card .news-image .news-date span:last-child {
  font-size: 14px;
  text-transform: uppercase;
}
.latest-news .news-card:hover .news-image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.latest-news .news-card .news-content {
  padding: 25px;
}
.latest-news .news-card .news-content h3 {
  font-size: 20px;
  position: relative;
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 21px;
  margin-bottom: 23px;
}
.latest-news .news-card .news-content h3:before {
  position: absolute;
  content: "";
  left: 0;
  -webkit-transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  bottom: -1px;
  height: 1px;
  background-color: #722f43;
  width: 60px;
}
.latest-news .news-card .news-content h3 a {
  color: #393939;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.latest-news .news-card .news-content h3 a:hover {
  color: #722f43;
}
.latest-news .news-card .news-content p {
  color: #5b5b5b;
  margin-bottom: 20px;
}
.latest-news .news-card .news-content .read-more {
  color: #722f43;
  font-weight: 500;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.latest-news .news-card .news-content .read-more i {
  margin-left: 8px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.latest-news .news-card .news-content .read-more:hover {
  color: #7a2b48;
}
.latest-news .news-card .news-content .read-more:hover i {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}
.contact-cta {
  background-color: #722f43;
}
.contact-cta h2 {
  font-size: 36px;
  font-weight: 600;
}
.contact-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}
.contact-cta .button--light {
  background: #fff;
  color: #722f43;
  border: none;
  padding: 12px 30px;
  font-weight: 500;
}
.contact-cta .button--light:hover {
  background: #f2f2f2;
  color: #7a2b48;
}
@media (max-width: 991.98px) {
  .why-choose-us .image-wrapper {
    margin-bottom: 40px;
  }
  .team-section .col-lg-3,
  .latest-news .col-lg-3 {
    margin-bottom: 30px;
  }
  .contact-cta {
    text-align: center;
  }
  .contact-cta .col-lg-4 {
    margin-top: 20px;
    text-align: center !important;
  }
}
@media (max-width: 767.98px) {
  .featured-service-card,
  .testimonial-card,
  .team-card,
  .news-card {
    padding: 25px 20px;
  }
  .why-choose-us .feature-item .feature-icon {
    margin-bottom: 15px;
  }
  .contact-cta h2 {
    font-size: 28px;
  }
  .contact-cta p {
    font-size: 16px;
  }
}
.footer {
  background-color: #212529;
  padding: 40px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
.footer .footer-logo img {
  height: 40px;
  width: auto;
}
.footer .footer-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer .footer-links a:hover {
  color: #722f43;
}
.footer .footer-meta {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .footer .footer-meta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.footer .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.footer .social-icons a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer .social-icons a:hover {
  color: #722f43;
}
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #722f43;
  color: #fff;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 999;
}
.scroll-top i {
  font-size: 1.2rem;
}
.scroll-top:hover {
  background: #7a2b48;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}
.scroll-top.active {
  opacity: 1;
  visibility: visible;
}
.cta-creative-section {
  background: linear-gradient(135deg, #8d3153 0%, #722f43 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-creative-section .cta-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta-creative-section .cta-text-content {
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
}
.cta-creative-section .cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.cta-creative-section .cta-title .text-highlight {
  color: #1a1a1a;
  position: relative;
}
.cta-creative-section .cta-title .text-highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(26, 26, 26, 0.3);
  z-index: -1;
}
.cta-creative-section .cta-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 0;
}
.cta-creative-section .cta-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #212529;
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  -webkit-box-shadow: 0 4px 15px rgba(26, 26, 26, 0.2);
  box-shadow: 0 4px 15px rgba(26, 26, 26, 0.2);
}
.cta-creative-section .cta-button span {
  position: relative;
  z-index: 2;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.cta-creative-section .cta-button .button-icon {
  margin-left: 10px;
  position: relative;
  z-index: 2;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.cta-creative-section .cta-button .button-icon svg {
  width: 20px;
  height: 20px;
}
.cta-creative-section .cta-button .button-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(204, 182, 142, 0.1)),
    to(rgba(255, 255, 255, 0.2))
  );
  background: linear-gradient(
    90deg,
    rgba(204, 182, 142, 0.1) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.6s
    cubic-bezier(0.79, 0.21, 0.06, 0.81);
  transition: -webkit-transform 0.6s cubic-bezier(0.79, 0.21, 0.06, 0.81);
  transition: transform 0.6s cubic-bezier(0.79, 0.21, 0.06, 0.81);
  transition: transform 0.6s cubic-bezier(0.79, 0.21, 0.06, 0.81),
    -webkit-transform 0.6s cubic-bezier(0.79, 0.21, 0.06, 0.81);
  z-index: 1;
}
.cta-creative-section .cta-button:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(26, 26, 26, 0.3);
  box-shadow: 0 6px 20px rgba(26, 26, 26, 0.3);
}
.cta-creative-section .cta-button:hover span {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}
.cta-creative-section .cta-button:hover .button-icon {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}
.cta-creative-section .cta-button:hover .button-hover-effect {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.cta-creative-section .cta-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.cta-creative-section .cta-decoration .decoration-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.cta-creative-section .cta-decoration .decoration-circle.circle-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -50px;
}
.cta-creative-section .cta-decoration .decoration-circle.circle-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  left: -30px;
  border-color: rgba(204, 182, 142, 0.15);
}
.cta-creative-section .cta-decoration .decoration-dots {
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.2) 1.5px,
    transparent 1.5px
  );
  background-size: 15px 15px;
  top: 30%;
  left: 20%;
  opacity: 0.6;
}
.contact-method-card {
  border: 1px solid rgba(110, 110, 110, 0.5);
  padding: 30px;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact-method-card:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(110, 110, 110, 0.9);
}
.contact-method-card .method-icon {
  width: 60px;
  height: 60px;
  background: rgba(26, 26, 26, 0.9);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 20px;
}
.contact-method-card .method-icon i {
  font-size: 24px;
  color: #fff;
}
.contact-method-card h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #393939;
}
.contact-method-card p {
  color: #5b5b5b;
  margin-bottom: 15px;
}
.contact-method-card .method-link {
  color: #722f43;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.contact-method-card .method-link:hover {
  color: #7a2b48;
  text-decoration: underline;
}
.contact-form-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767.98px) {
  .contact-form-wrapper {
    padding: 30px 20px;
  }
}
.contact-form .form-label {
  font-weight: 500;
  color: #393939;
  margin-bottom: 8px;
}
.contact-form .form-control {
  border: 1px solid rgba(110, 110, 110, 0.3);
  border-radius: 30px;
  padding: 12px 15px;
  margin-bottom: 0px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact-form .form-control:focus {
  border-color: #722f43;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(160, 56, 94, 0.1);
  box-shadow: 0 0 0 0.25rem rgba(160, 56, 94, 0.1);
}
.contact-form textarea.form-control {
  min-height: 150px;
}
.contact-info-wrapper {
  padding-left: 50px;
}
@media (max-width: 767.98px) {
  .contact-info-wrapper {
    padding: 0px;
    margin-top: 30px;
  }
}
.contact-info-wrapper h3 {
  font-size: 1.5rem;
  color: #393939;
  position: relative;
  padding-bottom: 15px;
}
.contact-info-wrapper h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #722f43;
}
.office-card {
  border: 1px solid rgba(110, 110, 110, 0.5);
  padding: 20px;
  margin-bottom: 20px;
}
.office-card h4 {
  font-size: 1.1rem;
  color: #393939;
  margin-bottom: 15px;
}
.office-card .office-address,
.office-card .office-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}
.office-card .office-address i,
.office-card .office-contact i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #1a1a1a;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  font-size: 18px;
  margin-top: 3px;
}
.office-card .office-address p,
.office-card .office-contact p {
  color: #5b5b5b;
  margin-bottom: 0;
}
.office-hours {
  margin-top: 30px;
}
.office-hours h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}
.office-hours .hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.office-hours .hours-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(57, 57, 57, 0.1);
}
.office-hours .hours-list li span:first-child {
  color: #393939;
  font-weight: 500;
}
.office-hours .hours-list li span:last-child {
  color: #5b5b5b;
}
.map-container {
  width: 100%;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.accordion {
  --bs-accordion-border-color: rgba($color-primary, 0.1);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba($color-accent, 0.1);
}
.accordion-button {
  font-weight: 500;
  color: #393939;
  padding: 20px;
}
.accordion-button:not(.collapsed) {
  color: #722f43;
  background-color: rgba(160, 56, 94, 0.05);
}
.accordion-button:after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23A0385E'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body {
  padding: 20px;
  color: #5b5b5b;
}
.why-choose-us-section {
  background-color: #f2f2f2;
}
.why-choose-us-section .heading-primary {
  font-size: 45px;
  font-weight: 700;
  color: #393939;
}
.why-choose-us-section .lead {
  font-size: 1.125rem;
  color: #5b5b5b;
  margin-bottom: 1rem;
}
.why-choose-us-section .button--accent {
  background-color: #722f43;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.why-choose-us-section .button--accent:hover {
  background-color: #7a2b48;
}
.why-choose-us-section .feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 991.98px) {
  .why-choose-us-section .feature-grid {
    grid-template-columns: 1fr;
  }
}
.why-choose-us-section .feature-card {
  position: relative;
  border: 1px solid rgba(110, 110, 110, 0.5);
  padding: 2rem;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 24px rgba(26, 26, 26, 0.05);
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.05);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.why-choose-us-section .feature-card:hover {
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
}
.why-choose-us-section .feature-card .feature-index {
  font-size: 2.5rem;
  font-weight: 700;
  color: #722f43;
  opacity: 0.15;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  pointer-events: none;
}
.why-choose-us-section .feature-card .feature-content {
  position: relative;
  z-index: 2;
}
.why-choose-us-section .feature-card .feature-content h3 {
  color: #1a1a1a;
  font-size: 1.25rem;
}
.why-choose-us-section .feature-card .feature-content p {
  font-size: 1rem;
  color: #5b5b5b;
  margin-bottom: 0;
}
.why-choose-us-section .feature-card .feature-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(160, 56, 94, 0.03);
  z-index: 1;
  pointer-events: none;
}
.why-choose-us-section .feature-image-wrapper {
  position: relative;
  height: 100%;
}
.why-choose-us-section .feature-image-wrapper .feature-image {
  border-radius: 12px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.why-choose-us-section .feature-image-wrapper .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.1);
  border-radius: 12px;
}
@media (max-width: 992px) {
  .cta-creative-section {
    padding: 60px 0;
  }
  .cta-creative-section .cta-title {
    font-size: 2rem;
  }
  .cta-creative-section .cta-subtitle {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .cta-creative-section {
    padding: 50px 0;
  }
  .cta-creative-section .cta-title {
    font-size: 1.8rem;
  }
  .cta-creative-section .cta-button {
    padding: 14px 28px;
  }
  .cta-creative-section .cta-decoration .decoration-circle.circle-1 {
    width: 150px;
    height: 150px;
  }
  .cta-creative-section .cta-decoration .decoration-circle.circle-2 {
    width: 100px;
    height: 100px;
  }
}
.about-wrapper-aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #0a1119;
  height: 100%;
}
.about-aside-top {
  border-left: 1px solid rgba(160, 56, 94, 0.3);
}
.about-aside-top > p,
.about-aside-top h2 {
  padding-left: 40px;
}
.principle-card {
  position: relative;
  border-top: 1px solid rgba(160, 56, 94, 0.3);
  border-radius: 4px;
  padding: 40px 40px 60px 40px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.principle-card:hover {
  border-color: rgba(160, 56, 94, 0.6);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.principle-card .card-content {
  position: relative;
  z-index: 2;
}
.principle-card h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #393939;
  position: relative;
  display: inline-block;
}
.principle-card h3:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #722f43;
}
.principle-card p {
  color: #5b5b5b;
  line-height: 1.7;
}
.about-swiper-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}
.slide-btn-prev,
.slide-btn-next {
  position: absolute;
  top: calc(100% - 60px);
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1000;
  cursor: pointer;
}
.slide-btn-prev:after,
.slide-btn-next:after {
  display: none;
}
.slide-btn-prev i,
.slide-btn-next i {
  font-size: 24px;
}
.slide-btn-prev:hover,
.slide-btn-next:hover {
  color: #722f43;
}
.slide-btn-next {
  left: 80px;
}
.slide-btn-prev {
  left: 40px;
}
.bg-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 8rem;
  font-weight: 700;
  color: rgba(57, 57, 57, 0.05);
  z-index: 1;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}
.counter-section {
  padding: 90px 0;
  text-align: center;
}
.counter-section .counter-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}
.counter-section .counter-container .counter-item {
  position: relative;
  width: 27%;
  aspect-ratio: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0);
  font-size: 1.5rem;
  font-weight: bold;
  border: 1px solid #3e4a4d;
  overflow: hidden;
  z-index: 1;
}
.counter-section .counter-container .counter-item:not(:first-child) {
  margin-left: -3%;
}
.counter-section .counter-container .counter-item::before {
  content: "";
  position: absolute;
  width: 110%;
  height: 110%;
  border-radius: 50%;
  border: 5px solid #3e4a4d;
  z-index: -1;
}
.counter-section .counter-container .counter-item .counter-content {
  text-align: center;
}
.counter-section
  .counter-container
  .counter-item
  .counter-content
  .counter-number {
  display: block;
  font-size: 72px;
  font-weight: 600;
  color: #3e4a4d;
}
.counter-section
  .counter-container
  .counter-item
  .counter-content
  .counter-text {
  color: #3e4a4d;
  font-size: 24px;
  font-weight: 400;
  margin-top: 5px;
}
.core-values-section {
  position: relative;
  padding: 70px 0;
  background-color: #1a1a1a;
  overflow: hidden;
}
.core-values-section .section-header {
  position: relative;
  z-index: 2;
}
.core-values-section .section-header h2 {
  position: relative;
  display: inline-block;
}
.core-values-section .section-header h2:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #722f43;
}
.value-card {
  position: relative;
  padding: 40px 30px;
  border: 1px solid rgba(160, 56, 94, 0.2);
  background: rgba(33, 37, 41, 0.7);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  height: 100%;
  overflow: hidden;
}
.value-card:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  border-color: rgba(160, 56, 94, 0.3);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.value-card:hover .value-line {
  width: 100%;
  opacity: 1;
}
.value-content {
  position: relative;
  z-index: 2;
}
.value-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.value-content p {
  line-height: 1.7;
}
.value-decoration {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.value-number {
  font-family: "DM Sans", sans-serif;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.02);
}
.value-line {
  width: 0;
  height: 2px;
  background: #722f43;
  -webkit-transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
}
.page-title-banner.dark-banner {
  background: #1a1a1a;
  color: #fff;
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-title-banner.dark-banner .title-content {
  position: relative;
  z-index: 2;
}
.page-title-banner.dark-banner .title-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.page-title-banner.dark-banner .title-content h1 span {
  color: #722f43;
  position: relative;
}
.page-title-banner.dark-banner .breadcrumb-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.9rem;
  margin-top: 20px;
}
.page-title-banner.dark-banner .breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.page-title-banner.dark-banner .breadcrumb-nav a:hover {
  color: #fff;
  text-decoration: underline;
}
.page-title-banner.dark-banner .breadcrumb-nav .divider {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.5);
}
.page-title-banner.dark-banner .breadcrumb-nav .current {
  color: #722f43;
  font-weight: 500;
}
.page-title-banner.dark-banner .title-seprator {
  height: 1px;
  margin-top: 30px;
  width: 100%;
  position: relative;
  background-color: #fff;
}
.page-title-banner.dark-banner .title-seprator::after {
  content: "";
  position: absolute;
  bottom: -1.4px;
  left: 0;
  width: 100px;
  height: 5px;
  background: #722f43;
  z-index: 1;
  opacity: 1;
}
@media (max-width: 992px) {
  .page-title-banner.dark-banner {
    padding: 50px 0 60px;
  }
  .page-title-banner.dark-banner .title-content h1 {
    font-size: 2.2rem;
  }
  .page-title-banner.dark-banner .title-stats {
    margin-top: 30px;
  }
  .page-title-banner.dark-banner .title-stats .stat-item .stat-number {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .page-title-banner.dark-banner {
    text-align: center;
  }
  .page-title-banner.dark-banner .breadcrumb-nav {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .page-title-banner.dark-banner .title-stats {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 576px) {
  .page-title-banner.dark-banner {
    padding: 120px 0 50px;
  }
  .page-title-banner.dark-banner .title-content h1 {
    font-size: 1.8rem;
  }
  .page-title-banner.dark-banner .title-stats {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .page-title-banner.dark-banner .title-stats .line-divider {
    width: 60px;
    height: 1px;
    margin: 15px 0;
  }
}
.services-section {
  overflow: hidden;
}
.services-section .section-intro {
  padding: 80px 15px 40px;
}
.service-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 500px;
}
.service-row.service-row-alt {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.service-image-col {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  position: relative;
}
.service-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.service-row:hover .service-image {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}
.service-content-col {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.service-content {
  max-width: 600px;
  padding: 40px;
  position: relative;
}
.service-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100px;
  width: 200px;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(160, 56, 94, 0.1)),
    to(transparent)
  );
  background: linear-gradient(90deg, rgba(160, 56, 94, 0.1), transparent);
  z-index: -1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.service-row:hover .service-content:before {
  left: -50px;
}
.service-icon-wrapper {
  margin-bottom: 30px;
}
.service-content h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.service-content p {
  margin-bottom: 30px;
  line-height: 1.7;
  font-size: 1.1rem;
}
.service-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #722f43;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.service-link i {
  margin-left: 8px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.service-link:hover {
  color: #c04b76;
}
.service-link:hover i {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}
.services-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.services-list-item {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.75rem;
}

.services-list-item::before {
  content: "\f26f";
  font-family: bootstrap-icons !important;
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #722f43;
}

@media (max-width: 991.98px) {
  .service-row,
  .service-row.service-row-alt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: auto;
  }
  .service-image-col,
  .service-content-col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    min-height: 300px;
  }
  .service-content {
    padding: 30px;
    max-width: 100%;
  }
  .service-content:before {
    left: 0;
    width: 100%;
    height: 200px;
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(160, 56, 94, 0.1)),
      to(transparent)
    );
    background: linear-gradient(180deg, rgba(160, 56, 94, 0.1), transparent);
  }
  .section-intro {
    padding: 60px 15px 30px;
  }
}
@media (max-width: 767.98px) {
  .service-image-col,
  .service-content-col {
    min-height: 250px;
  }
  .service-content {
    padding: 25px 20px;
  }
  .service-content h3 {
    font-size: 1.6rem;
  }
  .service-content p {
    font-size: 1rem;
  }
  .section-intro {
    padding: 50px 15px 20px;
  }
}
.services-section {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.services-section .section-intro {
  padding: 0 15px 40px;
  margin-bottom: 60px;
  text-align: center;
}
.services-section .section-intro .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.services-section .section-intro .section-title span {
  color: #722f43;
}
.services-section .section-intro .section-subtitle {
  font-size: 1.2rem;
}
.service-card-layout .service-card {
  padding: 30px;
  border-radius: 8px;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s,
    -webkit-box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card-layout .service-card.glass-effect {
  background: rgba(33, 37, 41, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.service-card-layout .service-card:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.service-card-layout .service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #fff;
}
.service-card-layout .service-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.7;
}
.service-card-layout .service-card .service-link {
  color: #722f43;
  text-decoration: none;
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.service-card-layout .service-card .service-link i {
  margin-left: 5px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.service-card-layout .service-card .service-link:hover {
  color: #722f43;
}
.service-card-layout .service-card .service-link:hover i {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}
.services-detail-section {
  background-color: #f2f2f2;
}
.service-detail-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 600px;
}
.service-detail-row.service-detail-row-alt {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.service-detail-content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  padding: 40px 0;
}
.service-detail-content .container {
  max-width: 800px;
}
.service-detail-image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  overflow: hidden;
}
.service-detail-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.service-detail-image:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}
.service-number {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #722f43;
  margin-bottom: 1rem;
}
.service-detail-text {
  margin: 2rem 0;
}
.service-detail-text h3 {
  font-size: 1.5rem;
  color: #393939;
  margin: 2rem 0 1rem;
  position: relative;
}
.service-detail-text h3:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #722f43;
}
.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.service-features li {
  padding: 0.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.service-features li i {
  color: #722f43;
  margin-right: 10px;
  font-size: 1.2rem;
}
.service-benefits {
  margin: 3rem 0;
}
.service-benefits h3 {
  text-align: center;
  margin-bottom: 2rem;
}
.service-benefits h3:after {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.benefit-card {
  background: rgba(160, 56, 94, 0.05);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.benefit-card:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.benefit-card i {
  font-size: 2.5rem;
  color: #722f43;
  margin-bottom: 1rem;
}
.benefit-card h4 {
  color: #393939;
  margin-bottom: 0.5rem;
}
.service-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.package-card {
  background: #fff;
  border: 1px solid rgba(57, 57, 57, 0.1);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.package-card:hover {
  border-color: rgba(160, 56, 94, 0.3);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.package-card h4 {
  color: #393939;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.package-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.package-card ul li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}
.package-card ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #722f43;
  border-radius: 50%;
}
.package-featured {
  border: 2px solid #722f43;
}
.package-featured .popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #722f43;
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.service-cta {
  background: linear-gradient(135deg, #722f43, #67243d);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.service-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.service-cta .lead {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}
.glass-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 25px;
  background: rgba(160, 56, 94, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(160, 56, 94, 0.2);
  border-radius: 50px;
  color: #722f43;
  font-weight: 500;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}
.glass-button span {
  position: relative;
  z-index: 2;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.glass-button i {
  margin-left: 10px;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.glass-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(transparent),
    color-stop(rgba(160, 56, 94, 0.2)),
    to(transparent)
  );
  background: linear-gradient(
    90deg,
    transparent,
    rgba(160, 56, 94, 0.2),
    transparent
  );
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.glass-button:hover {
  background: rgba(160, 56, 94, 0.2);
  -webkit-box-shadow: 0 5px 15px rgba(160, 56, 94, 0.1);
  box-shadow: 0 5px 15px rgba(160, 56, 94, 0.1);
}
.glass-button:hover span {
  -webkit-transform: translateX(-5px);
  transform: translateX(-5px);
}
.glass-button:hover i {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}
.glass-button:hover:before {
  left: 100%;
}
.glass-button-large {
  padding: 15px 35px;
  font-size: 1.1rem;
}
@media (max-width: 991.98px) {
  .service-hero {
    height: 300px;
  }
  .service-hero h1 {
    font-size: 2.5rem;
  }
  .service-detail-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: auto;
  }
  .service-detail-content,
  .service-detail-image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .service-detail-image {
    height: 300px;
  }
}
@media (max-width: 767.98px) {
  .service-hero {
    height: 250px;
  }
  .service-hero h1 {
    font-size: 2rem;
  }
  .service-hero .lead {
    font-size: 1.2rem;
  }
  .service-detail-content {
    padding: 30px 0;
  }
  .benefit-grid,
  .service-packages {
    grid-template-columns: 1fr;
  }
  .service-cta {
    padding: 3rem 0;
  }
  .service-cta h2 {
    font-size: 2rem;
  }
}
.service-hero-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.service-hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.85) 0%,
    rgba(33, 37, 41, 0.9) 100%
  );
  z-index: 1;
}
.service-hero-section .container {
  position: relative;
  z-index: 2;
}
.service-hero-section .breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  border-radius: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.service-hero-section .breadcrumb-item {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Manrope", sans-serif;
}
.service-hero-section .breadcrumb-item.active {
  color: #fff;
  font-weight: 500;
}
.service-hero-section .breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.service-hero-section .breadcrumb-item a:hover {
  color: #722f43;
}
.service-hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 1.5rem 0;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991.98px) {
  .service-hero-section h1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 767.98px) {
  .service-hero-section h1 {
    font-size: 2.2rem;
  }
}
.service-hero-section .lead {
  font-size: 1.5rem;
  max-width: 600px;
  margin-bottom: 2rem;
  opacity: 0.9;
  font-family: "DM Sans", sans-serif;
}
@media (max-width: 767.98px) {
  .service-hero-section .lead {
    font-size: 1.2rem;
  }
}
.service-hero-section .service-highlights {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem;
}
.service-hero-section .service-highlights .highlight-card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.service-hero-section .service-highlights .highlight-card:hover {
  background: rgba(255, 255, 255, 0.2);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}
.service-hero-section .service-highlights .highlight-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #722f43;
  display: inline-block;
}
.service-hero-section .service-highlights .highlight-card h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: "Manrope", sans-serif;
}
.service-hero-section .service-highlights .highlight-card p {
  opacity: 0.8;
  margin-bottom: 0;
  font-size: 0.95rem;
  font-family: "DM Sans", sans-serif;
}
.approach-section {
  position: relative;
  background: linear-gradient(135deg, #f9fafc 0%, #f0f4f9 100%);
  padding: 6rem 0;
}
.approach-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.approach-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
  font-family: "Manrope", sans-serif;
}
.approach-section .section-header .lead {
  font-size: 1.25rem;
  color: #5b5b5b;
  max-width: 700px;
  margin: 0 auto;
  font-family: "DM Sans", sans-serif;
}
.approach-section .approach-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.approach-section .approach-steps .step {
  border: 1px solid rgba(110, 110, 110, 0.5);
  padding: 2.5rem 1.5rem;
  text-align: center;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  z-index: 1;
}
.approach-section .approach-steps .step:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.approach-section .approach-steps .step:hover .step-number {
  background-color: #1a1a1a;
  color: #fff;
}
.approach-section .approach-steps .step .step-number {
  font-size: 17px;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  background-color: #e7e7e7;
  position: absolute;
  top: -29px;
  left: 50%;
  -webkit-transform: translatex(-50%);
  transform: translatex(-50%);
  width: 57px;
  height: 57px;
  line-height: 57px;
  border-radius: 1000px;
  text-align: center;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.approach-section .approach-steps .step h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
  font-family: "Manrope", sans-serif;
}
.approach-section .approach-steps .step p {
  color: #5b5b5b;
  margin-bottom: 0;
}
.case-studies-section {
  padding: 6rem 0;
  background: #fff;
}
.case-studies-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.case-studies-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
  font-family: "Manrope", sans-serif;
}
.case-studies-section .section-header .lead {
  font-size: 1.25rem;
  color: #5b5b5b;
  font-family: "DM Sans", sans-serif;
}
.case-studies-section .case-study-card {
  border: 1px solid rgba(110, 110, 110, 0.5);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid rgba(26, 26, 26, 0.1);
}
.case-studies-section .case-study-card:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.case-studies-section .case-study-card .case-study-image {
  height: 250px;
  overflow: hidden;
}
.case-studies-section .case-study-card .case-study-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.case-studies-section .case-study-card:hover .case-study-image img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.case-studies-section .case-study-card .case-study-content {
  padding: 1.5rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.case-studies-section .case-study-card .case-study-content h3 {
  position: relative;
  border-bottom: 1px solid rgba(110, 110, 110, 0.5);
  font-size: 1.5rem;
  font-weight: 600;
  padding-bottom: 21px;
  margin-bottom: 23px;
  color: #1a1a1a;
  font-family: "Manrope", sans-serif;
}
.case-studies-section .case-study-card .case-study-content h3:before {
  position: absolute;
  content: "";
  left: 0;
  -webkit-transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  bottom: -1.2px;
  height: 2px;
  background-color: #722f43;
  width: 60px;
}
.case-studies-section .case-study-card .case-study-content p {
  color: #5b5b5b;
  margin-bottom: 1.5rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-family: "DM Sans", sans-serif;
}
.case-studies-section .case-study-card .case-study-content .results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}
.case-studies-section .case-study-card .case-study-content .results span {
  background: rgba(160, 56, 94, 0.1);
  color: #722f43;
  padding: 0.5rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
}
.case-studies-section
  .case-study-card
  .case-study-content
  .results
  span
  strong {
  font-weight: 700;
}
.faq-section {
  padding: 6rem 0;
  background: #f2f2f2;
}
.faq-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.faq-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
  font-family: "Manrope", sans-serif;
}
.faq-section .section-header .lead {
  font-size: 1.25rem;
  color: #5b5b5b;
  font-family: "DM Sans", sans-serif;
}
.faq-section .accordion {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 3rem;
}
.faq-section .accordion-item {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  border-top: 1px solid rgba(110, 110, 110, 0.5);
  border-radius: 0;
  overflow: hidden;
}
.faq-section .accordion-item:last-child {
  border-bottom: 1px solid rgba(110, 110, 110, 0.5);
}
.faq-section .accordion-header {
  padding: 0;
}
.faq-section .accordion-btn {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1rem;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  border: none;
  background: none;
  font-family: "Manrope", sans-serif;
  cursor: pointer;
}
.faq-section .accordion-btn:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.faq-section .accordion-btn:not(.collapsed) {
  color: #722f43;
}
.faq-section .accordion-btn:not(.collapsed)::after {
  font-size: 24px;
  right: 1rem;
  top: 0.75rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  background-image: none;
  content: "";
  font-family: bootstrap-icons !important;
}
.faq-section .accordion-btn::after {
  content: "";
  font-size: 24px;
  font-family: bootstrap-icons !important;
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: none;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.faq-section .accordion-body {
  padding: 0 1.5rem 1.5rem;
  color: #5b5b5b;
  line-height: 1.7;
  font-family: "DM Sans", sans-serif;
}
.service-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #722f43 0%, #67243d 100%);
  position: relative;
  overflow: hidden;
}
.service-cta-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.service-cta-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.service-cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
  font-family: "Manrope", sans-serif;
}
.service-cta-section .lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 2rem;
  font-family: "DM Sans", sans-serif;
}
.service-cta-section .btn-light {
  background: #fff;
  color: #722f43;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  border: none;
  font-family: "Manrope", sans-serif;
}
.service-cta-section .btn-light:hover {
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991.98px) {
  .service-hero-section {
    text-align: center;
  }
  .service-hero-section .service-highlights {
    margin-top: 3rem;
    padding: 0;
  }
  .service-hero-section .lead {
    margin-left: auto;
    margin-right: auto;
  }
  .service-overview-section .service-image {
    -webkit-transform: none !important;
    transform: none !important;
    margin-top: 3rem;
  }
}
@media (max-width: 767.98px) {
  .approach-steps {
    grid-template-columns: 1fr !important;
  }
  .case-studies-section .case-study-card {
    margin-bottom: 1.5rem;
  }
}
.cta-section {
  padding: 50px 0;
  color: #fff;
}
.cta-section h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.8);
}
.cta-section .btn-accent {
  background: #722f43;
  color: #fff;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 500;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cta-section .btn-accent:hover {
  background: #7a2b48;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(160, 56, 94, 0.3);
  box-shadow: 0 5px 15px rgba(160, 56, 94, 0.3);
}
@media (max-width: 992px) {
  .services-section {
    padding: 60px 0;
  }
  .services-section .section-intro {
    margin-bottom: 40px;
  }
  .services-section .section-intro .section-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .cta-section {
    text-align: center;
  }
  .cta-section .btn-accent {
    margin-top: 20px;
  }
}
@media (max-width: 576px) {
  .services-section {
    padding: 50px 0;
  }
  .services-section .service-card {
    padding: 25px;
  }
}
@media (max-width: 576px) {
  body {
    font-size: 14px;
  }
  .heading-primary {
    font-size: 36px;
  }
  .heading-secondary {
    font-size: 28px;
  }
  .heading-info {
    font-size: 1.2rem;
  }
  .theme-mt-sm {
    margin-top: 0.375rem;
  }
  .theme-mt-md {
    margin-top: 0.75rem;
  }
  .theme-mt-lg {
    margin-top: 37.5px;
  }
  .theme-mt-xl {
    margin-top: 52.5px;
  }
  .theme-mb-sm {
    margin-bottom: 0.375rem;
  }
  .theme-mb-md {
    margin-bottom: 0.75rem;
  }
  .theme-mb-lg {
    margin-bottom: 37.5px;
  }
  .theme-mb-xl {
    margin-bottom: 52.5px;
  }
  .service-card {
    padding: 40px;
  }
  .swiper-slider-nav {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .about-section {
    padding-top: 0;
  }
  .about-section .row {
    padding: 0 15px;
  }
  .client-section {
    padding-top: 0;
  }
  .header .navbar-toggler {
    background: #fff;
    height: 45px;
    width: 50px;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .header .navbar {
    background-color: rgba(26, 26, 26, 0.5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }
  .header .navbar .navbar-collapse {
    padding: 30px 0;
  }
  .testimonials.theme-bg-dark.theme-text-secondary {
    margin-bottom: 70px;
  }
  .header .navbar-brand img {
    height: 35px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  .heading-primary {
    font-size: 40.5px;
  }
  .heading-secondary {
    font-size: 31.5px;
  }
  .heading-info {
    font-size: 1.35rem;
  }
  .theme-mt-sm {
    margin-top: 0.4375rem;
  }
  .theme-mt-md {
    margin-top: 0.875rem;
  }
  .theme-mt-lg {
    margin-top: 43.75px;
  }
  .theme-mt-xl {
    margin-top: 61.25px;
  }
  .theme-mb-sm {
    margin-bottom: 0.4375rem;
  }
  .theme-mb-md {
    margin-bottom: 0.875rem;
  }
  .theme-mb-lg {
    margin-bottom: 43.75px;
  }
  .theme-mb-xl {
    margin-bottom: 61.25px;
  }
}
@media (max-width: 992px) {
  body {
    font-size: 16px;
  }
  .heading-primary {
    font-size: 31.5px;
  }
  .heading-secondary {
    font-size: 28px;
  }
  .heading-info {
    font-size: 1.5rem;
  }
  .theme-mt-sm {
    margin-top: 0.5rem;
  }
  .theme-mt-md {
    margin-top: 1rem;
  }
  .theme-mt-lg {
    margin-top: 50px;
  }
  .theme-mt-xl {
    margin-top: 70px;
  }
  .theme-mb-sm {
    margin-bottom: 0.5rem;
  }
  .theme-mb-md {
    margin-bottom: 1rem;
  }
  .theme-mb-lg {
    margin-bottom: 50px;
  }
  .theme-mb-xl {
    margin-bottom: 70px;
  }
}
@media (min-width: 1200px) {
  body {
    font-size: 18px;
  }
  .heading-primary {
    font-size: 49.5px;
  }
  .heading-secondary {
    font-size: 38.5px;
  }
  .heading-info {
    font-size: 1.65rem;
  }
  .theme-mt-sm {
    margin-top: 0.625rem;
  }
  .theme-mt-md {
    margin-top: 1.25rem;
  }
  .theme-mt-lg {
    margin-top: 62.5px;
  }
  .theme-mt-xl {
    margin-top: 87.5px;
  }
  .theme-mb-sm {
    margin-bottom: 0.625rem;
  }
  .theme-mb-md {
    margin-bottom: 1.25rem;
  }
  .theme-mb-lg {
    margin-bottom: 62.5px;
  }
  .theme-mb-xl {
    margin-bottom: 87.5px;
  }
}
