@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
:root {
  --main-color: #000024;
  --body-bg: #FFF;
  --navbar-bg: #FFF;
  --icon-active: #2c2f32;
  --icon-idle: #8b88ff;
  --p-color: #071c1f;
  --subp-color: #adafca;
  --link-color: #6956e5;
  --a-light: #FFF;
  --shadow-color: rgba(94, 92, 154, 0.0588235294);
  --border-color: #eaeaf5;
  --sub-light: #fcfcfd;
  --border-input: #dedeea;
}

.dark-mode {
  --main-color: #6956e5;
  --body-bg: #151521;
  --navbar-bg: #1e1e2d;
  --icon-active: #FFF;
  --icon-idle: #8b88ff;
  --p-color: #FFF;
  --subp-color: #9aa4bf;
  --link-color: #6956e5;
  --a-light: #FFF;
  --shadow-color: rgba(0, 0, 0, 0.0588235294);
  --border-color: #2f3749;
  --sub-light: #21283b;
  --border-input: #3f485f;
}

.form-group {
  width: 100%;
  position: relative;
  margin: 0;
}
.form-group label {
  color: #adafca;
  font-size: 0.75rem;
  font-weight: 600;
  position: absolute;
  top: 16px;
  right: 20px;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  display: block;
  margin: 0;
  line-height: 1em;
}
@media (max-width: 991.98px) {
  .form-group label {
    top: 15px;
    right: 18px;
    font-size: 0.7rem;
  }
}
@media (max-width: 575.98px) {
  .form-group label {
    top: 14px;
    right: 15px;
    font-size: 0.7rem;
  }
}
.form-group .form-control {
  height: 50px;
  padding: 7px 20px 7px 20px;
  background-color: #ffffff;
  border: 1px solid #ebebeb;
  color: #3e3f5e;
  transition: border-color 0.2s ease-in-out;
  width: 100%;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  .form-group .form-control {
    height: 48px;
    padding: 7px 18px 7px 18px;
    font-size: 0.8rem;
  }
}
@media (max-width: 575.98px) {
  .form-group .form-control {
    height: 45px;
    padding: 7px 15px 7px 15px;
    font-size: 0.8rem;
  }
}
.form-group .form-control:focus {
  border-color: #000024;
  box-shadow: none;
  outline: none;
}
.form-group .form-control::-moz-placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.8rem;
}
.form-group .form-control::placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.8rem;
}
@media (max-width: 575.98px) {
  .form-group .form-control::-moz-placeholder {
    font-size: 0.75rem;
  }
  .form-group .form-control::placeholder {
    font-size: 0.75rem;
  }
}
.form-group select {
  cursor: pointer;
}

.create-account-btn {
  text-decoration: none;
  width: 100%;
  margin: auto;
  color: #FFF;
  display: inline-block;
  height: 43px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  line-height: 43px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  background-color: #7868e6;
  border: 0;
}
@media (max-width: 991.98px) {
  .create-account-btn {
    height: 42px;
    line-height: 42px;
    font-size: 0.68rem;
  }
}
@media (max-width: 575.98px) {
  .create-account-btn {
    height: 40px;
    line-height: 40px;
    font-size: 0.65rem;
    border-radius: 8px;
  }
}
.create-account-btn svg {
  height: 18px;
  margin-left: 2px;
}
@media (max-width: 575.98px) {
  .create-account-btn svg {
    height: 16px;
  }
}
.create-account-btn svg path {
  fill: #FFF;
}
.create-account-btn:hover {
  background-color: #7868e6;
}

.form-check {
  display: flex;
  margin: 10px 5px 10px 0;
}
@media (max-width: 575.98px) {
  .form-check {
    margin: 8px 5px 8px 0;
  }
}
.form-check input {
  background-color: #fff;
  border: 1px solid #dedeea;
  height: 17px;
  width: 16px;
  position: unset;
  margin: 3px 0 0 5px;
}
@media (max-width: 575.98px) {
  .form-check input {
    height: 16px;
    width: 15px;
  }
}
.form-check p {
  color: #2c2f32;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 22px;
  cursor: pointer;
  display: block;
  margin: 0;
}
@media (max-width: 991.98px) {
  .form-check p {
    font-size: 0.85rem;
    line-height: 20px;
  }
}
@media (max-width: 575.98px) {
  .form-check p {
    font-size: 0.8rem;
    line-height: 18px;
  }
}
.form-check p a {
  text-decoration: none;
  color: #FFF;
}

p.text {
  margin-top: 30px;
  font-size: 0.875rem;
  line-height: 1.7142857143em;
  font-weight: 500;
  color: var(--p-color);
}
@media (max-width: 991.98px) {
  p.text {
    margin-top: 25px;
    font-size: 0.85rem;
  }
}
@media (max-width: 575.98px) {
  p.text {
    margin-top: 20px;
    font-size: 0.8rem;
  }
}
p.text a {
  text-decoration: none;
  color: #6956e5;
  font-weight: 700;
}

.active-input label {
  padding: 0 6px;
  font-size: 0.55rem;
  top: 9px;
  right: 20px;
}
@media (max-width: 991.98px) {
  .active-input label {
    right: 18px;
    font-size: 0.5rem;
  }
}
@media (max-width: 575.98px) {
  .active-input label {
    right: 15px;
    font-size: 0.5rem;
    padding: 0 4px;
  }
}

[lang=en] .form-group label {
  right: auto;
  left: 20px;
}
@media (max-width: 991.98px) {
  [lang=en] .form-group label {
    left: 18px;
  }
}
@media (max-width: 575.98px) {
  [lang=en] .form-group label {
    left: 15px;
  }
}
[lang=en] .create-account-btn svg {
  margin-left: 0;
  margin-right: 2px;
}
[lang=en] .active-input label {
  right: auto;
  left: 20px;
}
@media (max-width: 991.98px) {
  [lang=en] .active-input label {
    left: 18px;
  }
}
@media (max-width: 575.98px) {
  [lang=en] .active-input label {
    left: 15px;
  }
}

@font-face {
  font-family: "en";
  font-style: normal;
  src: url(assets/fonts/din-regular.ttf);
}
@font-face {
  font-family: "num";
  font-style: normal;
  src: url(assets/fonts/AGENCYB.TTF);
}
.font-en {
  font-family: "en";
}

@font-face {
  font-family: "ar";
  font-style: normal;
  src: url(assets/fonts/29ltbukraregular.ttf);
}
@font-face {
  font-family: "q";
  font-style: normal;
  src: url(assets/fonts/Qatar2022Arabic-Bold.ttf);
}
.page-header {
  height: 40vh !important;
  margin: 0 !important;
}
@media (max-width: 575.98px) {
  .page-header {
    height: 30vh !important;
  }
}

.header {
  position: relative;
  z-index: 99;
  background: transparent;
  width: 100%;
}
@media (max-width: 380px) {
  .header .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.header .navbar {
  background: transparent;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0 12px 0;
  flex-wrap: nowrap;
}
@media (max-width: 1199.98px) {
  .header .navbar {
    padding: 10px 0;
  }
}
@media (max-width: 991.98px) {
  .header .navbar {
    padding: 12px 15px;
  }
}
@media (max-width: 575.98px) {
  .header .navbar {
    padding: 12px 8px;
  }
}
@media (max-width: 380px) {
  .header .navbar {
    padding: 10px 0;
  }
}
.header .navbar .nav-mobile-icon {
  display: none;
}
@media (max-width: 991.98px) {
  .header .navbar .nav-mobile-icon {
    display: none;
  }
}
.header .navbar .nav-mobile-icon svg {
  fill: #FFF;
}
.header .navbar .nav-part {
  display: flex;
  align-items: center;
}
.header .navbar .nav-logo {
  position: relative;
}
@media (max-width: 991.98px) {
  .header .navbar .nav-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}
.header .navbar .nav-logo .nav-mobile-icon {
  display: none;
}
@media (max-width: 991.98px) {
  .header .navbar .nav-logo .nav-mobile-icon {
    display: none;
  }
}
.header .navbar .nav-logo .nav-mobile-icon svg {
  height: 24px;
  width: 24px;
  fill: #FFF;
}
.header .navbar .nav-logo .nav-logo-container {
  position: relative;
  z-index: 10;
  width: 190px;
}
@media (max-width: 1199.98px) {
  .header .navbar .nav-logo .nav-logo-container {
    width: 150px;
  }
}
@media (max-width: 991.98px) {
  .header .navbar .nav-logo .nav-logo-container {
    width: auto;
  }
}
.header .navbar .nav-logo .nav-logo-container a {
  text-decoration: none;
  display: flex;
  align-items: center;
  vertical-align: middle;
}
.header .navbar .nav-logo .nav-logo-container img {
  max-width: 100%;
  height: 50px;
  margin-top: 0px;
}
@media (max-width: 1199.98px) {
  .header .navbar .nav-logo .nav-logo-container img {
    height: 30px;
  }
}
.header .navbar .nav-logo .nav-logo-container span {
  color: #bfbfbf;
  font-size: 0.6rem;
  margin-right: 8px;
  font-weight: 200;
  line-height: 16px;
}
.header .navbar .nav-logo .nav-logo-container .main-logo {
  display: block;
}
.header .navbar .nav-logo .nav-logo-container .img-dark {
  display: none;
}
.header .navbar .nav-logo .nav-search-icon {
  display: none;
}
@media (max-width: 991.98px) {
  .header .navbar .nav-logo .nav-search-icon {
    display: block;
  }
}
.header .navbar .nav-logo .nav-search-icon svg {
  height: 24px;
  width: 24px;
  fill: #FFF;
}
.header .navbar .nav-logo .nav-search-icon .switch-langs {
  display: flex;
  align-items: center;
}
.header .navbar .nav-logo .nav-search-icon .switch-langs h6.page-lang {
  color: #FFF;
  font-weight: 900;
  font-family: "ar-reg";
  margin-bottom: 0;
  margin-top: 6px;
}
.header .navbar .nav-logo .nav-search-icon .page-lang {
  color: #FFF;
  text-decoration: underline;
}
.header .navbar .nav-links {
  margin-top: 0;
  direction: ltr;
  background: rgba(255, 255, 255, 0.19);
  border-radius: 6px;
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(5px);
  padding: 12px 15px 12px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 25px;
  margin-left: 20px;
  width: 100%;
}
.header .navbar .nav-links .nav-links-search {
  margin-right: 0;
  cursor: pointer;
}
.header .navbar .nav-links .nav-links-search svg {
  height: 18px;
  width: 18px;
  fill: #FFF;
}
@media (max-width: 991.98px) {
  .header .navbar .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 5;
    overflow: auto;
    text-align: center;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    display: none;
  }
}
.header .navbar .nav-links .nav-close {
  display: none;
}
@media (max-width: 991.98px) {
  .header .navbar .nav-links .nav-close {
    display: block;
    position: fixed;
    top: 20px;
    left: 20px;
  }
}
.header .navbar .nav-links .nav-close svg {
  height: 25px;
  width: 25px;
  cursor: pointer;
}
.header .navbar .nav-links .nav-close svg g [fill] {
  fill: #FFF;
}
.header .navbar .nav-links ul {
  display: flex;
  margin-bottom: 0;
  padding: 0;
  justify-content: center;
  margin-top: 0;
}
.header .navbar .nav-links ul li {
  padding: 0 12px;
  display: flex;
  align-items: center;
  position: relative;
}
.header .navbar .nav-links ul li:hover a, .header .navbar .nav-links ul li:hover span {
  color: #000024;
}
.header .navbar .nav-links ul li:hover .nav-link-dropdown {
  transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1199.98px) {
  .header .navbar .nav-links ul li {
    padding: 0 7px;
  }
}
@media (max-width: 991.98px) {
  .header .navbar .nav-links ul li {
    padding: 10px 15px;
    transform: perspective(400px) rotateY(-15deg);
    z-index: -1;
    margin: 7px 0;
  }
}
.header .navbar .nav-links ul li a, .header .navbar .nav-links ul li span {
  color: #FFF;
  position: relative;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 1199.98px) {
  .header .navbar .nav-links ul li a, .header .navbar .nav-links ul li span {
    font-size: 0.8rem;
  }
}
.header .navbar .nav-links ul li a:hover, .header .navbar .nav-links ul li span:hover {
  color: #009578;
}
.header .navbar .nav-links ul li svg {
  height: 22px;
  width: 22px;
  margin: -1px 0px 0 0px;
  fill: #FFF;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.header .navbar .nav-links ul li .li-links {
  position: absolute;
  top: 0;
  right: 0;
  text-align: right;
  opacity: 0;
  visibility: hidden;
  transform: translate(0, -22px);
  transition: all 0.3s ease-in-out;
}
.header .navbar .nav-links ul li .li-links ul {
  display: block;
  background: var(--body-bg);
  width: 150px;
  display: block;
  text-align: right;
  padding: 10px 15px;
  border-radius: 8px;
  margin-top: 28px;
}
@media (max-width: 1199.98px) {
  .header .navbar .nav-links ul li .li-links ul {
    margin-top: 40px;
  }
}
.header .navbar .nav-links ul li .li-links ul li {
  display: block;
  margin: 8px 0;
  transition: all 0.3s ease-in-out;
  padding: 0 0;
}
.header .navbar .nav-links ul li .li-links ul li:hover {
  padding-right: 14px;
}
.header .navbar .nav-links ul li .li-links ul li:hover a {
  color: #000024;
}
.header .navbar .nav-links ul li .li-links ul li a {
  color: var(--p-color);
}
.header .navbar .nav-links ul li .nav-link-dropdown {
  position: absolute;
  top: 30px;
  left: 4px;
  background: #FFF;
  z-index: 100;
  padding: 10px 10px 10px 10px;
  border-radius: 8px;
  box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  transform: translate(0, -10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  width: 200px;
}
@media (max-width: 991.98px) {
  .header .navbar .nav-links ul li .nav-link-dropdown {
    display: none;
  }
}
.header .navbar .nav-links ul li .nav-link-dropdown ul {
  display: block;
  text-align: left;
}
.header .navbar .nav-links ul li .nav-link-dropdown ul li {
  transition: all 0.2s ease-in-out;
  margin: 10px 0;
}
.header .navbar .nav-links ul li .nav-link-dropdown ul li:hover a {
  color: #000024;
}
.header .navbar .nav-links ul li .nav-link-dropdown ul li a {
  font-size: 0.9rem;
  transition: all 0.2s ease-in-out;
  color: #FFF;
}
.header .navbar .nav-links ul li .mega-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #FFF;
  z-index: 100;
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 10px 60px 0 rgba(94, 92, 154, 0.15);
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  width: 750px;
  max-width: calc(100vw - 40px);
  margin-top: 10px;
  pointer-events: none;
}
@media (max-width: 1199.98px) {
  .header .navbar .nav-links ul li .mega-menu {
    width: 700px;
  }
}
@media (max-width: 991.98px) {
  .header .navbar .nav-links ul li .mega-menu {
    display: none;
  }
}
.header .navbar .nav-links ul li .mega-menu.active {
  transform: translateY(15px);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header .navbar .nav-links ul li .mega-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}
.header .navbar .nav-links ul li .mega-menu:has(.mega-menu-4-columns) {
  width: 900px;
}
@media (max-width: 1199.98px) {
  .header .navbar .nav-links ul li .mega-menu:has(.mega-menu-4-columns) {
    width: 850px;
  }
}
.header .navbar .nav-links ul li .mega-menu .mega-menu-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 30px 30px;
}
@media (max-width: 1199.98px) {
  .header .navbar .nav-links ul li .mega-menu .mega-menu-content {
    padding: 35px 25px;
  }
}
.header .navbar .nav-links ul li .mega-menu .mega-menu-content.mega-menu-4-columns {
  grid-template-columns: repeat(4, 1fr) !important;
}
.header .navbar .nav-links ul li .mega-menu .mega-menu-content .mega-menu-column {
  padding: 0 10px;
}
.header .navbar .nav-links ul li .mega-menu .mega-menu-content .mega-menu-column:last-of-type {
  border-right: none;
}
@media (max-width: 1199.98px) {
  .header .navbar .nav-links ul li .mega-menu .mega-menu-content .mega-menu-column {
    padding: 0 10px;
  }
}
.header .navbar .nav-links ul li .mega-menu .mega-menu-content .mega-menu-column h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ebebeb;
}
@media (max-width: 1199.98px) {
  .header .navbar .nav-links ul li .mega-menu .mega-menu-content .mega-menu-column h4 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    padding-bottom: 12px;
  }
}
.header .navbar .nav-links ul li .mega-menu .mega-menu-content .mega-menu-column ul {
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header .navbar .nav-links ul li .mega-menu .mega-menu-content .mega-menu-column ul li {
  margin: 2px 0;
  padding: 0;
}
@media (max-width: 1199.98px) {
  .header .navbar .nav-links ul li .mega-menu .mega-menu-content .mega-menu-column ul li {
    margin: 10px 0;
  }
}
.header .navbar .nav-links ul li .mega-menu .mega-menu-content .mega-menu-column ul li a {
  color: #646573;
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: block;
  padding: 5px 0;
}
@media (max-width: 1199.98px) {
  .header .navbar .nav-links ul li .mega-menu .mega-menu-content .mega-menu-column ul li a {
    font-size: 0.8rem;
  }
}
.header .navbar .nav-links ul li .mega-menu .mega-menu-content .mega-menu-column ul li a:hover {
  color: #000024;
  padding-right: 8px;
}
.header .navbar .nav-links ul li.mega-menu-item .mega-menu-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}
.header .navbar .nav-links ul li.mega-menu-item .mega-menu-toggle .mega-menu-arrow {
  height: 14px;
  width: 14px;
  fill: #FFF;
  transition: all 0.3s ease-in-out;
  margin-right: 4px;
}
@media (max-width: 1199.98px) {
  .header .navbar .nav-links ul li.mega-menu-item .mega-menu-toggle .mega-menu-arrow {
    height: 12px;
    width: 12px;
  }
}
.header .navbar .nav-links ul li.mega-menu-item .mega-menu-toggle:hover .mega-menu-arrow {
  fill: #009578;
}
.header .navbar .nav-links ul li.mega-menu-item.menu-active .mega-menu-toggle .mega-menu-arrow {
  transform: rotate(180deg);
  fill: #009578;
}
.header .navbar .nav-links ul .hover-drop:hover .li-links {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
.header .navbar .nav-links ul .nav-link-active a {
  color: #FFF;
}
.header .navbar .nav-links ul .nav-link-active a:before {
  background: #000248;
  border-color: #000248;
}
.header .navbar .nav-actions .book-btn {
  padding: 10px 30px 10px 30px;
  color: #000;
  background-color: #FFF;
  border-radius: 50px;
  width: 200px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-right: 15px;
  backdrop-filter: blur(130px);
  -webkit-backdrop-filter: blur(5px);
}
.header .navbar .nav-actions .book-btn svg {
  height: 18px;
  width: 18px;
  margin-right: 8px;
  fill: #000;
}
.header .navbar .nav-actions .book-btn span {
  display: inline-block;
  padding-right: 6px;
  margin-top: 0;
}
@media (max-width: 991.98px) {
  .header .navbar .nav-actions .book-btn {
    display: none;
  }
}
.header .navbar .nav-actions-lang {
  width: 175px;
}
.header .navbar .nav-actions-lang .icon {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.header .navbar .nav-actions-lang .icon svg {
  fill: #FFF;
  height: 20px;
  width: 20px;
  margin: 0 10px;
  transition: fill 0.2s ease, transform 0.2s ease;
}
@media (max-width: 575.98px) {
  .header .navbar .nav-actions-lang .icon svg {
    margin: 0 8px;
  }
}
.header .navbar .nav-actions-lang .icon span {
  color: #FFF;
  transition: color 0.2s ease;
}
.header .navbar .nav-actions-lang .switch-langs h6 {
  margin: 1px 0 0 0;
  color: #FFF;
  font-family: "en";
}
.header .navbar .nav-actions-lang .nav-toggler {
  display: none;
}
@media (max-width: 991.98px) {
  .header .navbar .nav-actions-lang .nav-toggler {
    display: block;
  }
}
.header .navbar .nav-actions-lang .li-links {
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  text-align: right;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 100;
  margin-top: 6px;
}
.header .navbar .nav-actions-lang .li-links ul {
  display: block;
  width: 150px;
  min-width: 140px;
  text-align: right;
  padding: 12px 16px;
  border-radius: 12px;
  margin-top: 0;
  background: #FFF;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.header .navbar .nav-actions-lang .li-links ul li {
  display: block;
  margin: 0;
  padding: 0;
  transition: background 0.2s ease;
  border-radius: 8px;
}
.header .navbar .nav-actions-lang .li-links ul li:hover a {
  color: #b52c1f;
}
.header .navbar .nav-actions-lang .li-links ul li a {
  color: #071c1f;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}
.header .navbar .nav-actions-lang .hover-drop {
  margin: 0 10px;
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background 0.2s ease, color 0.2s ease;
  min-height: 40px;
  outline: none;
}
.header .navbar .nav-actions-lang .hover-drop span {
  color: #FFF;
  position: relative;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: color 0.2s ease;
  cursor: pointer;
}
.header .navbar .nav-actions-lang .hover-drop svg {
  height: 16px;
  width: 16px;
  margin: 0;
  fill: #FFF;
  cursor: pointer;
  transition: fill 0.2s ease, transform 0.2s ease;
}
.header .navbar .nav-actions-lang .hover-drop:hover {
  background: rgba(255, 255, 255, 0.15);
}
.header .navbar .nav-actions-lang .hover-drop:hover span, .header .navbar .nav-actions-lang .hover-drop:hover svg {
  color: #FFF;
  fill: #FFF;
}
.header .navbar .nav-actions-lang .hover-drop:hover .li-links {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .navbar .nav-actions-lang .hover-drop:active {
  background: rgba(255, 255, 255, 0.25);
}
.header .navbar .nav-actions-lang .hover-drop:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}
.header .navbar .nav-actions-lang .hover-drop:focus-within .li-links {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .navbar .nav-big-nav-icon {
  cursor: pointer;
  display: none;
}
@media (max-width: 991.98px) {
  .header .navbar .nav-big-nav-icon {
    display: block;
  }
}
.header .navbar .nav-big-nav-icon svg {
  height: 25px;
  width: 25px;
  fill: #FFF;
}

.fixed-header:after {
  display: none;
}

.big-nav {
  width: 350px;
  max-width: 100%;
  padding-top: 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99999;
  box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  background: #FFF;
  height: 100vh;
  transition: all 0.4s ease-in-out;
  transition-delay: 0.1s;
  overflow: auto;
  direction: rtl;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 767.98px) {
  .big-nav {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .big-nav {
    width: 100%;
    height: 100vh;
  }
}
.big-nav .big-nav-header-title {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px 15px 20px;
  border-bottom: 1px solid #ebebeb;
  align-items: center;
  background: #FFF;
}
.big-nav .big-nav-header-title .nav-logo-container a {
  text-decoration: none;
  color: #000;
}
.big-nav .big-nav-header-title .nav-logo-container a img {
  height: 40px;
}
@media (max-width: 575.98px) {
  .big-nav .big-nav-header-title .nav-logo-container a img {
    height: 40px;
  }
}
.big-nav .big-nav-header-title .close-big-nav svg {
  fill: #000;
  width: 30px;
  cursor: pointer;
}
.big-nav .big-nav-header-title .close-link-popup svg {
  fill: #000;
}
.big-nav .big-nav-search .nav-search {
  width: 100%;
  padding: 10px 10px;
  display: flex;
}
.big-nav .big-nav-search .nav-search form {
  width: 100%;
}
.big-nav .big-nav-search .nav-search .form-group {
  width: 100%;
  position: relative;
  margin: 0;
}
.big-nav .big-nav-search .nav-search .form-group .form-control {
  height: 43px;
  padding: 0 40px 0 20px;
  background-color: #ffffff;
  border: 1px solid #ebebeb;
  color: #3e3f5e;
  transition: border-color 0.2s ease-in-out;
  width: 100%;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
}
.big-nav .big-nav-search .nav-search .form-group .form-control:focus {
  border-color: #000024;
  box-shadow: none;
  outline: none;
}
.big-nav .big-nav-search .nav-search .form-group .form-control::-moz-placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.7rem;
}
.big-nav .big-nav-search .nav-search .form-group .form-control::placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.7rem;
}
.big-nav .big-nav-search .nav-search .form-group .search-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0%, -50%);
}
.big-nav .big-nav-search .nav-search .form-group .search-icon svg {
  transform: rotateY(180deg);
  font-size: 0.7rem;
  height: 18px;
  width: 18px;
}
.big-nav .nav-links {
  width: 100%;
  height: 100%;
  position: relative;
}
@media (max-width: 767.98px) {
  .big-nav .nav-links ul {
    overflow: scroll;
    height: calc(100vh - 55px);
  }
}
.big-nav .nav-links ul .ul-head {
  padding-right: 30px;
  color: #adafca;
  font-size: 0.75rem;
  font-weight: 500;
}
.big-nav .nav-links ul li {
  text-decoration: none;
  color: #adafca;
  width: 100%;
  display: block;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  border-top: 1px solid rgba(229, 229, 229, 0.5411764706);
}
.big-nav .nav-links ul li .li-link {
  width: 100%;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.big-nav .nav-links ul li .li-link .link-info {
  white-space: nowrap;
  border-radius: 50px;
  margin: 0;
  transition: all 0.3s ease-in-out 0s;
  display: inline-flex;
  padding: 0 20px 0 0;
}
.big-nav .nav-links ul li .li-link .link-info a {
  text-decoration: none;
  color: #000;
  font-size: 0.9rem;
  line-height: 25px;
  font-weight: 500;
  transition: all 0.3s ease-in-out 0s;
  padding: 17px 0 17px 15px;
}
.big-nav .nav-links ul li .li-link .li-link-icon {
  width: 50px;
  display: flex;
  justify-content: end;
  cursor: pointer;
  padding: 17px 15px 17px 15px;
}
.big-nav .nav-links ul li .li-link .li-link-icon svg {
  height: 16px;
  width: 16px;
  fill: #000;
}
.big-nav .nav-links ul li .nav-link-popup {
  width: 350px;
  padding-top: 0;
  position: fixed;
  top: 0;
  z-index: 20;
  box-shadow: 0 0 40px 0 rgba(94, 92, 154, 0.06);
  background: #FFF;
  height: 100vh;
  transition: all 0.4s ease-in-out;
  transition-delay: 0.1s;
  overflow: auto;
}
@media (max-width: 575.98px) {
  .big-nav .nav-links ul li .nav-link-popup {
    width: 100%;
    height: 100vh;
  }
}
.big-nav .nav-links ul .li-active {
  background-color: #FFF;
  color: #000;
}
.big-nav .nav-links ul .li-active a svg {
  fill: #000024;
}
.big-nav .nav-links ul .li-active a svg g [fill] {
  fill: #000024;
}
.big-nav .nav-links ul .li-active a .svg-icon path {
  fill: #000024;
  stroke: #000024;
}
.big-nav .nav-links ul .li-active a .link-info {
  visibility: visible;
  padding-right: 8px;
}
.big-nav .nav-links ul .li-active a .link-info span {
  color: #000024 !important;
}
.big-nav .nav-links ul .li-active a .link-info span:hover {
  color: #000024;
}
.big-nav .nav-links ul .li-active:hover {
  background: #FFF;
  color: #000024;
}
.big-nav::-webkit-scrollbar {
  display: none;
}

.big-nav-hiddin {
  transform: translate(560px, 0);
  opacity: 0;
  z-index: -1 !important;
}

.close-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(22, 22, 34, 0.6);
  z-index: 9999;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.open-over {
  opacity: 1;
  visibility: visible;
}

.active-dropdown {
  transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}

.home-header {
  position: relative;
  height: 500px;
  width: 100%;
  background: #161b28;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 991.98px) {
  .home-header {
    height: 325px;
  }
}
.home-header .header-overlay {
  height: 100%;
  width: 100%;
}
.home-header .header-content {
  text-align: center;
  color: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 85%;
}
@media (max-width: 991.98px) {
  .home-header .header-content {
    width: 85%;
  }
}
.home-header .header-content figure {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 85px;
  width: 85px;
  text-align: center;
  margin: 0 auto 25px auto;
}
@media (max-width: 991.98px) {
  .home-header .header-content figure {
    margin: 0 auto 15px auto;
    height: 50px;
    width: 50px;
  }
}
.home-header .header-content h1 {
  text-transform: uppercase;
  font-size: 3.5rem;
}
@media (max-width: 991.98px) {
  .home-header .header-content h1 {
    font-size: 3.1rem;
  }
}
@media (max-width: 767.98px) {
  .home-header .header-content h1 {
    font-size: 2.7rem;
  }
}
@media (max-width: 575.98px) {
  .home-header .header-content h1 {
    font-size: 2.4rem;
  }
}

.home-header {
  height: calc(100vh - 108px);
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .home-header {
    height: 75vh;
  }
}
.home-header .header-overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.home-header .swiper-container {
  height: 100%;
  position: relative;
}
.home-header .swiper-container .swiper-wrapper .swiper-slide {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content {
  height: 100%;
  width: 100%;
  display: flex;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
  position: relative;
}
.home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content .swiper-overlay {
  background-image: linear-gradient(to right top, #5f4c1b, #5b412b, #0a0807, #9b7d31, #9b7d31);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.6;
}
.home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content .swiper-slider-content-inner {
  position: relative;
  z-index: 5;
}
.home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content .pretitle {
  text-align: center;
  font-size: 1.6rem;
  color: #fcdb5a;
  word-spacing: 15px;
  margin-bottom: -15px;
}
.home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content h1 {
  color: #FFF;
  font-size: 2.8rem;
  font-weight: 900;
  text-align: center;
  width: 100%;
  margin: 0 auto 15px auto;
}
@media (max-width: 767.98px) {
  .home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content h1 {
    font-size: 1.75rem;
    margin: 0 auto 5px auto;
  }
}
.home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content p {
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 200;
  width: 75%;
  text-align: center;
  margin: auto;
}
@media (max-width: 991.98px) {
  .home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content p {
    width: 80%;
    font-size: 1.2rem;
  }
}
@media (max-width: 767.98px) {
  .home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content p {
    width: 85%;
    font-size: 1.1rem;
  }
}
@media (max-width: 575.98px) {
  .home-header .swiper-container .swiper-wrapper .swiper-slide .swiper-slider-content p {
    width: 95%;
    font-size: 0.9rem;
  }
}

.home-btn {
  background-color: #fcdb5a;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  text-align: center;
  width: 175px;
  margin-top: 25px;
  padding: 15px 25px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
}

.swiper-pagination-bullet-active {
  background: #fcdb5a;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  height: 15px;
  width: 15px;
  border-radius: 50%;
}

.content {
  margin-top: 0;
}

.newsletter {
  background: #FAF9F7;
  padding: 75px 0;
}
@media (max-width: 991.98px) {
  .newsletter {
    padding: 60px 0;
  }
}
@media (max-width: 575.98px) {
  .newsletter {
    padding: 50px 0;
  }
}
.newsletter .newsletter-content .news-line .pretitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: #009578;
}
@media (max-width: 575.98px) {
  .newsletter .newsletter-content .news-line .pretitle {
    font-size: 1rem;
    text-align: center;
  }
}
.newsletter .newsletter-content .news-line h3 {
  font-size: 3.5rem;
  font-weight: 500;
}
@media (max-width: 1199.98px) {
  .newsletter .newsletter-content .news-line h3 {
    font-size: 2.5rem;
  }
}
@media (max-width: 991.98px) {
  .newsletter .newsletter-content .news-line h3 {
    font-size: 2rem;
  }
}
@media (max-width: 575.98px) {
  .newsletter .newsletter-content .news-line h3 {
    font-size: 1.75rem;
    text-align: center;
  }
}
.newsletter .newsletter-content .news-child-line .form-group .form-control {
  padding: 15px 5px 15px 15px;
  font-size: 17px;
  line-height: 22px;
  width: calc(100% - 75px);
  margin-right: auto;
  height: 55px;
  border: unset;
  border-bottom: 1px solid #0a0a0a;
  border-radius: unset;
  background: unset;
  font-family: "en";
}
.newsletter .newsletter-content .news-child-line .form-group .form-control::-moz-placeholder {
  font-size: 1rem;
  color: #918d89;
  font-family: "sf";
}
.newsletter .newsletter-content .news-child-line .form-group .form-control::placeholder {
  font-size: 1rem;
  color: #918d89;
  font-family: "sf";
}
@media (max-width: 575.98px) {
  .newsletter .newsletter-content .news-child-line .form-group .form-control::-moz-placeholder {
    font-size: 0.9rem;
  }
  .newsletter .newsletter-content .news-child-line .form-group .form-control::placeholder {
    font-size: 0.9rem;
  }
}
@media (max-width: 1199.98px) {
  .newsletter .newsletter-content .news-child-line .form-group .form-control {
    width: calc(100% - 25px);
  }
}
@media (max-width: 991.98px) {
  .newsletter .newsletter-content .news-child-line .form-group .form-control {
    width: calc(100% - 60px);
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .newsletter .newsletter-content .news-child-line .form-group .form-control {
    width: 90%;
    margin: 15px auto;
    height: 50px;
    font-size: 15px;
  }
}
@media (max-width: 575.98px) {
  .newsletter .newsletter-content .news-child-line .form-group .form-control {
    width: 100%;
    font-size: 14px;
  }
}
.newsletter .newsletter-content .news-child-line button {
  outline: none;
  width: 150px;
  max-width: 100%;
  background: unset;
  border: unset;
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 35px;
}
.newsletter .newsletter-content .news-child-line button:focus, .newsletter .newsletter-content .news-child-line button:active {
  border: unset;
  box-shadow: unset;
  outline: none;
}
.newsletter .newsletter-content .news-child-line button svg {
  height: 20px;
  width: 20px;
  margin-right: 5px;
  transform: rotate(180deg);
}
@media (max-width: 575.98px) {
  .newsletter .newsletter-content .news-child-line button svg {
    height: 18px;
    width: 18px;
  }
}
@media (max-width: 991.98px) {
  .newsletter .newsletter-content .news-child-line button {
    font-size: 1.2rem;
  }
}
@media (max-width: 767.98px) {
  .newsletter .newsletter-content .news-child-line button {
    margin: 15px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
  }
}
@media (max-width: 575.98px) {
  .newsletter .newsletter-content .news-child-line button {
    width: 100%;
    font-size: 1rem;
    margin-top: 20px;
  }
}

[lang=ar] body {
  direction: rtl;
  text-align: right;
}
[lang=ar] .header .nav-links {
  direction: rtl;
}
[lang=ar] .header .nav-links .nav-link-dropdown {
  left: unset;
  right: 4px;
}
[lang=ar] .header .nav-links .mega-menu {
  right: 0;
  left: auto;
  z-index: 99;
  position: relative;
}
[lang=ar] .header .nav-links .mega-menu .mega-menu-content {
  direction: rtl;
}
[lang=ar] .header .nav-links .mega-menu .mega-menu-content .mega-menu-column {
  border-right: none;
}
[lang=ar] .header .nav-links .mega-menu .mega-menu-content .mega-menu-column:first-of-type {
  border-left: none;
}
[lang=ar] .header .nav-links .mega-menu .mega-menu-content .mega-menu-column ul li a:hover {
  padding-right: 8px;
  padding-left: 0;
}
[lang=ar] .header .search-input {
  padding: 7px 35px 7px 20px;
  direction: rtl;
}
[lang=ar] .header .search-icon {
  left: unset;
  right: 10px;
}

html[lang=en] body,
[lang=en] body {
  direction: ltr;
  text-align: left;
}
html[lang=en] .header .nav-links,
[lang=en] .header .nav-links {
  direction: ltr;
}
html[lang=en] .header .nav-links .nav-link-dropdown,
[lang=en] .header .nav-links .nav-link-dropdown {
  right: unset;
  left: 4px;
}
html[lang=en] .header .nav-links .mega-menu,
[lang=en] .header .nav-links .mega-menu {
  left: 0;
  right: auto;
  z-index: 99;
  position: relative;
}
html[lang=en] .header .nav-links .mega-menu .mega-menu-content,
[lang=en] .header .nav-links .mega-menu .mega-menu-content {
  direction: ltr;
}
html[lang=en] .header .nav-links .mega-menu .mega-menu-content .mega-menu-column,
[lang=en] .header .nav-links .mega-menu .mega-menu-content .mega-menu-column {
  border-left: none;
}
html[lang=en] .header .nav-links .mega-menu .mega-menu-content .mega-menu-column:first-of-type,
[lang=en] .header .nav-links .mega-menu .mega-menu-content .mega-menu-column:first-of-type {
  border-right: none;
}
html[lang=en] .header .nav-links .mega-menu .mega-menu-content .mega-menu-column ul li a:hover,
[lang=en] .header .nav-links .mega-menu .mega-menu-content .mega-menu-column ul li a:hover {
  padding-left: 8px;
  padding-right: 0;
}
html[lang=en] .header .search-input,
[lang=en] .header .search-input {
  padding: 7px 20px 7px 35px;
  direction: ltr;
}
html[lang=en] .header .search-icon,
[lang=en] .header .search-icon {
  right: unset;
  left: 10px;
}
html[lang=en] .big-nav,
[lang=en] .big-nav {
  right: auto;
  left: 0;
  direction: ltr;
}
html[lang=en] .big-nav .big-nav-search .nav-search .form-group .form-control,
[lang=en] .big-nav .big-nav-search .nav-search .form-group .form-control {
  padding: 0 20px 0 40px;
}
html[lang=en] .big-nav .big-nav-search .nav-search .form-group .search-icon,
[lang=en] .big-nav .big-nav-search .nav-search .form-group .search-icon {
  right: auto;
  left: 15px;
}
html[lang=en] .big-nav .big-nav-search .nav-search .form-group .search-icon svg,
[lang=en] .big-nav .big-nav-search .nav-search .form-group .search-icon svg {
  transform: rotateY(0deg);
}

.d-12-none {
  display: block !important;
}
@media (max-width: 1199.98px) {
  .d-12-none {
    display: none !important;
  }
}

.d-12-block {
  display: none !important;
}
@media (max-width: 1199.98px) {
  .d-12-block {
    display: block !important;
  }
}

.index-header {
  background-image: url(assets/images/hero10.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  min-height: 400px;
}
@media (max-width: 575.98px) {
  .index-header {
    min-height: 360px;
  }
}
@media (max-width: 380px) {
  .index-header {
    min-height: 320px;
  }
}
.index-header:after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  background: #000;
  opacity: 0.35;
  transform: rotatex(180deg);
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center center;
  height: 100vh;
}
.index-header .header-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0 75px 0;
}
@media (max-width: 575.98px) {
  .index-header .header-text {
    margin: 10px 0 75px 0;
  }
}
.index-header .header-text p {
  width: 500px;
  margin: 0 0 0 0;
  color: #918D89;
}
.index-header .header-text svg {
  fill: #009578;
  height: 45px;
  width: 45px;
  border: 1px solid #d5d5d5;
  border-radius: 50%;
  padding: 7px;
}
@media (max-width: 575.98px) {
  .index-header .header-text svg {
    display: none;
  }
}
.index-header figure {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 750px;
  width: 100%;
}
@media (max-width: 1199.98px) {
  .index-header figure {
    height: 650px;
  }
}
@media (max-width: 991.98px) {
  .index-header figure {
    height: 550px;
  }
}
@media (max-width: 767.98px) {
  .index-header figure {
    height: 450px;
  }
}
@media (max-width: 575.98px) {
  .index-header figure {
    height: 350px;
  }
}
.index-header .index-header-content {
  position: relative;
  z-index: 15;
  display: flex;
  align-items: flex-end;
  justify-content: normal;
  vertical-align: bottom;
  height: calc(78vh - 0px);
  min-height: 320px;
  text-align: center;
}
@media (max-width: 575.98px) {
  .index-header .index-header-content {
    min-height: 280px;
    padding-bottom: 40px;
  }
}
@media (max-width: 380px) {
  .index-header .index-header-content {
    min-height: 240px;
    padding-bottom: 24px;
  }
}
.index-header .index-header-content .index-header-content-details {
  width: 100%;
}
.index-header .index-header-content .index-header-content-details .index-header-head-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  margin-bottom: 0px;
}
@media (max-width: 991.98px) {
  .index-header .index-header-content .index-header-content-details .index-header-head-social {
    margin-bottom: 25px;
  }
}
@media (max-width: 575.98px) {
  .index-header .index-header-content .index-header-content-details .index-header-head-social {
    margin-bottom: 20px;
  }
}
.index-header .index-header-content .index-header-content-details .index-header-head-social > span {
  color: #fcdb5a;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.05);
  padding: 11px 25px;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  margin-top: 30px;
}
@media (max-width: 991.98px) {
  .index-header .index-header-content .index-header-content-details .index-header-head-social > span {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
}
@media (max-width: 575.98px) {
  .index-header .index-header-content .index-header-content-details .index-header-head-social > span {
    font-size: 0.7rem;
    margin-bottom: 10px;
  }
}
.index-header .index-header-content .index-header-content-details .index-header-head-social h1 {
  margin-bottom: 15px;
}
@media (max-width: 575.98px) {
  .index-header .index-header-content .index-header-content-details .index-header-head-social h1 {
    margin-bottom: 10px;
  }
}
.index-header .index-header-content .index-header-content-details .index-header-head-social h1:last-of-type {
  margin-bottom: 0;
}
.index-header .index-header-content .index-header-content-details .index-header-head-social .social-links-rotated {
  transform: rotate(-90deg);
  color: #FFF;
  display: flex;
  align-items: center;
  font-size: 0.55rem;
  direction: ltr;
  text-align: left;
  height: 18px;
  position: absolute;
  left: -130px;
  top: 0;
  font-weight: 700;
  display: none;
}
.index-header .index-header-content .index-header-content-details .index-header-head-social .social-links-rotated span {
  margin: 0 7px;
}
.index-header .index-header-content .index-header-content-details h1 {
  color: #FFF;
  font-size: 4.5rem;
  font-weight: 700;
  text-align: right;
  margin-bottom: 30px;
  font-family: "q";
}
@media (max-width: 1199.98px) {
  .index-header .index-header-content .index-header-content-details h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 991.98px) {
  .index-header .index-header-content .index-header-content-details h1 {
    font-size: 3rem;
  }
}
@media (max-width: 767.98px) {
  .index-header .index-header-content .index-header-content-details h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .index-header .index-header-content .index-header-content-details h1 {
    font-size: 1.7rem;
  }
}
.index-header .index-header-content .index-header-content-details .h1-header {
  font-weight: 700;
  color: #FFF;
  font-size: 3rem;
  font-weight: 700;
  color: #FFF;
}
.index-header .index-header-content .index-header-content-details .h1-header span {
  color: #009578;
}
@media (max-width: 1199.98px) {
  .index-header .index-header-content .index-header-content-details .h1-header {
    font-size: 3.5rem;
  }
}
@media (max-width: 991.98px) {
  .index-header .index-header-content .index-header-content-details .h1-header {
    font-size: 3rem;
  }
}
@media (max-width: 767.98px) {
  .index-header .index-header-content .index-header-content-details .h1-header {
    font-size: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .index-header .index-header-content .index-header-content-details .h1-header {
    font-size: 1.7rem;
  }
}
.index-header .index-header-content .index-header-content-details .header-bottom-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .index-header .index-header-content .index-header-content-details .header-bottom-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (max-width: 575.98px) {
  .index-header .index-header-content .index-header-content-details .header-bottom-info {
    gap: 15px;
  }
}
.index-header .index-header-content .index-header-content-details .text-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 991.98px) {
  .index-header .index-header-content .index-header-content-details .text-button {
    width: 100%;
    justify-content: flex-start;
  }
}
@media (max-width: 575.98px) {
  .index-header .index-header-content .index-header-content-details .text-button p {
    font-size: 0.75rem;
    text-align: center !important;
    line-height: 1.9;
  }
}
.index-header .index-header-content .index-header-content-details .header-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  .index-header .index-header-content .index-header-content-details .header-buttons {
    gap: 15px;
    margin-top: 25px;
  }
}
@media (max-width: 575.98px) {
  .index-header .index-header-content .index-header-content-details .header-buttons {
    flex-wrap: nowrap;
    width: 100%;
    margin-top: 20px;
    gap: 10px;
  }
}
.index-header .index-header-content .index-header-content-details .header-buttons a span {
  font-size: 0.7rem;
}
.index-header .index-header-content .index-header-content-details .header-buttons .header-btn {
  margin: 0;
}
@media (max-width: 575.98px) {
  .index-header .index-header-content .index-header-content-details .header-buttons .header-btn {
    width: 100%;
  }
}
.index-header .index-header-content .index-header-content-details .header-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  .index-header .index-header-content .index-header-content-details .header-stats {
    gap: 30px;
    margin-top: 40px;
  }
}
@media (max-width: 575.98px) {
  .index-header .index-header-content .index-header-content-details .header-stats {
    gap: 25px;
    margin-top: 35px;
    justify-content: center;
    display: none;
  }
}
.index-header .index-header-content .index-header-content-details .header-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
}
@media (max-width: 575.98px) {
  .index-header .index-header-content .index-header-content-details .header-stats .stat-item {
    align-items: center;
    text-align: center;
  }
}
.index-header .index-header-content .index-header-content-details .header-stats .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fcdb5a;
  font-family: "num", sans-serif;
  line-height: 1;
  margin-bottom: 8px;
  text-align: center;
}
@media (max-width: 991.98px) {
  .index-header .index-header-content .index-header-content-details .header-stats .stat-item .stat-number {
    font-size: 2rem;
  }
}
@media (max-width: 575.98px) {
  .index-header .index-header-content .index-header-content-details .header-stats .stat-item .stat-number {
    font-size: 1.75rem;
  }
}
.index-header .index-header-content .index-header-content-details .header-stats .stat-item .stat-label {
  font-size: 0.75rem;
  color: #FFF;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  .index-header .index-header-content .index-header-content-details .header-stats .stat-item .stat-label {
    font-size: 0.85rem;
  }
}
@media (max-width: 575.98px) {
  .index-header .index-header-content .index-header-content-details .header-stats .stat-item .stat-label {
    font-size: 0.8rem;
  }
}
.index-header .index-header-content .index-header-content-details p {
  color: #FFF;
  width: 550px;
  max-width: 100%;
  margin: 25px 0 0 0;
  font-size: 0.8rem;
  text-align: center;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
  padding: 25px 30px;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  margin-top: 30px;
}
@media (max-width: 991.98px) {
  .index-header .index-header-content .index-header-content-details p {
    width: 100%;
    text-align: left;
  }
}
@media (max-width: 767.98px) {
  .index-header .index-header-content .index-header-content-details p {
    width: 100%;
    font-size: 0.85rem;
  }
}
@media (max-width: 575.98px) {
  .index-header .index-header-content .index-header-content-details p {
    width: 100%;
    font-size: 0.9rem;
    margin: 15px 0 0 0;
  }
}
.index-header .index-header-content .index-header-content-details .header-btn {
  padding: 10px 30px 10px 30px;
  color: #FFF;
  background: #b52c1f;
  border-radius: 50px;
  width: 250px;
  max-width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 50px auto 0 auto;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-right: 75px;
}
@media (max-width: 991.98px) {
  .index-header .index-header-content .index-header-content-details .header-btn {
    margin-right: 0;
    width: 200px;
  }
}
@media (max-width: 575.98px) {
  .index-header .index-header-content .index-header-content-details .header-btn {
    padding: 14px 30px 14px 30px;
    font-size: 0.9rem;
    width: 100%;
    margin: 30px auto 0 auto;
  }
}
.index-header .index-header-content .index-header-content-details .header-btn svg {
  fill: #FFF;
  height: 16px;
  width: 16px;
}
.index-header .index-header-content .index-header-content-details .header-btn-left {
  background: #FFF !important;
  color: #000 !important;
}
.index-header .index-header-content .index-header-content-details .header-btn-left svg {
  fill: #000 !important;
}
.index-header .index-header-content .index-header-content-details .left-p {
  text-align: right;
  width: 275px;
  max-width: 100%;
  margin-right: auto;
  margin-left: 0;
  font-weight: 700;
}
@media (max-width: 991.98px) {
  .index-header .index-header-content .index-header-content-details .left-p {
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .index-header .dis-md-none {
    display: none !important;
  }
}
.index-header .vision-logo {
  width: 100px;
  position: absolute;
  left: 60px;
  bottom: 0px;
}
@media (max-width: 991.98px) {
  .index-header .vision-logo {
    width: 120px;
    left: 40px;
  }
}
@media (max-width: 575.98px) {
  .index-header .vision-logo {
    width: 100px;
    left: 20px;
    display: none;
  }
}

.index-page-layout,
.index-header.index-page-layout {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 60vh;
  text-align: center;
}
.index-page-layout:after,
.index-header.index-page-layout:after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  background: #0F0F0F;
  opacity: 0.5;
  transform: rotatex(180deg);
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center center;
  height: 60vh;
  z-index: 1;
}
.index-page-layout .header-text,
.index-header.index-page-layout .header-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0 5px 0;
}
@media (max-width: 991.98px) {
  .index-page-layout .header-text,
  .index-header.index-page-layout .header-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
@media (max-width: 575.98px) {
  .index-page-layout .header-text,
  .index-header.index-page-layout .header-text {
    margin: 10px 0 75px 0;
  }
}
.index-page-layout .header-text p,
.index-header.index-page-layout .header-text p {
  width: 500px;
  max-width: 100%;
  margin: 0 0 0 0;
  color: #918D89;
}
@media (max-width: 991.98px) {
  .index-page-layout .header-text p,
  .index-header.index-page-layout .header-text p {
    width: 100%;
  }
}
.index-page-layout .header-text svg,
.index-header.index-page-layout .header-text svg {
  fill: #009578;
  height: 45px;
  width: 45px;
  border: 1px solid #d5d5d5;
  border-radius: 50%;
  padding: 7px;
}
@media (max-width: 575.98px) {
  .index-page-layout .header-text svg,
  .index-header.index-page-layout .header-text svg {
    display: none;
  }
}
.index-page-layout figure,
.index-header.index-page-layout figure {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 750px;
  width: 100%;
}
@media (max-width: 1199.98px) {
  .index-page-layout figure,
  .index-header.index-page-layout figure {
    height: 650px;
  }
}
@media (max-width: 991.98px) {
  .index-page-layout figure,
  .index-header.index-page-layout figure {
    height: 550px;
  }
}
@media (max-width: 767.98px) {
  .index-page-layout figure,
  .index-header.index-page-layout figure {
    height: 450px;
  }
}
@media (max-width: 575.98px) {
  .index-page-layout figure,
  .index-header.index-page-layout figure {
    height: 350px;
  }
}
.index-page-layout .index-header-content,
.index-header.index-page-layout .index-header-content {
  position: relative;
  z-index: 15;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  vertical-align: middle;
  height: calc(60vh - 100px);
  text-align: center;
}
.index-page-layout .index-header-content .index-header-content-details,
.index-header.index-page-layout .index-header-content .index-header-content-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.index-page-layout .index-header-content .index-header-content-details h1,
.index-header.index-page-layout .index-header-content .index-header-content-details h1 {
  text-align: center !important;
  margin-bottom: 0;
}
.index-page-layout .index-header-content .index-header-content-details h1:after,
.index-header.index-page-layout .index-header-content .index-header-content-details h1:after {
  display: none;
}
.index-page-layout .index-header-content .index-header-content-details .header-bottom-info,
.index-header.index-page-layout .index-header-content .index-header-content-details .header-bottom-info {
  justify-content: center !important;
}
.index-page-layout .index-header-content .index-header-content-details .text-button,
.index-header.index-page-layout .index-header-content .index-header-content-details .text-button {
  justify-content: center !important;
  margin: 0 auto;
}
.index-page-layout .index-header-content .index-header-content-details p,
.index-header.index-page-layout .index-header-content .index-header-content-details p {
  text-align: center !important;
  margin: 25px auto 0 auto !important;
  width: 350px;
  max-width: 100%;
}
@media (max-width: 991.98px) {
  .index-page-layout .index-header-content .index-header-content-details p,
  .index-header.index-page-layout .index-header-content .index-header-content-details p {
    width: 90%;
  }
}
@media (max-width: 575.98px) {
  .index-page-layout .index-header-content .index-header-content-details p,
  .index-header.index-page-layout .index-header-content .index-header-content-details p {
    width: 100%;
  }
}
.index-page-layout .index-header-head-social,
.index-header.index-page-layout .index-header-head-social {
  justify-content: center !important;
}

footer {
  margin-top: 0;
  background: #FFF;
  padding: 100px 0 0 0;
  position: relative;
  background-image: url(assets/images/hero10.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
footer:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: #0b0b17;
  z-index: 0;
  opacity: 0.1;
}
footer p {
  color: #d9d9d9;
}
footer .contact-info .p-email {
  color: #FFF;
  font-size: 1.2rem;
}
footer .contact-info a {
  text-decoration: underline !important;
  color: #FFF !important;
  font-size: 1.2rem !important;
}
footer .nav-actions .search-input {
  height: 55px;
  padding: 12px 6px 12px 60px;
  background-color: transparent;
  border: 1px solid transparent;
  color: #fff;
  transition: border-color 0.2s ease-in-out;
  font-size: 0.8rem;
  font-weight: 700;
  width: 99%;
  border-bottom: 1px solid #5c5c5c;
}
footer .nav-actions .search-input:active {
  border-bottom: 1px solid #009578;
  box-shadow: none;
  outline: none;
}
footer .nav-actions .search-input:focus {
  border-bottom: 1px solid #009578;
  box-shadow: none;
  outline: none;
}
footer .nav-actions .search-input::-moz-placeholder {
  color: #d9d9d9;
  font-weight: 100;
  font-size: 0.75rem;
}
footer .nav-actions .search-input::placeholder {
  color: #d9d9d9;
  font-weight: 100;
  font-size: 0.75rem;
}
footer .nav-actions .search-icon button {
  position: absolute;
  left: 0px;
  top: 8px;
  border-radius: 12px;
  border: none;
  height: 40px;
  width: 40px;
  text-transform: uppercase;
  font-weight: 900;
  padding: 0 !important;
  background: unset;
}
footer .nav-actions .search-icon button svg {
  height: 15px;
  width: 15px;
  fill: #FFF;
  transform: rotate(180deg);
}
footer .footer-container {
  height: 100%;
  width: 100%;
}
@media (max-width: 991.98px) {
  footer .col-r {
    text-align: left !important;
  }
}
footer .footer-col {
  text-align: left;
  display: inline-block;
  margin-bottom: 25px;
}
@media (max-width: 991.98px) {
  footer .footer-col {
    padding-left: 50px;
  }
}
footer .footer-col .Footer-head {
  margin-bottom: 20px;
}
footer .footer-col .Footer-head a {
  text-decoration: none;
  color: #FFF;
  font-size: 1.3rem;
  display: block;
}
footer .footer-col .Footer-head a.footer-logo {
  font-family: "en-bold";
  font-size: 1.4rem;
}
footer .footer-col .Footer-head a.footer-logo img {
  width: 150px;
}
footer .footer-col p.footer-address {
  color: #bfbfbf;
  font-size: 0.8rem;
  font-weight: 100;
  margin-bottom: 15px;
}
footer .footer-col ul {
  margin: 0;
  padding: 0;
}
footer .footer-col ul li {
  color: #FFF;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0 0 10px;
  transition: all 0.3s ease-in-out;
}
footer .footer-col ul li:hover a {
  color: #009578;
}
footer .footer-col ul li span {
  color: #FFF;
}
footer .footer-col ul li a {
  color: #d9d9d9;
  text-decoration: none;
  font-weight: 100;
  font-size: 0.9rem;
  transition: all 0.3s ease-in-out;
}
footer .footer-col .social-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}
footer .footer-col .social-icons li {
  border: 1px solid #515151;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer-col .social-icons li:hover {
  padding: 0;
}
footer .footer-col .social-icons li:hover a svg {
  fill: #009578;
}
footer .footer-col .social-icons li a {
  text-decoration: none;
}
footer .footer-col .social-icons li a svg {
  height: 18px;
  width: 18px;
  fill: #FFF;
  transition: all 0.3s ease-in-out;
}
footer .sub-footer {
  padding: 25px 0 20px 0;
  color: #FFF;
  margin-top: 0;
}
footer .sub-footer .row {
  border-top: 1px solid rgba(85, 85, 85, 0.368627451);
  padding-top: 25px;
}
footer .sub-footer p.copy {
  color: #7e868e;
  font-size: 12px;
  margin: 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .sub-footer p.copy a {
  color: #FFF;
  text-decoration: none;
  margin: 0 5px;
}
@media (max-width: 767.98px) {
  footer .sub-footer p.copy {
    text-align: center;
    margin-bottom: 0;
  }
}
footer .sub-footer .links {
  font-size: 0.9px;
  font-weight: 600;
  color: #FFF;
  margin: 0 10px;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  footer .sub-footer .links {
    text-align: center;
    margin-bottom: 20px;
    display: inline-flex;
  }
}
footer .sub-footer .links svg {
  fill: #FFF;
  height: 18px;
  width: 18px;
}

[lang=ar] footer {
  direction: rtl;
}
@media (max-width: 991.98px) {
  [lang=ar] footer .col-r {
    text-align: right !important;
  }
}
[lang=ar] footer .footer-col {
  text-align: right;
  padding-left: 0;
  padding-right: 50px;
}
[lang=ar] footer .footer-col li {
  transition: all 0.3s ease-in-out;
}
[lang=ar] footer .sub-footer p.copy {
  text-align: center;
  direction: ltr;
}
@media (min-width: 767.98px) {
  [lang=ar] footer .sub-footer p.copy {
    text-align: center !important;
  }
}
@media (min-width: 767.98px) {
  [lang=ar] footer .sub-footer .text-md-right {
    text-align: center !important;
  }
}

html[lang=en] footer,
[lang=en] footer {
  direction: ltr;
}
@media (max-width: 991.98px) {
  html[lang=en] footer .col-r,
  [lang=en] footer .col-r {
    text-align: left !important;
  }
}
html[lang=en] footer .footer-col,
[lang=en] footer .footer-col {
  text-align: left;
  padding-right: 0;
  padding-left: 50px;
}
html[lang=en] footer .footer-col li,
[lang=en] footer .footer-col li {
  transition: all 0.3s ease-in-out;
}
html[lang=en] footer .sub-footer p.copy,
[lang=en] footer .sub-footer p.copy {
  text-align: center;
  direction: ltr;
}
@media (min-width: 767.98px) {
  html[lang=en] footer .sub-footer p.copy,
  [lang=en] footer .sub-footer p.copy {
    text-align: center !important;
  }
}
@media (min-width: 767.98px) {
  html[lang=en] footer .sub-footer .text-md-right,
  [lang=en] footer .sub-footer .text-md-right {
    text-align: center !important;
  }
}

.services-v2 .services-container .row {
  margin-left: 0;
  margin-right: 0;
}
.services-v2 .services-container .service-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding: 32px 40px;
  margin-bottom: 24px;
  border: none;
  border-radius: 12px;
  background-color: #0d1117;
  background-image: url(assets/images/footer.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.services-v2 .services-container .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 23, 0.85);
  z-index: 0;
}
.services-v2 .services-container .service-card > * {
  position: relative;
  z-index: 1;
}
.services-v2 .services-container .service-card .service-icon {
  flex-shrink: 0;
  margin: 0;
  order: 1;
}
.services-v2 .services-container .service-card .service-icon svg {
  height: 56px;
  width: 56px;
  fill: #fff;
}
.services-v2 .services-container .service-card .service-content {
  flex: 1;
  order: 2;
  min-width: 0;
}
.services-v2 .services-container .service-card .service-head {
  margin-bottom: 12px;
}
.services-v2 .services-container .service-card .service-head h4 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  max-width: 100%;
}
.services-v2 .services-container .service-card .service-head span {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.4);
}
.services-v2 .services-container .service-card .service-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .services-v2 .services-container .service-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 20px;
  }
  .services-v2 .services-container .service-card .service-icon {
    order: 0;
  }
  .services-v2 .services-container .service-card .service-content {
    order: 1;
  }
}
.services-v2 .services-container .service-related-row {
  margin-bottom: 30px;
}
.services-v2 .services-container .service-related-row .row {
  margin-left: -10px;
  margin-right: -10px;
}
.services-v2 .services-container .service-related-row .row > [class*=col-] {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}
.services-v2 .services-container .service-card-related {
  display: block !important;
  flex-direction: column !important;
  padding: 24px 20px !important;
  margin-bottom: 0 !important;
  background: rgba(255, 255, 255, 0.06) !important;
  background-image: none !important;
  border: 1px solid rgba(119, 119, 119, 0.15) !important;
}
.services-v2 .services-container .service-card-related::before {
  display: none !important;
}
.services-v2 .services-container .service-card-related .service-head {
  margin-bottom: 10px;
}
.services-v2 .services-container .service-card-related .service-head h4 {
  font-size: 1rem !important;
  color: #000 !important;
}
.services-v2 .services-container .service-card-related .service-head span {
  color: rgba(0, 0, 0, 0.7) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  font-size: 0.85rem;
  height: 26px;
  width: 26px;
}
.services-v2 .services-container .service-card-related .service-info p {
  font-size: 0.8rem !important;
  color: rgba(0, 0, 0, 0.85) !important;
  margin-bottom: 14px !important;
}
.services-v2 .services-container .service-card-related .service-link .header-btn {
  font-size: 0.75rem !important;
  color: #000 !important;
  padding: 8px 0 !important;
  width: auto !important;
}
.services-v2 .services-container .service-card-related .service-link .header-btn svg {
  fill: #000 !important;
}

.services-container .service-card .service-related {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e6e6e6;
}
.services-container .service-card .service-related .service-related-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #b52c1f;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.services-container .service-card .service-related .service-related-list {
  margin: 0;
  padding: 0;
}
.services-container .service-card .service-related .service-related-list li {
  margin-bottom: 8px;
}
.services-container .service-card .service-related .service-related-list li:last-child {
  margin-bottom: 0;
}
.services-container .service-card .service-related .service-related-list li a {
  font-size: 0.8rem;
  color: #333;
  text-decoration: none;
  transition: color 0.2s, padding-right 0.2s;
}
.services-container .service-card .service-related .service-related-list li a:hover {
  color: #b52c1f;
  padding-right: 4px;
}

.one-service {
  padding: 25px 15px 100px 15px;
  color: #000;
  direction: rtl;
  text-align: right;
}
@media (max-width: 991.98px) {
  .one-service {
    padding: 25px 15px 80px 15px;
  }
}
@media (max-width: 575.98px) {
  .one-service {
    padding: 20px 15px 60px 15px;
  }
}
.one-service .one-service-article {
  max-width: 800px;
  margin: 0 auto;
}
.one-service .one-service-breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
}
.one-service .one-service-breadcrumb a {
  color: #b52c1f;
  text-decoration: none;
}
.one-service .one-service-breadcrumb a:hover {
  text-decoration: underline;
}
.one-service .one-service-breadcrumb .breadcrumb-sep {
  margin: 0 0.35rem;
  color: #000;
}
.one-service .one-service-breadcrumb .breadcrumb-current {
  color: #000;
}
.one-service .one-service-hero {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 575.98px) {
  .one-service .one-service-hero {
    flex-direction: column;
    gap: 1rem;
  }
}
.one-service .one-service-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(181, 44, 31, 0.1);
  border-radius: 12px;
}
.one-service .one-service-icon svg {
  width: 36px;
  height: 36px;
  fill: #b52c1f;
}
.one-service .one-service-header {
  flex: 1;
  min-width: 0;
}
.one-service .one-service-category {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #b52c1f;
  margin-bottom: 0.5rem;
}
.one-service .one-service-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0.75rem 0;
  color: #000;
}
@media (max-width: 575.98px) {
  .one-service .one-service-title {
    font-size: 1.4rem;
  }
}
.one-service .one-service-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin: 0;
}
.one-service .one-service-body {
  font-size: 1.05rem;
  line-height: 1.8;
}
.one-service .one-service-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem 0 1rem 0;
  color: #000;
}
.one-service .one-service-body h2:first-of-type {
  margin-top: 1.5rem;
}
.one-service .one-service-body p {
  margin: 0 0 1rem 0;
  color: #333;
}
.one-service .one-service-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}
.one-service .one-service-cta {
  display: inline-flex;
}
.one-service .one-service-back {
  color: #b52c1f;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.one-service .one-service-back:hover {
  text-decoration: underline;
}

html[lang=en] .one-service,
[lang=en] .one-service {
  direction: ltr;
  text-align: left;
}

.contacts-page iframe {
  margin-bottom: -7px;
}
.contacts-page .contact-section {
  padding: 100px 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.contacts-page .contact-section .index-section-header-center {
  margin-bottom: 80px;
}
@media (max-width: 575.98px) {
  .contacts-page .contact-section .index-section-header-center {
    margin-bottom: 50px;
  }
}
.contacts-page .contact-section .contact-info-cards {
  margin-bottom: 80px;
}
@media (max-width: 575.98px) {
  .contacts-page .contact-section .contact-info-cards {
    margin-bottom: 50px;
  }
}
.contacts-page .contact-section .contact-info-cards .row {
  padding: 20px 0;
}
.contacts-page .contact-section .contact-info-cards .contact-info-card {
  text-align: center;
  padding: 40px 30px;
  background: #fafafa;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid #e6e6e6;
  height: 100%;
}
.contacts-page .contact-section .contact-info-cards .contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: #b52c1f;
}
.contacts-page .contact-section .contact-info-cards .contact-info-card .contact-icon {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contacts-page .contact-section .contact-info-cards .contact-info-card .contact-icon svg {
  width: 50px;
  height: 50px;
  fill: #b52c1f;
  transition: all 0.3s ease;
}
.contacts-page .contact-section .contact-info-cards .contact-info-card:hover .contact-icon svg {
  transform: scale(1.1);
}
.contacts-page .contact-section .contact-info-cards .contact-info-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0e3e2f;
}
.contacts-page .contact-section .contact-info-cards .contact-info-card a {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 700;
  color: #0e3e2f;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}
.contacts-page .contact-section .contact-info-cards .contact-info-card a:hover {
  color: #b52c1f;
}
.contacts-page .contact-section .contact-info-cards .contact-info-card p {
  font-size: 0.8rem;
  color: #646573;
  margin-bottom: 0;
}
.contacts-page .contact-section .contact-form-map-section {
  margin-top: 60px;
}
.contacts-page .contact-section .contact-form-map-section .contact-form-wrapper {
  padding: 40px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}
@media (max-width: 575.98px) {
  .contacts-page .contact-section .contact-form-map-section .contact-form-wrapper {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
}
.contacts-page .contact-section .contact-form-map-section .contact-form-wrapper .contact-form-header {
  margin-bottom: 30px;
}
.contacts-page .contact-section .contact-form-map-section .contact-form-wrapper .contact-form-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0e3e2f;
}
.contacts-page .contact-section .contact-form-map-section .contact-form-wrapper .contact-form-header p {
  font-size: 0.9rem;
  color: #646573;
  margin-bottom: 0;
}
.contacts-page .contact-section .contact-form-map-section .contact-form-wrapper .contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 575.98px) {
  .contacts-page .contact-section .contact-form-map-section .contact-form-wrapper .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.contacts-page .contact-section .contact-form-map-section .contact-form-wrapper .contact-form .form-group {
  margin-bottom: 0;
}
.contacts-page .contact-section .contact-form-map-section .contact-form-wrapper .contact-form .form-group .form-control {
  width: 100%;
  padding: 13px 20px;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a1a;
  background-color: #fafafa;
  transition: all 0.3s ease;
  font-family: "ar";
}
.contacts-page .contact-section .contact-form-map-section .contact-form-wrapper .contact-form .form-group .form-control:focus {
  outline: none;
  border-color: #b52c1f;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(181, 44, 31, 0.1);
}
.contacts-page .contact-section .contact-form-map-section .contact-form-wrapper .contact-form .form-group .form-control::-moz-placeholder {
  color: #999;
  font-weight: 400;
}
.contacts-page .contact-section .contact-form-map-section .contact-form-wrapper .contact-form .form-group .form-control::placeholder {
  color: #999;
  font-weight: 400;
}
.contacts-page .contact-section .contact-form-map-section .contact-form-wrapper .contact-form .form-group .form-control[name=subject] {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23b52c1f'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 15px center;
  background-size: 20px;
  padding-left: 45px;
}
.contacts-page .contact-section .contact-form-map-section .contact-form-wrapper .contact-form .form-group textarea.form-control {
  resize: vertical;
  min-height: 140px;
}
.contacts-page .contact-section .contact-form-map-section .contact-form-wrapper .contact-form .contact-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #b52c1f, #d63222);
  color: #FFF;
  border: none;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(181, 44, 31, 0.25), 0 2px 4px rgba(181, 44, 31, 0.15);
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  font-family: "ar";
  margin-top: 40px;
}
.contacts-page .contact-section .contact-form-map-section .contact-form-wrapper .contact-form .contact-submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.contacts-page .contact-section .contact-form-map-section .contact-form-wrapper .contact-form .contact-submit-btn:hover {
  background: linear-gradient(135deg, #9a2419, #b52c1f);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(181, 44, 31, 0.4), 0 6px 12px rgba(181, 44, 31, 0.25);
}
.contacts-page .contact-section .contact-form-map-section .contact-form-wrapper .contact-form .contact-submit-btn:hover::before {
  left: 100%;
}
.contacts-page .contact-section .contact-form-map-section .contact-form-wrapper .contact-form .contact-submit-btn:hover svg {
  transform: translateX(6px) scale(1.1);
}
.contacts-page .contact-section .contact-form-map-section .contact-form-wrapper .contact-form .contact-submit-btn:active {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 6px 16px rgba(181, 44, 31, 0.3), 0 3px 6px rgba(181, 44, 31, 0.2);
}
.contacts-page .contact-section .contact-form-map-section .contact-form-wrapper .contact-form .contact-submit-btn svg {
  width: 22px;
  height: 22px;
  fill: #FFF;
  transition: transform 0.3s ease;
}
.contacts-page .contact-section .contact-form-map-section .contact-map-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contacts-page .contact-section .contact-form-map-section .contact-map-info .contact-map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #e6e6e6;
}
.contacts-page .contact-section .contact-form-map-section .contact-map-info .contact-map-wrapper iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
  margin-bottom: 0 !important;
}
@media (max-width: 575.98px) {
  .contacts-page .contact-section .contact-form-map-section .contact-map-info .contact-map-wrapper iframe {
    height: 300px;
  }
}
.contacts-page .contact-section .contact-form-map-section .contact-map-info .contact-social-section {
  padding: 30px;
  background: #fafafa;
  border-radius: 16px;
  border: 1px solid #e6e6e6;
  text-align: center;
}
.contacts-page .contact-section .contact-form-map-section .contact-map-info .contact-social-section h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0e3e2f;
}
.contacts-page .contact-section .contact-form-map-section .contact-map-info .contact-social-section .contact-social-links {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 15px;
}
.contacts-page .contact-section .contact-form-map-section .contact-map-info .contact-social-section .contact-social-links .social-link {
  padding: 12px 24px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  font-weight: 600;
  color: #646573;
}
.contacts-page .contact-section .contact-form-map-section .contact-map-info .contact-social-section .contact-social-links .social-link:hover {
  background: #b52c1f;
  color: #ffffff;
  border-color: #b52c1f;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(181, 44, 31, 0.25);
}
.contacts-page .contact-section .contacts-map-message {
  padding: 100px 0;
}
@media (max-width: 991.98px) {
  .contacts-page .contact-section .contacts-map-message {
    padding: 80px 0;
  }
}
@media (max-width: 575.98px) {
  .contacts-page .contact-section .contacts-map-message {
    padding: 60px 0;
  }
}
.contacts-page .contact-section .contact-side-card .about-text .pretitle {
  font-size: 1rem;
  font-weight: 600;
  color: #009578;
}
.contacts-page .contact-section .contact-side-card .about-text .about-heading {
  font-size: 2.3rem;
  font-weight: 600;
  margin-top: 9px;
  color: #0e3e2f;
}
@media (max-width: 575.98px) {
  .contacts-page .contact-section .contact-side-card .about-text .about-heading {
    font-size: 1.8rem;
  }
}
.contacts-page .contact-section .contact-side-card .about-text .text {
  color: #0e3e2f;
  width: 80%;
  max-width: 100%;
  margin-top: 20px;
  font-size: 0.9rem;
}
@media (max-width: 991.98px) {
  .contacts-page .contact-section .contact-side-card .about-text .text {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .contacts-page .contact-section .contact-side-card .about-text .text {
    font-size: 0.85rem;
  }
}
@media (max-width: 991.98px) {
  .contacts-page .contact-section {
    padding: 80px 0;
  }
}
@media (max-width: 575.98px) {
  .contacts-page .contact-section {
    padding: 60px 0;
  }
  .contacts-page .contact-section .contact-info-cards .contact-info-card {
    padding: 30px 20px;
    margin-bottom: 20px;
  }
  .contacts-page .contact-section .contact-form-map-section .contact-form-wrapper .contact-form-header h3 {
    font-size: 1.5rem;
  }
  .contacts-page .contact-section .contact-form-map-section .contact-form-wrapper .contact-form .form-group .form-control {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
  .contacts-page .contact-section .contact-form-map-section .contact-form-wrapper .contact-form .contact-submit-btn {
    padding: 16px 32px;
    font-size: 0.95rem;
  }
  .contacts-page .contact-section .contact-form-map-section .contact-form-wrapper .contact-form .contact-submit-btn svg {
    width: 20px;
    height: 20px;
  }
  .contacts-page .contact-section .contact-form-map-section .contact-map-info .contact-social-section {
    padding: 25px 20px;
  }
  .contacts-page .contact-section .contact-form-map-section .contact-map-info .contact-social-section .contact-social-links .social-link {
    padding: 10px 18px;
    font-size: 0.8rem;
  }
}
.contacts-page .contact-section .contact-info-parent .contact-info-content-inner {
  border: 1px solid #d9e3e4;
}
.contacts-page .contact-section .contact-info-parent .contact-info-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .contacts-page .contact-section .contact-info-parent .contact-info-container {
    display: block;
    text-align: center;
  }
}
.contacts-page .contact-section .contact-info-parent .contact-info-container .side {
  flex: 1;
}
@media (max-width: 991.98px) {
  .contacts-page .contact-section .contact-info-parent .contact-info-container .side {
    margin: 20px 0;
  }
}
.contacts-page .contact-section .contact-info-parent .contact-info-container .side a {
  text-decoration: none;
  display: block;
}
.contacts-page .contact-section .contact-info-parent .contact-info-container .side .phone {
  font-size: 2.2rem;
  font-weight: 600;
  color: #000;
}
@media (max-width: 991.98px) {
  .contacts-page .contact-section .contact-info-parent .contact-info-container .side .phone {
    font-size: 1.8rem;
  }
}
@media (max-width: 575.98px) {
  .contacts-page .contact-section .contact-info-parent .contact-info-container .side .phone {
    font-size: 1.5rem;
  }
}
.contacts-page .contact-section .contact-info-parent .contact-info-container .side .email {
  color: #000;
  font-size: 1.4rem;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  .contacts-page .contact-section .contact-info-parent .contact-info-container .side .email {
    font-size: 1.2rem;
  }
}
@media (max-width: 575.98px) {
  .contacts-page .contact-section .contact-info-parent .contact-info-container .side .email {
    font-size: 1rem;
  }
}
.contacts-page .contact-section .contact-info-parent .contact-info-container .side .address {
  font-weight: 400;
  font-size: 1.1rem;
  margin: 0;
}
@media (max-width: 991.98px) {
  .contacts-page .contact-section .contact-info-parent .contact-info-container .side .address {
    font-size: 1rem;
  }
}
@media (max-width: 575.98px) {
  .contacts-page .contact-section .contact-info-parent .contact-info-container .side .address {
    font-size: 0.9rem;
  }
}
.contacts-page .contact-section .contact-info-parent .contact-info-container .side .social-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contacts-page .contact-section .contact-info-parent .contact-info-container .side .social-links .links {
  margin: 0 7px;
  background: #e4e7ec;
  padding: 12px;
  border-radius: 50%;
}
.contacts-page .contact-section .contact .contacts-container {
  height: 100%;
  width: 100%;
}
.contacts-page .contact-section .contact .contact-info h3 {
  font-size: 4rem;
  position: relative;
  color: #FFF;
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .contacts-page .contact-section .contact .contact-info h3 {
    font-size: 2.5rem !important;
  }
}
.contacts-page .contact-section .contact .contact-info h3 svg {
  height: 84px;
  width: 295px;
  position: absolute;
  top: 99%;
  fill: #be0f5d;
  right: 0%;
  transform: translate(0%, 0);
}
@media (max-width: 991.98px) {
  .contacts-page .contact-section .contact .contact-info h3 svg {
    right: unset;
    left: 50%;
    transform: translate(-50%, 0);
    height: 60px;
    width: 200px;
  }
}
@media (max-width: 575.98px) {
  .contacts-page .contact-section .contact .contact-info h3 svg {
    height: 50px;
    width: 180px;
  }
}
.contacts-page .contact-section .contact .contact-info p {
  margin-top: 25px;
  color: #000;
  width: 80%;
  max-width: 100%;
  font-size: 1rem;
}
@media (max-width: 991.98px) {
  .contacts-page .contact-section .contact .contact-info p {
    margin: auto;
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .contacts-page .contact-section .contact .contact-info p {
    font-size: 0.9rem;
  }
}
.contacts-page .contact-section .contact .contact-info .contacts-line .contact-line {
  display: flex;
  align-items: center;
}
.contacts-page .contact-section .contact .contact-info .contacts-line .contact-line svg {
  height: 40px;
  fill: #000024;
  margin-left: 10px;
  margin-bottom: 0;
}
.contacts-page .contact-section .contact .contact-info .contacts-line .contact-line .contact-line-part {
  margin: 20px 0;
}
.contacts-page .contact-section .contact .contact-info .contacts-line .contact-line .contact-line-part h6 {
  margin: 0;
  font-size: 1.2rem;
  display: block;
}
.contacts-page .contact-section .contact .contact-info .contacts-line .contact-line .contact-line-part p {
  margin: 0;
  width: 100%;
}
.contacts-page .contact-section .contact .contact-form {
  margin: auto;
  margin-bottom: 0;
  margin: auto;
  margin-bottom: 0;
  border: 1px solid #444c80;
  background-color: #070726;
  background-size: cover;
  background-position: center center;
  padding: 50px;
  border-radius: 12px;
}
@media (max-width: 575.98px) {
  .contacts-page .contact-section .contact .contact-form {
    padding: 50px 25px;
  }
}
.contacts-page .contact-section .contact .contact-form form {
  background: unset;
  padding: 0;
  border-radius: 20px;
}
.contacts-page .contact-section .contact .contact-form form span {
  color: #009578;
  font-size: 1rem;
  font-weight: 600;
}
.contacts-page .contact-section .contact .contact-form form h3 {
  font-size: 1.5rem;
  margin-bottom: 35px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}
.contacts-page .contact-section .contact .contact-form form .form-group {
  margin-bottom: 20px;
}
.contacts-page .contact-section .contact .contact-form form .form-group .form-control {
  padding: 10px 34px 15px 15px;
  line-height: 22px;
  margin-right: auto;
  height: 55px;
  border: 1px solid #444c80;
  background: unset;
  color: #FFF;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}
.contacts-page .contact-section .contact .contact-form form .form-group .form-control::-moz-placeholder {
  color: #FFF;
}
.contacts-page .contact-section .contact .contact-form form .form-group .form-control::placeholder {
  color: #FFF;
}
.contacts-page .contact-section .contact .contact-form form .form-group textarea {
  min-height: 200px;
}
.contacts-page .contact-section .contact .contact-form form a {
  padding: 14px 14px;
  font-size: 0.95rem;
  height: 53px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  border: unset !important;
  color: #ffffff;
  background-color: transparent;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 5px;
  margin-right: 0px;
  background-color: #444c80 !important;
}
.contacts-page .contact-section iframe {
  margin-bottom: -7px !important;
}
.contacts-page .contact-section .contact-side-card {
  padding: 15px;
  margin-left: 50px;
  border-radius: 12px;
}
@media (max-width: 991.98px) {
  .contacts-page .contact-section .contact-side-card {
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 25px;
  }
}
@media (max-width: 575.98px) {
  .contacts-page .contact-section .contact-side-card {
    padding: 15px 10px;
  }
}
.contacts-page .contact-section .contact-side-card .phone {
  margin-top: 15px;
}
.contacts-page .contact-section .contact-side-card .phone a {
  text-decoration: underline !important;
  font-size: 2.5rem;
  color: #444c80 !important;
  font-weight: 700;
  background-size: cover;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to left bottom, #ffffff, #dcdbe5, #b9b9cc, #9698b3, #73799b);
}
@media (max-width: 991.98px) {
  .contacts-page .contact-section .contact-side-card .phone a {
    font-size: 2rem;
  }
}
@media (max-width: 575.98px) {
  .contacts-page .contact-section .contact-side-card .phone a {
    font-size: 1.5rem;
  }
}
.contacts-page .contact-section .contact-side-card .address {
  padding: 20px 0 20px 0;
}
.contacts-page .contact-section .contact-side-card .address span {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #FFF;
  font-weight: 700;
  opacity: 0.8;
  margin-bottom: 15px;
  display: block;
}
.contacts-page .contact-section .contact-side-card .address p {
  color: #959efe;
  font-size: 0.9rem;
  margin-bottom: 0;
}
.contacts-page .contact-section .contact-side-card .email {
  padding: 20px 0 20px 0;
}
.contacts-page .contact-section .contact-side-card .email span {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #FFF;
  font-weight: 700;
  opacity: 0.8;
  margin-bottom: 15px;
  display: block;
}
.contacts-page .contact-section .contact-side-card .email a {
  color: #959efe;
  font-size: 0.9rem;
  margin-bottom: 0;
}
.contacts-page .contact-section .contact-side-card .social-icons {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-top: 25px;
  padding-right: 0;
}
.contacts-page .contact-section .contact-side-card .social-icons li {
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.contacts-page .contact-section .contact-side-card .social-icons li:hover {
  padding: 0;
}
.contacts-page .contact-section .contact-side-card .social-icons li:hover a svg {
  fill: #FFF;
}
.contacts-page .contact-section .contact-side-card .social-icons li a {
  text-decoration: none;
}
.contacts-page .contact-section .contact-side-card .social-icons li a svg {
  height: 18px;
  width: 18px;
  fill: #FFF;
  transition: all 0.3s ease-in-out;
}

[lang=en] .contacts-page .contact-section .contact-form-map-section .contact-form-wrapper .contact-form .form-group .form-control[name=subject] {
  background-position: right 15px center;
  padding-right: 45px;
  padding-left: 15px;
}
[lang=en] .contacts-page .contact-section .contact .contact-info .contacts-line .contact-line svg {
  margin-left: 0;
  margin-right: 10px;
}
[lang=en] .contacts-page .contact-section .contact .contact-info .contact-form form .form-group .form-control {
  margin-right: 0;
  margin-left: auto;
}
[lang=en] .contacts-page .contact-section .contact .contact-info .contact-form form a {
  margin-right: auto;
  margin-left: 0;
}
[lang=en] .contacts-page .contact-section .contact-side-card {
  margin-left: 0;
  margin-right: 50px;
}
@media (max-width: 991.98px) {
  [lang=en] .contacts-page .contact-section .contact-side-card {
    margin-right: 0;
    margin-left: 0;
  }
}
[lang=en] .contacts-page .contact-section .contact-side-card .social-icons {
  padding-right: 0;
  padding-left: 0;
  justify-content: flex-start;
}
[lang=en] .contacts-page .contact-section .contact-side-card .social-icons li {
  margin-left: 0;
  margin-right: 10px;
}

.blogs-page {
  padding: 100px 0 0 0;
}
@media (max-width: 991.98px) {
  .blogs-page {
    padding: 80px 0 0 0;
  }
}
@media (max-width: 575.98px) {
  .blogs-page {
    padding: 60px 0 0 0;
  }
}
.blogs-page .blog-page-row {
  align-items: flex-start;
}
.blogs-page .blog-sidebar {
  position: sticky;
  top: 75px;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .blogs-page .blog-sidebar {
    position: static;
    margin-bottom: 2.5rem;
  }
}
.blogs-page .blog-sidebar-inner {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.blogs-page .blog-sidebar-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
  text-transform: none;
}
.blogs-page .blog-sidebar-search {
  margin-bottom: 1.25rem;
}
.blogs-page .blog-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.blogs-page .blog-search-input {
  width: 100%;
  padding: 0.6rem 2.25rem 0.6rem 1.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.blogs-page .blog-search-input:focus {
  outline: none;
  border-color: #b52c1f;
}
.blogs-page .blog-search-input::-moz-placeholder {
  color: #999;
}
.blogs-page .blog-search-input::placeholder {
  color: #999;
}
.blogs-page .blog-search-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  pointer-events: none;
}
.blogs-page .blog-sidebar-filter {
  margin-bottom: 1.25rem;
}
.blogs-page .blog-filter-select {
  width: 100%;
  padding: 0.6rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.95rem;
  background: #fff;
  cursor: pointer;
  color: #333;
}
.blogs-page .blog-filter-select:focus {
  outline: none;
  border-color: #b52c1f;
}
.blogs-page .blog-sidebar-categories {
  margin-bottom: 0;
}
.blogs-page .blog-categories-list {
  margin: 0;
  padding: 0;
}
.blogs-page .blog-categories-list li {
  margin-bottom: 0.35rem;
}
.blogs-page .blog-cat-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: right;
  padding: 0.5rem 0.75rem;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #555;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
[dir=rtl] .blogs-page .blog-cat-btn {
  flex-direction: row-reverse;
}
.blogs-page .blog-cat-btn:hover {
  background: rgba(181, 44, 31, 0.08);
  color: #b52c1f;
}
.blogs-page .blog-cat-btn.active {
  background: rgba(181, 44, 31, 0.12);
  color: #b52c1f;
  font-weight: 600;
}
.blogs-page .blog-cat-btn .blog-cat-label {
  flex: 1;
}
.blogs-page .blog-cat-btn .blog-cat-count {
  flex-shrink: 0;
  margin-left: 0.5rem;
  font-weight: 600;
  opacity: 0.85;
}
[dir=rtl] .blogs-page .blog-cat-btn .blog-cat-count {
  margin-left: 0;
  margin-right: 0.5rem;
}
.blogs-page .blog-col.blog-col-hidden {
  display: none !important;
}
.blogs-page .blog-no-results {
  color: #666;
  font-size: 1rem;
}
.blogs-page .blog .blog-card {
  margin-bottom: 50px !important;
}
@media (max-width: 991.98px) {
  .blogs-page .blog .blog-card {
    margin-bottom: 40px !important;
  }
}
@media (max-width: 575.98px) {
  .blogs-page .blog .blog-card {
    margin-bottom: 30px !important;
  }
}

.one-blog {
  padding: 25px 15px 100px 15px;
  color: #000;
  direction: rtl;
  text-align: right;
}
@media (max-width: 991.98px) {
  .one-blog {
    padding: 25px 15px 80px 15px;
  }
}
@media (max-width: 575.98px) {
  .one-blog {
    padding: 20px 15px 60px 15px;
  }
}
.one-blog .one-blog-article {
  max-width: 800px;
  margin: 0 auto;
}
.one-blog .one-blog-breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: flex;
}
.one-blog .one-blog-breadcrumb a {
  color: #b52c1f;
  text-decoration: none;
}
.one-blog .one-blog-breadcrumb a:hover {
  text-decoration: underline;
}
.one-blog .one-blog-breadcrumb .breadcrumb-sep {
  margin: 0 0.35rem;
  color: #000;
}
.one-blog .one-blog-breadcrumb .breadcrumb-current {
  color: #000;
}
.one-blog .one-blog-header {
  margin-bottom: 2rem;
}
.one-blog .one-blog-category {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #b52c1f;
  margin-bottom: 0.5rem;
}
.one-blog .one-blog-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0.75rem 0;
  color: #000;
}
@media (max-width: 575.98px) {
  .one-blog .one-blog-title {
    font-size: 1.4rem;
  }
}
.one-blog .one-blog-meta {
  font-size: 0.9rem;
  color: #000;
}
.one-blog .one-blog-meta .meta-sep {
  margin: 0 0.25rem;
}
.one-blog .one-blog-body {
  font-size: 1.05rem;
  line-height: 1.8;
}
.one-blog .one-blog-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem 0 1rem 0;
  color: #000;
}
.one-blog .one-blog-body h2:first-of-type {
  margin-top: 1.5rem;
}
.one-blog .one-blog-body p {
  margin: 0 0 1rem 0;
  color: #000;
}
.one-blog .one-blog-body .one-blog-lead {
  font-size: 1.15rem;
  color: #000;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.one-blog .one-blog-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}
.one-blog .one-blog-back {
  color: #b52c1f;
  text-decoration: none;
  font-weight: 600;
}
.one-blog .one-blog-back:hover {
  text-decoration: underline;
}

html[lang=en] .one-blog,
[lang=en] .one-blog {
  direction: ltr;
  text-align: left;
}

.projects-page .projects {
  padding: 100px 0 0 0;
  color: #000;
}
@media (max-width: 991.98px) {
  .projects-page .projects {
    padding: 80px 0 0 0;
  }
}
@media (max-width: 575.98px) {
  .projects-page .projects {
    padding: 60px 0 0 0;
  }
}
.projects-page .projects .project-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}
@media (max-width: 991.98px) {
  .projects-page .projects .project-categories {
    gap: 15px;
    margin-bottom: 40px;
  }
}
@media (max-width: 575.98px) {
  .projects-page .projects .project-categories {
    gap: 10px;
    margin-bottom: 30px;
  }
}
.projects-page .projects .project-categories .filter-btn {
  padding: 12px 24px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #000;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  min-width: 120px;
}
@media (max-width: 991.98px) {
  .projects-page .projects .project-categories .filter-btn {
    padding: 10px 20px;
    font-size: 13px;
    min-width: 100px;
  }
}
@media (max-width: 575.98px) {
  .projects-page .projects .project-categories .filter-btn {
    padding: 8px 16px;
    font-size: 12px;
    min-width: 90px;
  }
}
.projects-page .projects .project-categories .filter-btn:hover {
  border-color: #b52c1f;
  color: #b52c1f;
  transform: translateY(-2px);
}
.projects-page .projects .project-categories .filter-btn.active {
  background: #b52c1f;
  border-color: #b52c1f;
  color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(181, 44, 31, 0.3);
}
.projects-page .projects .project-categories .filter-btn.last-li {
  margin-right: 0;
}
.projects-page .projects .projects-cards #projects-container.filtering {
  pointer-events: none;
}

.projects-page .one-project {
  padding: 40px 15px 100px 15px;
  color: #000;
  direction: rtl;
  text-align: right;
  background: #fff;
  min-height: 50vh;
}
@media (max-width: 991.98px) {
  .projects-page .one-project {
    padding: 30px 15px 80px 15px;
  }
}
@media (max-width: 575.98px) {
  .projects-page .one-project {
    padding: 24px 15px 60px 15px;
  }
}
.projects-page .one-project .one-project-article {
  max-width: 800px;
  margin: 0 auto;
}
.projects-page .one-project .one-project-breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
}
.projects-page .one-project .one-project-breadcrumb a {
  color: #b52c1f;
  text-decoration: none;
}
.projects-page .one-project .one-project-breadcrumb a:hover {
  text-decoration: underline;
}
.projects-page .one-project .one-project-breadcrumb .breadcrumb-sep {
  margin: 0 0.35rem;
  color: #000;
}
.projects-page .one-project .one-project-breadcrumb .breadcrumb-current {
  color: #000;
}
.projects-page .one-project .one-project-header {
  margin-bottom: 2rem;
}
.projects-page .one-project .one-project-category {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #b52c1f;
  margin-bottom: 0.5rem;
}
.projects-page .one-project .one-project-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0.75rem 0;
  color: #000;
}
@media (max-width: 575.98px) {
  .projects-page .one-project .one-project-title {
    font-size: 1.4rem;
  }
}
.projects-page .one-project .one-project-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin: 0;
}
.projects-page .one-project .one-project-body {
  font-size: 1.05rem;
  line-height: 1.8;
}
.projects-page .one-project .one-project-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem 0 1rem 0;
  color: #000;
}
.projects-page .one-project .one-project-body h2:first-of-type {
  margin-top: 1.5rem;
}
.projects-page .one-project .one-project-body p {
  margin: 0 0 1rem 0;
  color: #333;
}
.projects-page .one-project .one-project-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}
.projects-page .one-project .one-project-back {
  color: #b52c1f;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
}
.projects-page .one-project .one-project-back:hover {
  text-decoration: underline;
}

html[lang=en] .projects-page .projects .project-categories .filter-btn.last-li,
[lang=en] .projects-page .projects .project-categories .filter-btn.last-li {
  margin-right: 0;
  margin-left: 0;
}
html[lang=en] .projects-page .one-project,
[lang=en] .projects-page .one-project {
  direction: ltr;
  text-align: left;
}

.products-page .products {
  padding: 100px 0 0 0;
  color: #000;
}
@media (max-width: 991.98px) {
  .products-page .products {
    padding: 80px 0 0 0;
  }
}
@media (max-width: 575.98px) {
  .products-page .products {
    padding: 60px 0 0 0;
  }
}
.products-page .products .product-sectors {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}
@media (max-width: 991.98px) {
  .products-page .products .product-sectors {
    gap: 15px;
    margin-bottom: 40px;
  }
}
@media (max-width: 575.98px) {
  .products-page .products .product-sectors {
    gap: 10px;
    margin-bottom: 30px;
  }
}
.products-page .products .product-sectors .sector-btn {
  padding: 12px 24px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #000;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  min-width: 120px;
}
@media (max-width: 991.98px) {
  .products-page .products .product-sectors .sector-btn {
    padding: 10px 20px;
    font-size: 13px;
    min-width: 100px;
  }
}
@media (max-width: 575.98px) {
  .products-page .products .product-sectors .sector-btn {
    padding: 8px 16px;
    font-size: 12px;
    min-width: 90px;
  }
}
.products-page .products .product-sectors .sector-btn:hover {
  border-color: #b52c1f;
  color: #b52c1f;
  transform: translateY(-2px);
}
.products-page .products .product-sectors .sector-btn.active {
  background: #b52c1f;
  border-color: #b52c1f;
  color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(181, 44, 31, 0.3);
}
.products-page .products .product-sectors .sector-btn.last-li {
  margin-right: 0;
}
.products-page .products .products-cards #products-container.filtering {
  pointer-events: none;
}
.products-page .products .products-cards .product-card {
  margin-bottom: 50px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.products-page .products .products-cards .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
@media (max-width: 991.98px) {
  .products-page .products .products-cards .product-card {
    margin-bottom: 40px;
  }
}
@media (max-width: 575.98px) {
  .products-page .products .products-cards .product-card {
    margin-bottom: 30px;
  }
}
.products-page .products .products-cards .product-card figure {
  height: 250px;
  width: 100%;
  border-radius: 12px 12px 0 0;
  position: relative;
  margin: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 991.98px) {
  .products-page .products .products-cards .product-card figure {
    height: 280px;
  }
}
@media (max-width: 575.98px) {
  .products-page .products .products-cards .product-card figure {
    height: 250px;
  }
}
.products-page .products .products-cards .product-card figure .product-sector {
  font-size: 0.75rem;
  background-color: #FFF;
  color: #646573;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 8px 15px;
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.products-page .products .products-cards .product-card .product-content {
  padding: 25px;
}
@media (max-width: 991.98px) {
  .products-page .products .products-cards .product-card .product-content {
    padding: 20px;
  }
}
@media (max-width: 575.98px) {
  .products-page .products .products-cards .product-card .product-content {
    padding: 18px;
  }
}
.products-page .products .products-cards .product-card .product-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
  line-height: 1.4;
}
@media (max-width: 991.98px) {
  .products-page .products .products-cards .product-card .product-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 575.98px) {
  .products-page .products .products-cards .product-card .product-content h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
}
.products-page .products .products-cards .product-card .product-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .products-page .products .products-cards .product-card .product-content p {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }
}
@media (max-width: 575.98px) {
  .products-page .products .products-cards .product-card .product-content p {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }
}
.products-page .products .products-cards .product-card .product-content .demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #b52c1f;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #b52c1f;
}
@media (max-width: 991.98px) {
  .products-page .products .products-cards .product-card .product-content .demo-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}
@media (max-width: 575.98px) {
  .products-page .products .products-cards .product-card .product-content .demo-btn {
    padding: 10px 18px;
    font-size: 0.8rem;
    width: 100%;
    justify-content: center;
  }
}
.products-page .products .products-cards .product-card .product-content .demo-btn svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  transition: transform 0.3s ease;
}
@media (max-width: 575.98px) {
  .products-page .products .products-cards .product-card .product-content .demo-btn svg {
    width: 16px;
    height: 16px;
  }
}
.products-page .products .products-cards .product-card .product-content .demo-btn:hover {
  background: #922419;
  border-color: #922419;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(181, 44, 31, 0.3);
}
.products-page .products .products-cards .product-card .product-content .demo-btn:hover svg {
  transform: translateX(-3px);
}

html[lang=en] .products-page .products .product-sectors .sector-btn.last-li,
[lang=en] .products-page .products .product-sectors .sector-btn.last-li {
  margin-right: 0;
  margin-left: 0;
}

.about-page .col-lg-1, .about-page .col-lg-2, .about-page .col-lg-3, .about-page .col-lg-4, .about-page .col-lg-5, .about-page .col-lg-6, .about-page .col-lg-7, .about-page .col-lg-8, .about-page .col-lg-9, .about-page .col-lg-10, .about-page .col-lg-11, .about-page .col-lg-12, .about-page .col-md-6, .about-page .col-md-3, .about-page .col-md-4, .about-page .col-md-8, .about-page .col-md-9, .about-page .col-sm-4, .about-page .col-sm-6 {
  padding-right: 8px;
  padding-left: 8px;
  margin-bottom: 16px;
}
.about-page .about-section {
  padding: 100px 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .about-page .about-section {
    padding: 60px 0;
  }
}
.about-page .about-section .index-section-header-center {
  margin-bottom: 60px;
}
@media (max-width: 575px) {
  .about-page .about-section .index-section-header-center {
    margin-bottom: 40px;
  }
}
.about-page .about-section .about-content-section {
  margin-bottom: 80px;
}
@media (max-width: 575px) {
  .about-page .about-section .about-content-section {
    margin-bottom: 50px;
  }
}
.about-page .about-section .about-content-section .about-text-block h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0e3e2f;
}
.about-page .about-section .about-content-section .about-text-block p {
  font-size: 1rem;
  color: #646573;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-page .about-section .about-content-section .about-text-block p:last-child {
  margin-bottom: 0;
}
.about-page .about-section .about-content-section .about-image-block img {
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.about-page .about-section .about-values-section {
  margin-bottom: 80px;
}
.about-page .about-section .about-values-section .index-section-header-center {
  margin-bottom: 50px;
}
.about-page .about-section .about-values-section .about-value-card {
  padding: 40px 30px;
  background: #fafafa;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid #e6e6e6;
  height: 100%;
  text-align: center;
  margin-bottom: 24px;
}
.about-page .about-section .about-values-section .about-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: #b52c1f;
}
.about-page .about-section .about-values-section .about-value-card .value-icon {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-page .about-section .about-values-section .about-value-card .value-icon svg {
  width: 48px;
  height: 48px;
  fill: #b52c1f;
  transition: all 0.3s ease;
}
.about-page .about-section .about-values-section .about-value-card:hover .value-icon svg {
  transform: scale(1.1);
}
.about-page .about-section .about-values-section .about-value-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}
.about-page .about-section .about-values-section .about-value-card p {
  font-size: 0.9rem;
  color: #646573;
  line-height: 1.7;
  margin-bottom: 0;
}
.about-page .about-section .about-cta .about-cta-inner {
  padding: 60px 40px;
  background: linear-gradient(135deg, #b52c1f 0%, #8b2218 100%);
  background-image: url(../assets/images/footer.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 575px) {
  .about-page .about-section .about-cta .about-cta-inner {
    padding: 40px 24px;
  }
}
.about-page .about-section .about-cta .about-cta-inner h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
@media (max-width: 575px) {
  .about-page .about-section .about-cta .about-cta-inner h3 {
    font-size: 1.4rem;
  }
}
.about-page .about-section .about-cta .about-cta-inner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}
.about-page .about-section .about-cta .about-cta-inner .book-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: #fff;
  color: #0e3e2f;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.about-page .about-section .about-cta .about-cta-inner .book-btn svg {
  width: 20px;
  height: 20px;
  fill: #0e3e2f;
}
.about-page .about-section .about-cta .about-cta-inner .book-btn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.about-page .about-section .about-cta .about-cta-inner .book-btn:hover svg {
  fill: #fff;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "ar";
  background-color: #FFF;
  height: 100%;
  position: relative;
  overflow-x: hidden;
}

.row {
  overflow: hidden;
}

.container-fluid {
  padding-right: 50px;
  padding-left: 50px;
}
@media (max-width: 991.98px) {
  .container-fluid {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media (max-width: 575.98px) {
  .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 300px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1440px;
  }
}

.row-inside-row {
  margin-right: -8px;
  margin-left: -8px;
}

.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-md-6,
.col-md-3,
.col-md-4,
.col-md-8,
.col-md-9,
.col-sm-4,
.col-sm-6 {
  padding-right: 8px;
  padding-left: 8px;
}

a {
  display: block;
  text-decoration: none;
  color: unset;
}
a:hover {
  color: unset;
  text-decoration: unset;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  display: block;
  position: relative;
}
.section-header .pretitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: #009578;
}
.section-header h3 {
  font-size: 3.5rem;
  margin-bottom: 0;
  font-weight: 700;
  margin-top: 3px;
  margin-bottom: 10px;
  color: #0e3e2f;
}
.section-header h3 span {
  font-weight: 400;
  color: #009578;
}
@media (max-width: 575.98px) {
  .section-header h3 {
    font-size: 2rem;
  }
}
.section-header p {
  display: flex;
  align-items: center;
  width: 60%;
  margin: auto;
  color: #515151;
  font-weight: 500;
  width: 600px;
  margin: 0 auto 0 auto;
  font-size: 0.9rem;
}
@media (max-width: 991.98px) {
  .section-header p {
    width: 90%;
    max-width: 600px;
  }
}
@media (max-width: 575.98px) {
  .section-header p {
    width: 100%;
    font-size: 0.85rem;
  }
}

.index-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .index-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.index-section-header .index-section-header-head span {
  font-size: 0.8rem;
  color: #b52c1f;
  font-weight: 700;
}
@media (max-width: 575.98px) {
  .index-section-header .index-section-header-head span {
    font-size: 0.75rem;
  }
}
.index-section-header .index-section-header-head h3 {
  font-size: 2.75rem;
  font-weight: 700;
}
@media (max-width: 991.98px) {
  .index-section-header .index-section-header-head h3 {
    font-size: 2.25rem;
  }
}
@media (max-width: 575.98px) {
  .index-section-header .index-section-header-head h3 {
    font-size: 1.75rem;
  }
}
.index-section-header p.text {
  font-size: 0.8rem;
  width: 450px;
  max-width: 100%;
}
@media (max-width: 991.98px) {
  .index-section-header p.text {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .index-section-header p.text {
    font-size: 0.75rem;
  }
}
.index-section-header p.text span {
  color: #000;
  font-weight: 600;
  position: relative;
}
.index-section-header p.text span:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #b52c1f;
}

.index-section-header-center {
  text-align: center;
}
.index-section-header-center .index-section-header-head span {
  font-size: 0.8rem;
  color: #b52c1f;
  font-weight: 700;
}
@media (max-width: 575.98px) {
  .index-section-header-center .index-section-header-head span {
    font-size: 0.75rem;
  }
}
.index-section-header-center .index-section-header-head h3 {
  font-size: 2.75rem;
  font-weight: 700;
}
@media (max-width: 991.98px) {
  .index-section-header-center .index-section-header-head h3 {
    font-size: 2.25rem;
  }
}
@media (max-width: 575.98px) {
  .index-section-header-center .index-section-header-head h3 {
    font-size: 1.75rem;
  }
}
.index-section-header-center p.text {
  text-align: center;
  font-size: 0.8rem;
  width: 650px;
  max-width: 100%;
  margin: auto;
}
@media (max-width: 991.98px) {
  .index-section-header-center p.text {
    width: 90%;
  }
}
@media (max-width: 575.98px) {
  .index-section-header-center p.text {
    width: 100%;
    font-size: 0.75rem;
  }
}
.index-section-header-center p.text span {
  color: #000;
  font-weight: 600;
  position: relative;
}
.index-section-header-center p.text span:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
}

.story-section {
  padding: 100px 0;
  background-color: #ffffff;
  position: relative;
}
@media (max-width: 991.98px) {
  .story-section {
    padding: 80px 0;
  }
}
@media (max-width: 575.98px) {
  .story-section {
    padding: 60px 0;
  }
}
.story-section .index-section-header {
  margin-bottom: 75px;
}
@media (max-width: 991.98px) {
  .story-section .index-section-header {
    margin-bottom: 50px;
  }
}
@media (max-width: 575.98px) {
  .story-section .index-section-header {
    margin-bottom: 40px;
  }
}
.story-section .why-icon {
  background: #012702;
  border-radius: 12px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: url(assets/images/footer.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 125px;
}
@media (max-width: 991.98px) {
  .story-section .why-icon {
    height: 400px;
  }
}
@media (max-width: 575.98px) {
  .story-section .why-icon {
    height: 320px;
  }
}
@media (max-width: 991.98px) {
  .story-section .why-icon {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
@media (max-width: 575.98px) {
  .story-section .why-icon {
    margin-bottom: 0px;
    margin-top: 68px;
  }
}
.story-section .why-icon img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.story-section .why-icon .why-icons-floating img {
  position: absolute;
}
.story-section .why-icon .why-icons-floating .w1 {
  top: 170px;
  left: 10px;
  animation: floatCircle 4s ease-in-out infinite;
}
.story-section .why-icon .why-icons-floating .w2 {
  top: 127px;
  right: 65px;
  animation: floatUpDown 5s ease-in-out infinite;
}
@media (max-width: 575.98px) {
  .story-section .why-icon .why-icons-floating .w2 {
    right: 17px;
  }
}
.story-section .why-icon .why-action a {
  padding: 14px 25px 14px 25px;
  color: #ffffff;
  background-color: transparent;
  background-image: radial-gradient(at bottom center, #226941 0%, #0f1614 60%);
  border-radius: 50px;
  width: 215px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px auto 0 auto;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 10px 30px 10px 30px;
  color: #000;
  background: #FFF;
  border-radius: 50px;
  width: 250px;
  max-width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 50px auto 0 auto;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-right: 75px;
}
.story-section .why-icon .why-action a svg {
  fill: #000;
  height: 22px;
  width: 22px;
  margin-left: 10px;
  margin-top: 1px;
}
.story-section .why-icon .why-num {
  position: absolute;
  top: 20px;
  left: 40px;
}
.story-section .why-icon .why-num h3 {
  font-size: 5rem;
  font-weight: 600;
  margin-bottom: -5px;
  justify-content: center;
  font-family: "num" !important;
  color: #FFF;
  text-align: center;
  background-color: transparent;
  background-image: radial-gradient(at bottom right, #DEFFF7 0%, rgba(222, 255, 247, 0.5019607843) 100%);
  background: linear-gradient(180deg, #fff, #999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.story-section .why-icon .why-num p {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  justify-content: center;
  text-align: center;
  margin-bottom: 0;
}
.story-section .why-icon .why-icon-business {
  background: none;
  background-image: none;
  overflow: hidden;
  border: 3px solid #009578;
  box-shadow: 0 12px 40px rgba(0, 149, 120, 0.2);
  padding: 0;
}
.story-section .why-icon .why-icon-business .why-icon-business-img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 991.98px) {
  .story-section .why-icon .why-icon-business .why-icon-business-img {
    min-height: 400px;
  }
}
@media (max-width: 575.98px) {
  .story-section .why-icon .why-icon-business .why-icon-business-img {
    min-height: 320px;
  }
}
.story-section .story-content .story-image-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .story-section .story-content .story-image-wrapper {
    margin-bottom: 40px;
  }
}
.story-section .story-content .story-image-wrapper .story-image {
  width: 100%;
  height: 100%;
  min-height: 600px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 991.98px) {
  .story-section .story-content .story-image-wrapper .story-image {
    min-height: 500px;
    border-radius: 20px;
  }
}
@media (max-width: 575.98px) {
  .story-section .story-content .story-image-wrapper .story-image {
    min-height: 400px;
    border-radius: 16px;
  }
}
.story-section .story-content .story-image-wrapper .story-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.story-section .story-content .story-image-wrapper .story-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.story-section .story-content .story-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
}
@media (max-width: 991.98px) {
  .story-section .story-content .story-cards-wrapper {
    gap: 25px;
  }
}
@media (max-width: 575.98px) {
  .story-section .story-content .story-cards-wrapper {
    gap: 20px;
  }
}
.story-section .story-content .story-text-features {
  margin-bottom: 15px;
}
@media (max-width: 575.98px) {
  .story-section .story-content .story-text-features {
    margin-bottom: 25px;
  }
}
.story-section .story-content .story-text-features .story-intro-text {
  font-size: 1.1rem;
  color: #515151;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: right;
}
@media (max-width: 991.98px) {
  .story-section .story-content .story-text-features .story-intro-text {
    font-size: 1rem;
  }
}
@media (max-width: 575.98px) {
  .story-section .story-content .story-text-features .story-intro-text {
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
  }
}
.story-section .story-content .story-text-features .story-features-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  .story-section .story-content .story-text-features .story-features-row {
    gap: 15px;
  }
}
@media (max-width: 575.98px) {
  .story-section .story-content .story-text-features .story-features-row {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.story-section .story-content .story-text-features .story-features-row .story-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(181, 44, 31, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(181, 44, 31, 0.1);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 0.85rem;
  border: 1px solid rgba(230, 230, 230, 0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
@media (max-width: 991.98px) {
  .story-section .story-content .story-text-features .story-features-row .story-feature-item {
    padding: 10px 16px;
    gap: 8px;
  }
}
@media (max-width: 575.98px) {
  .story-section .story-content .story-text-features .story-features-row .story-feature-item {
    width: 100%;
    padding: 12px 18px;
  }
}
.story-section .story-content .story-text-features .story-features-row .story-feature-item:hover {
  background: rgba(181, 44, 31, 0.1);
  border-color: rgba(181, 44, 31, 0.2);
  transform: translateY(-2px);
}
.story-section .story-content .story-text-features .story-features-row .story-feature-item svg {
  width: 20px;
  height: 20px;
  stroke: #b52c1f;
  stroke-width: 2.5;
  flex-shrink: 0;
}
@media (max-width: 991.98px) {
  .story-section .story-content .story-text-features .story-features-row .story-feature-item svg {
    width: 18px;
    height: 18px;
  }
}
.story-section .story-content .story-text-features .story-features-row .story-feature-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}
@media (max-width: 991.98px) {
  .story-section .story-content .story-text-features .story-features-row .story-feature-item span {
    font-size: 0.9rem;
  }
}
@media (max-width: 575.98px) {
  .story-section .story-content .story-text-features .story-features-row .story-feature-item span {
    font-size: 0.95rem;
  }
}
.story-section .story-content .story-cards-row {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
@media (max-width: 991.98px) {
  .story-section .story-content .story-cards-row {
    gap: 15px;
  }
}
@media (max-width: 575.98px) {
  .story-section .story-content .story-cards-row {
    flex-direction: column;
    gap: 20px;
  }
}
.story-section .story-content .story-cards-row .story-card {
  flex: 1;
  min-width: 0;
}
@media (max-width: 991.98px) {
  .story-section .story-content .story-cards-row .story-card {
    padding: 25px 25px;
  }
}
@media (max-width: 575.98px) {
  .story-section .story-content .story-cards-row .story-card {
    padding: 20px 24px;
  }
}
.story-section .story-content .story-cards-row .story-card .story-card-icon {
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .story-section .story-content .story-cards-row .story-card .story-card-icon {
    margin-bottom: 18px;
  }
}
@media (max-width: 575.98px) {
  .story-section .story-content .story-cards-row .story-card .story-card-icon {
    margin-bottom: 15px;
  }
}
.story-section .story-content .story-cards-row .story-card .story-card-icon svg {
  width: 40px;
  height: 40px;
}
@media (max-width: 991.98px) {
  .story-section .story-content .story-cards-row .story-card .story-card-icon svg {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 575.98px) {
  .story-section .story-content .story-cards-row .story-card .story-card-icon svg {
    width: 40px;
    height: 40px;
  }
}
.story-section .story-content .story-cards-row .story-card .story-card-content h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}
@media (max-width: 991.98px) {
  .story-section .story-content .story-cards-row .story-card .story-card-content h4 {
    font-size: 1.35rem;
    margin-bottom: 12px;
  }
}
@media (max-width: 575.98px) {
  .story-section .story-content .story-cards-row .story-card .story-card-content h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }
}
.story-section .story-content .story-cards-row .story-card .story-card-content p {
  font-size: 0.85rem;
  line-height: 1.7;
}
@media (max-width: 991.98px) {
  .story-section .story-content .story-cards-row .story-card .story-card-content p {
    font-size: 0.9rem;
  }
}
@media (max-width: 575.98px) {
  .story-section .story-content .story-cards-row .story-card .story-card-content p {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}
.story-section .story-content .story-card {
  background: #FFFFFF;
  border-radius: 24px;
  border: 1px solid rgba(230, 230, 230, 0.5);
  padding: 50px 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .story-section .story-content .story-card {
    padding: 40px 30px;
    border-radius: 20px;
  }
}
@media (max-width: 575.98px) {
  .story-section .story-content .story-card {
    padding: 30px 24px;
    border-radius: 16px;
  }
}
.story-section .story-content .story-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(181, 44, 31, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}
.story-section .story-content .story-card:hover {
  transform: translateY(-8px);
}
.story-section .story-content .story-card:hover::before {
  opacity: 1;
}
.story-section .story-content .story-card:hover .story-card-icon {
  transform: scale(1.1);
}
.story-section .story-content .story-card:hover .story-card-icon svg {
  stroke: #b52c1f;
}
.story-section .story-content .story-card:hover .story-card-content h4 {
  color: #b52c1f;
}
.story-section .story-content .story-card .story-card-icon {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}
@media (max-width: 575.98px) {
  .story-section .story-content .story-card .story-card-icon {
    margin-bottom: 20px;
  }
}
.story-section .story-content .story-card .story-card-icon svg {
  width: 60px;
  height: 60px;
  stroke: #333;
  stroke-width: 2;
  transition: all 0.3s ease;
}
@media (max-width: 575.98px) {
  .story-section .story-content .story-card .story-card-icon svg {
    width: 50px;
    height: 50px;
  }
}
.story-section .story-content .story-card .story-card-content {
  position: relative;
  z-index: 1;
}
.story-section .story-content .story-card .story-card-content h4 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
  transition: color 0.3s ease;
}
@media (max-width: 991.98px) {
  .story-section .story-content .story-card .story-card-content h4 {
    font-size: 1.75rem;
  }
}
@media (max-width: 575.98px) {
  .story-section .story-content .story-card .story-card-content h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}
.story-section .story-content .story-card .story-card-content p {
  font-size: 1rem;
  color: #515151;
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 575.98px) {
  .story-section .story-content .story-card .story-card-content p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
}
.story-section .story-content .story-card.vision-card .story-card-icon svg {
  stroke: #b52c1f;
}
.story-section .story-content .story-card.value-card .story-card-icon svg {
  stroke: #b52c1f;
}

@keyframes rotate {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes floatCircle {
  0% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(20px, -15px) scale(1.05);
  }
  50% {
    transform: translate(0, -30px) scale(1.1);
  }
  75% {
    transform: translate(-20px, -15px) scale(1.05);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes floatUpDown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.solution-pain-section {
  padding: 100px 0;
  background-color: #f5f8fa;
  position: relative;
}
@media (max-width: 991.98px) {
  .solution-pain-section {
    padding: 80px 0;
  }
}
@media (max-width: 575.98px) {
  .solution-pain-section {
    padding: 60px 0;
  }
}
.solution-pain-section .solution-pain-container {
  margin-top: 75px;
}
@media (max-width: 991.98px) {
  .solution-pain-section .solution-pain-container {
    margin-top: 50px;
  }
}
@media (max-width: 575.98px) {
  .solution-pain-section .solution-pain-container {
    margin-top: 40px;
  }
}
.solution-pain-section .solution-pain-container .solution-side,
.solution-pain-section .solution-pain-container .problem-side {
  background-color: #FFF;
  border-radius: 12px;
  padding: 50px 40px;
  height: 100%;
  border: 1px solid #e6e6e6;
  position: relative;
}
@media (max-width: 991.98px) {
  .solution-pain-section .solution-pain-container .solution-side,
  .solution-pain-section .solution-pain-container .problem-side {
    margin-bottom: 30px;
    padding: 40px 30px;
  }
}
@media (max-width: 575.98px) {
  .solution-pain-section .solution-pain-container .solution-side,
  .solution-pain-section .solution-pain-container .problem-side {
    padding: 30px 20px;
  }
}
.solution-pain-section .solution-pain-container .solution-side .solution-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 65px;
}
@media (max-width: 575.98px) {
  .solution-pain-section .solution-pain-container .solution-side .solution-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 40px;
  }
}
.solution-pain-section .solution-pain-container .solution-side .solution-header h4 {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin: 0;
  width: 65%;
}
@media (max-width: 991.98px) {
  .solution-pain-section .solution-pain-container .solution-side .solution-header h4 {
    font-size: 1.75rem;
  }
}
@media (max-width: 575.98px) {
  .solution-pain-section .solution-pain-container .solution-side .solution-header h4 {
    font-size: 1.5rem;
    width: 100%;
  }
}
.solution-pain-section .solution-pain-container .solution-side .solution-header .solution-badge {
  background-color: #b52c1f;
  color: #FFF;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}
.solution-pain-section .solution-pain-container .solution-side .solution-content {
  position: relative;
  min-height: 400px;
}
@media (max-width: 575.98px) {
  .solution-pain-section .solution-pain-container .solution-side .solution-content {
    min-height: auto;
  }
}
.solution-pain-section .solution-pain-container .solution-side .solution-content .connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}
.solution-pain-section .solution-pain-container .solution-side .solution-content .connection-lines .line-to-service {
  stroke: #b52c1f;
  stroke-width: 0.4px;
  stroke-dasharray: 3, 1;
  filter: drop-shadow(0 0 1px rgba(181, 44, 31, 0.3));
  animation: dash 20s linear infinite;
}
@keyframes dash {
  to {
    stroke-dashoffset: -100;
  }
}
.solution-pain-section .solution-pain-container .solution-side .solution-content .solution-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.solution-pain-section .solution-pain-container .solution-side .solution-content .solution-center .client-icon,
.solution-pain-section .solution-pain-container .solution-side .solution-content .solution-center .nagd-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #f5f8fa;
  border: 2px solid #b52c1f;
  margin: -6px 0 0 0;
}
.solution-pain-section .solution-pain-container .solution-side .solution-content .solution-center .client-icon svg,
.solution-pain-section .solution-pain-container .solution-side .solution-content .solution-center .nagd-icon svg {
  width: 50px;
  height: 50px;
  fill: #b52c1f;
  margin-bottom: 10px;
}
.solution-pain-section .solution-pain-container .solution-side .solution-content .solution-center .client-icon img,
.solution-pain-section .solution-pain-container .solution-side .solution-content .solution-center .nagd-icon img {
  max-width: 100%;
  height: 32px;
}
.solution-pain-section .solution-pain-container .solution-side .solution-content .solution-center .client-icon span,
.solution-pain-section .solution-pain-container .solution-side .solution-content .solution-center .nagd-icon span {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
}
.solution-pain-section .solution-pain-container .solution-side .solution-content .solution-center .connection-line {
  width: 4px;
  height: 60px;
  background: linear-gradient(to bottom, #b52c1f, #b52c1f);
  margin: 10px 0;
  position: relative;
}
.solution-pain-section .solution-pain-container .solution-side .solution-content .solution-center .connection-line:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #b52c1f;
}
.solution-pain-section .solution-pain-container .solution-side .solution-content .services-managed {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .solution-pain-section .solution-pain-container .solution-side .solution-content .services-managed {
    gap: 15px;
  }
}
@media (max-width: 575.98px) {
  .solution-pain-section .solution-pain-container .solution-side .solution-content .services-managed {
    gap: 12px;
  }
}
.solution-pain-section .solution-pain-container .solution-side .solution-content .services-managed .service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #f5f8fa;
  border-radius: 50%;
  min-width: 120px;
  border: 1px solid #e6e6e6;
}
@media (max-width: 575.98px) {
  .solution-pain-section .solution-pain-container .solution-side .solution-content .services-managed .service-item {
    min-width: 100px;
    padding: 15px;
  }
}
.solution-pain-section .solution-pain-container .solution-side .solution-content .services-managed .service-item svg {
  width: 40px;
  height: 40px;
  fill: #b52c1f;
  margin-bottom: 10px;
}
.solution-pain-section .solution-pain-container .solution-side .solution-content .services-managed .service-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000;
}
.solution-pain-section .solution-pain-container .solution-side .solution-message {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e6e6e6;
  text-align: center;
}
.solution-pain-section .solution-pain-container .solution-side .solution-message p {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  margin: 0;
}
.solution-pain-section .solution-pain-container .problem-side .problem-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 575.98px) {
  .solution-pain-section .solution-pain-container .problem-side .problem-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.solution-pain-section .solution-pain-container .problem-side .problem-header h4 {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin: 0;
  width: 65%;
}
@media (max-width: 991.98px) {
  .solution-pain-section .solution-pain-container .problem-side .problem-header h4 {
    font-size: 1.75rem;
  }
}
@media (max-width: 575.98px) {
  .solution-pain-section .solution-pain-container .problem-side .problem-header h4 {
    font-size: 1.5rem;
    width: 100%;
  }
}
.solution-pain-section .solution-pain-container .problem-side .problem-header .problem-badge {
  background-color: #b52c1f;
  color: #FFF;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}
.solution-pain-section .solution-pain-container .problem-side .problem-content {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .solution-pain-section .solution-pain-container .problem-side .problem-content {
    min-height: 450px;
  }
}
@media (max-width: 575.98px) {
  .solution-pain-section .solution-pain-container .problem-side .problem-content {
    min-height: auto;
  }
}
.solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper {
    height: 450px;
  }
}
@media (max-width: 575.98px) {
  .solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper {
    height: auto;
    min-height: 400px;
  }
}
.solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper .problem-connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}
.solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper .problem-connection-lines .problem-line {
  stroke: #b52c1f;
  stroke-width: 0.4px;
  stroke-dasharray: 3, 1;
  filter: drop-shadow(0 0 2px rgba(181, 44, 31, 0.4));
  animation: problemDash 15s linear infinite;
}
@keyframes problemDash {
  to {
    stroke-dashoffset: -100;
  }
}
.solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper .problem-client {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #f5f8fa;
  border: 2px solid #b52c1f;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper .problem-client svg {
  width: 50px;
  height: 50px;
  fill: #b52c1f;
  margin-bottom: 10px;
}
.solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper .problem-client span {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
}
.solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper .separate-services {
  position: relative;
  width: 100%;
  height: 100%;
}
.solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper .separate-services .service-item.separate {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  background-color: #fff5f5;
  border-radius: 12px;
  border: 1px solid #b52c1f;
  position: absolute;
  width: 130px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #f5f8fa;
  border-radius: 50%;
  min-width: 120px;
  border: 1px solid #e6e6e6;
  z-index: 5;
}
.solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper .separate-services .service-item.separate svg {
  width: 35px;
  height: 35px;
  fill: #b52c1f;
}
.solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper .separate-services .service-item.separate span:not(.cost-badge) {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  flex: 1;
}
.solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper .separate-services .service-item.separate .cost-badge {
  background-color: #b52c1f;
  color: #FFF;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}
.solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper .separate-services .service-item.separate.service-1 {
  transform: translate(calc(-50% + 180px), calc(-50% - 130px));
}
.solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper .separate-services .service-item.separate.service-2 {
  transform: translate(calc(-50% + 180px), calc(-50% + 130px));
}
.solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper .separate-services .service-item.separate.service-3 {
  transform: translate(calc(-50% - 180px), calc(-50% + 130px));
}
.solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper .separate-services .service-item.separate.service-4 {
  transform: translate(calc(-50% - 180px), calc(-50% - 130px));
}
@media (max-width: 991.98px) {
  .solution-pain-section {
    padding: 60px 0;
  }
  .solution-pain-section .solution-pain-container {
    margin-top: 50px;
  }
  .solution-pain-section .solution-pain-container .solution-side,
  .solution-pain-section .solution-pain-container .problem-side {
    padding: 35px 25px;
  }
  .solution-pain-section .solution-pain-container .solution-side .solution-content,
  .solution-pain-section .solution-pain-container .problem-side .problem-content {
    min-height: auto;
  }
  .solution-pain-section .solution-pain-container .solution-side .solution-content .services-managed {
    flex-direction: column;
  }
  .solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper {
    height: 400px;
  }
  .solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper .separate-services .service-item.separate {
    width: 160px;
    padding: 15px 20px;
  }
  .solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper .separate-services .service-item.separate.service-1 {
    transform: translate(calc(-50% + 140px), calc(-50% - 80px));
  }
  .solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper .separate-services .service-item.separate.service-2 {
    transform: translate(calc(-50% + 140px), calc(-50% + 80px));
  }
  .solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper .separate-services .service-item.separate.service-3 {
    transform: translate(calc(-50% - 140px), calc(-50% + 80px));
  }
  .solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper .separate-services .service-item.separate.service-4 {
    transform: translate(calc(-50% - 140px), calc(-50% - 80px));
  }
}
@media (max-width: 575.98px) {
  .solution-pain-section {
    padding: 40px 0;
  }
  .solution-pain-section .solution-pain-container {
    margin-top: 30px;
  }
  .solution-pain-section .solution-pain-container .solution-side .solution-header,
  .solution-pain-section .solution-pain-container .problem-side .problem-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .solution-pain-section .solution-pain-container .solution-side .solution-header h4,
  .solution-pain-section .solution-pain-container .problem-side .problem-header h4 {
    font-size: 1.5rem;
    width: 100%;
  }
  .solution-pain-section .solution-pain-container .solution-side .solution-content .solution-center .client-icon,
  .solution-pain-section .solution-pain-container .solution-side .solution-content .solution-center .nagd-icon,
  .solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper .problem-client {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 575.98px) and (max-width: 575.98px) {
  .solution-pain-section .solution-pain-container .solution-side .solution-content .solution-center .client-icon,
  .solution-pain-section .solution-pain-container .solution-side .solution-content .solution-center .nagd-icon,
  .solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper .problem-client {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 575.98px) {
  .solution-pain-section .solution-pain-container .solution-side .solution-content .solution-center .client-icon svg,
  .solution-pain-section .solution-pain-container .solution-side .solution-content .solution-center .nagd-icon svg,
  .solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper .problem-client svg {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 575.98px) and (max-width: 575.98px) {
  .solution-pain-section .solution-pain-container .solution-side .solution-content .solution-center .client-icon svg,
  .solution-pain-section .solution-pain-container .solution-side .solution-content .solution-center .nagd-icon svg,
  .solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper .problem-client svg {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 575.98px) {
  .solution-pain-section .solution-pain-container .problem-side .problem-content {
    min-height: 600px;
  }
  .solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper {
    height: 600px;
  }
  .solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper .problem-connection-lines {
    display: none;
  }
  .solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper .separate-services {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper .separate-services .service-item.separate {
    position: relative;
    width: 100%;
    max-width: 280px;
    top: auto;
    left: auto;
    transform: none;
    margin-top: 20px;
  }
  .solution-pain-section .solution-pain-container .problem-side .problem-content .problem-center-wrapper .separate-services .service-item.separate:first-child {
    margin-top: 180px;
  }
}
.solution-pain-section lord-icon {
  height: 60px;
  width: 60px;
}

.customer-segmentation {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background-color: #FFF;
}
@media (max-width: 991.98px) {
  .customer-segmentation {
    padding: 80px 0;
  }
}
@media (max-width: 575.98px) {
  .customer-segmentation {
    padding: 60px 0;
  }
}
.customer-segmentation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(181, 44, 31, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(181, 44, 31, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.customer-segmentation .row {
  padding: 20px 5px;
}
.customer-segmentation .segmentation-cards {
  margin-top: 75px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .customer-segmentation .segmentation-cards {
    margin-top: 50px;
  }
}
@media (max-width: 575.98px) {
  .customer-segmentation .segmentation-cards {
    margin-top: 40px;
  }
}
.customer-segmentation .segmentation-cards .segmentation-card {
  background: #FFFFFF;
  border-radius: 24px;
  border: 1px solid rgba(230, 230, 230, 0.5);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: row;
  min-height: 450px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
}
@media (max-width: 991.98px) {
  .customer-segmentation .segmentation-cards .segmentation-card {
    min-height: 400px;
    border-radius: 20px;
  }
}
@media (max-width: 575.98px) {
  .customer-segmentation .segmentation-cards .segmentation-card {
    min-height: auto;
    border-radius: 16px;
  }
}
.customer-segmentation .segmentation-cards .segmentation-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(181, 44, 31, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}
.customer-segmentation .segmentation-cards .segmentation-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(181, 44, 31, 0.1), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.customer-segmentation .segmentation-cards .segmentation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(181, 44, 31, 0.1);
  border-color: rgba(181, 44, 31, 0.2);
}
.customer-segmentation .segmentation-cards .segmentation-card:hover::before {
  opacity: 1;
}
.customer-segmentation .segmentation-cards .segmentation-card:hover::after {
  opacity: 1;
}
.customer-segmentation .segmentation-cards .segmentation-card:hover .card-content .card-header h3 {
  color: #b52c1f;
  transform: translateX(-4px);
}
.customer-segmentation .segmentation-cards .segmentation-card .card-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 40px;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .customer-segmentation .segmentation-cards .segmentation-card .card-content {
    padding: 35px 30px;
  }
}
@media (max-width: 575.98px) {
  .customer-segmentation .segmentation-cards .segmentation-card .card-content {
    padding: 30px 24px;
  }
}
.customer-segmentation .segmentation-cards .segmentation-card .card-content .card-header {
  margin-bottom: 35px;
  gap: 20px;
  background-color: transparent;
  padding: 0 0 25px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid rgba(230, 230, 230, 0.5);
}
.customer-segmentation .segmentation-cards .segmentation-card .card-content .card-header .card-header-info {
  flex: 1;
}
.customer-segmentation .segmentation-cards .segmentation-card .card-content .card-header h3 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #000;
  margin: 12px 0 0 0;
  transition: all 0.3s ease;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
@media (max-width: 991.98px) {
  .customer-segmentation .segmentation-cards .segmentation-card .card-content .card-header h3 {
    font-size: 1.75rem;
  }
}
@media (max-width: 575.98px) {
  .customer-segmentation .segmentation-cards .segmentation-card .card-content .card-header h3 {
    font-size: 1.5rem;
  }
}
.customer-segmentation .segmentation-cards .segmentation-card .card-content .card-header p.card-description {
  width: 45%;
  font-size: 0.95rem;
  margin-bottom: 0;
  margin-top: 8px;
  color: #666;
  line-height: 1.6;
  font-weight: 400;
}
@media (max-width: 991.98px) {
  .customer-segmentation .segmentation-cards .segmentation-card .card-content .card-header p.card-description {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .customer-segmentation .segmentation-cards .segmentation-card .card-content .card-header p.card-description {
    font-size: 0.9rem;
  }
}
.customer-segmentation .segmentation-cards .segmentation-card .card-content .card-header .card-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(181, 44, 31, 0.1), rgba(181, 44, 31, 0.05));
  color: #b52c1f;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(181, 44, 31, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.customer-segmentation .segmentation-cards .segmentation-card .card-content .card-body {
  flex: 1;
  padding: 0;
  margin: 25px 0;
}
.customer-segmentation .segmentation-cards .segmentation-card .card-content .card-body .card-description {
  font-size: 1rem;
  color: #515151;
  line-height: 1.7;
  margin-bottom: 10px;
}
.customer-segmentation .segmentation-cards .segmentation-card .card-content .card-body .card-services-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
  text-align: right;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.customer-segmentation .segmentation-cards .segmentation-card .card-content .card-body .card-services {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.customer-segmentation .segmentation-cards .segmentation-card .card-content .card-body .card-services li {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 0.85rem;
  border: 1px solid rgba(230, 230, 230, 0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.customer-segmentation .segmentation-cards .segmentation-card .card-content .card-body .card-services li:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-color: rgba(181, 44, 31, 0.3);
  box-shadow: 0 4px 12px rgba(181, 44, 31, 0.15);
}
.customer-segmentation .segmentation-cards .segmentation-card .card-content .card-body .card-services li:hover svg {
  transform: scale(1.1);
}
.customer-segmentation .segmentation-cards .segmentation-card .card-content .card-body .card-services li svg {
  width: 18px;
  height: 18px;
  fill: #b52c1f;
  margin-left: 8px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.customer-segmentation .segmentation-cards .segmentation-card .card-content .card-body .card-services li span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
}
.customer-segmentation .segmentation-cards .segmentation-card .card-content .card-footer {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(230, 230, 230, 0.5);
  background-color: transparent;
  padding-right: 0;
  padding-left: 0;
}
.customer-segmentation .segmentation-cards .segmentation-card .card-content .card-footer .segmentation-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #b52c1f, #d63222);
  color: #FFF;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  border: none;
  box-shadow: 0 4px 12px rgba(181, 44, 31, 0.25), 0 2px 4px rgba(181, 44, 31, 0.15);
  position: relative;
  overflow: hidden;
}
.customer-segmentation .segmentation-cards .segmentation-card .card-content .card-footer .segmentation-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.customer-segmentation .segmentation-cards .segmentation-card .card-content .card-footer .segmentation-btn:hover {
  background: linear-gradient(135deg, #9a2419, #b52c1f);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(181, 44, 31, 0.4), 0 6px 12px rgba(181, 44, 31, 0.25);
  color: #FFF;
}
.customer-segmentation .segmentation-cards .segmentation-card .card-content .card-footer .segmentation-btn:hover::before {
  left: 100%;
}
.customer-segmentation .segmentation-cards .segmentation-card .card-content .card-footer .segmentation-btn:hover svg {
  transform: translateX(6px) scale(1.1);
}
.customer-segmentation .segmentation-cards .segmentation-card .card-content .card-footer .segmentation-btn:active {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 6px 16px rgba(181, 44, 31, 0.3), 0 3px 6px rgba(181, 44, 31, 0.2);
}
.customer-segmentation .segmentation-cards .segmentation-card .card-content .card-footer .segmentation-btn svg {
  width: 20px;
  height: 20px;
  fill: #FFF;
  transition: transform 0.3s ease;
}
.customer-segmentation .segmentation-cards .row > div:first-child .segmentation-card .card-content .card-footer .segmentation-btn {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25), 0 2px 4px rgba(0, 0, 0, 0.15);
}
.customer-segmentation .segmentation-cards .row > div:first-child .segmentation-card .card-content .card-footer .segmentation-btn:hover {
  background: linear-gradient(135deg, #2d2d2d, #3d3d3d);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 6px 12px rgba(0, 0, 0, 0.25);
}
.customer-segmentation .segmentation-cards .row > div:first-child .segmentation-card .card-content .card-footer .segmentation-btn:hover svg {
  transform: translateX(6px) scale(1.1);
}
.customer-segmentation .segmentation-cards .row > div:first-child .segmentation-card .card-content .card-footer .segmentation-btn:active {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3), 0 3px 6px rgba(0, 0, 0, 0.2);
}
@media (max-width: 991.98px) {
  .customer-segmentation {
    padding: 80px 0;
  }
  .customer-segmentation .segmentation-cards {
    margin-top: 50px;
  }
  .customer-segmentation .segmentation-cards .segmentation-card {
    margin-bottom: 30px;
    min-height: 400px;
  }
  .customer-segmentation .segmentation-cards .segmentation-card .card-content {
    padding: 35px 30px;
  }
  .customer-segmentation .segmentation-cards .segmentation-card .card-content .card-header h3 {
    font-size: 1.75rem;
  }
  .customer-segmentation .segmentation-cards .segmentation-card .card-content .card-header p.card-description {
    width: 100%;
    margin-top: 15px;
  }
}
@media (max-width: 575.98px) {
  .customer-segmentation {
    padding: 60px 0;
  }
  .customer-segmentation .segmentation-cards {
    margin-top: 40px;
  }
  .customer-segmentation .segmentation-cards .segmentation-card {
    min-height: auto;
    border-radius: 20px;
  }
  .customer-segmentation .segmentation-cards .segmentation-card .card-content {
    padding: 30px 24px;
  }
  .customer-segmentation .segmentation-cards .segmentation-card .card-content .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .customer-segmentation .segmentation-cards .segmentation-card .card-content .card-header h3 {
    font-size: 1.5rem;
  }
  .customer-segmentation .segmentation-cards .segmentation-card .card-content .card-header p.card-description {
    width: 100%;
    font-size: 0.9rem;
    margin-top: 10px;
  }
  .customer-segmentation .segmentation-cards .segmentation-card .card-content .card-body {
    margin: 20px 0;
  }
  .customer-segmentation .segmentation-cards .segmentation-card .card-content .card-body .card-services-label {
    font-size: 0.8rem;
    margin-bottom: 20px;
  }
  .customer-segmentation .segmentation-cards .segmentation-card .card-content .card-body .card-services {
    gap: 10px;
  }
  .customer-segmentation .segmentation-cards .segmentation-card .card-content .card-body .card-services li {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  .customer-segmentation .segmentation-cards .segmentation-card .card-content .card-body .card-services li span {
    font-size: 0.8rem;
  }
  .customer-segmentation .segmentation-cards .segmentation-card .card-content .card-body .card-services li svg {
    width: 16px;
    height: 16px;
    margin-left: 6px;
  }
  .customer-segmentation .segmentation-cards .segmentation-card .card-content .card-footer {
    margin-top: 25px;
    padding-top: 20px;
  }
  .customer-segmentation .segmentation-cards .segmentation-card .card-content .card-footer .segmentation-btn {
    padding: 14px 28px;
    font-size: 0.9rem;
  }
  .customer-segmentation .segmentation-cards .segmentation-card .card-content .card-footer .segmentation-btn svg {
    width: 18px;
    height: 18px;
  }
}

.segmentation-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #b52c1f, #d63222);
  color: #FFF;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  border: none;
  box-shadow: 0 4px 12px rgba(181, 44, 31, 0.25), 0 2px 4px rgba(181, 44, 31, 0.15);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.segmentation-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.segmentation-btn:hover {
  background: linear-gradient(135deg, #9a2419, #b52c1f);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(181, 44, 31, 0.4), 0 6px 12px rgba(181, 44, 31, 0.25);
  color: #FFF;
}
.segmentation-btn:hover::before {
  left: 100%;
}
.segmentation-btn:hover svg {
  transform: translateX(6px) scale(1.1);
}
.segmentation-btn:active {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 6px 16px rgba(181, 44, 31, 0.3), 0 3px 6px rgba(181, 44, 31, 0.2);
}
.segmentation-btn svg {
  width: 20px;
  height: 20px;
  fill: #FFF;
  transition: transform 0.3s ease;
}

.partners-section {
  padding: 0px 0 40px 0;
  background-color: #FFF;
  position: relative;
  overflow: hidden;
  direction: ltr;
}
@media (max-width: 575.98px) {
  .partners-section {
    padding: 30px 0;
  }
}
.partners-section .partners-slider-wrapper {
  margin-top: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.partners-section .partners-slider-wrapper::before, .partners-section .partners-slider-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 150px;
  z-index: 2;
  pointer-events: none;
}
.partners-section .partners-slider-row {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.partners-section .partners-slider-row::before, .partners-section .partners-slider-row::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.partners-section .partners-slider-row::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}
.partners-section .partners-slider-row::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}
.partners-section .partners-slider-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: -moz-fit-content;
  width: fit-content;
}
.partners-section .partners-slider-track.slide-right {
  animation: scrollRight 30s linear infinite;
}
.partners-section .partners-slider-track.slide-left {
  animation: scrollLeft 30s linear infinite;
}
.partners-section .partners-slider-track:hover {
  animation-play-state: paused;
}
.partners-section .partner-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners-section .partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transition: all 0.3s ease;
  opacity: 0.9;
}
.partners-section .partner-logo:hover {
  transform: scale(1.1);
  opacity: 1;
}
.partners-section .partner-logo img {
  max-width: 100%;
  max-height: 40px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(0.3);
  transition: filter 0.3s ease;
}
.partners-section .partner-logo:hover img {
  filter: grayscale(0);
}
@keyframes scrollRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scrollLeft {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@media (max-width: 991.98px) {
  .partners-section {
    padding: 40px 0;
  }
  .partners-section .partners-slider-wrapper::before, .partners-section .partners-slider-wrapper::after {
    height: 100px;
  }
  .partners-section .partners-slider-row::before, .partners-section .partners-slider-row::after {
    width: 80px;
  }
  .partners-section .partners-slider-track {
    gap: 40px;
  }
  .partners-section .partner-logo {
    padding: 15px;
  }
  .partners-section .partner-logo img {
    max-height: 60px;
  }
}
@media (max-width: 575.98px) {
  .partners-section {
    padding: 30px 0;
  }
  .partners-section .partners-slider-wrapper::before, .partners-section .partners-slider-wrapper::after {
    height: 80px;
  }
  .partners-section .partners-slider-row::before, .partners-section .partners-slider-row::after {
    width: 50px;
  }
  .partners-section .partners-slider-track {
    gap: 30px;
    animation-duration: 20s;
  }
  .partners-section .partner-logo {
    padding: 10px;
  }
  .partners-section .partner-logo img {
    max-height: 50px;
  }
}

.added-values-section {
  padding: 80px 0;
  background-color: #f8fafc;
  direction: rtl;
}
@media (max-width: 575.98px) {
  .added-values-section {
    padding: 50px 0;
  }
}
.added-values-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.added-values-section .section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 10px;
}
@media (max-width: 575.98px) {
  .added-values-section .section-header h2 {
    font-size: 1.8rem;
  }
}
.added-values-section .section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}
.added-values-section .added-values-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: nowrap;
}
@media (max-width: 991.98px) {
  .added-values-section .added-values-wrapper {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .added-values-section .added-values-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
}
.added-values-section .value-flow-line {
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  height: 80%;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 575.98px) {
  .added-values-section .value-flow-line {
    display: none;
  }
}
.added-values-section .value-flow-line svg {
  width: 100%;
  height: 100%;
  display: block;
}
.added-values-section .value-flow-line path {
  fill: none;
  stroke: #b52c1f;
  stroke-width: 2;
  stroke-dasharray: 8 10;
  animation: dashMove 6s linear infinite;
  opacity: 0.4;
}
.added-values-section .value-item {
  position: relative;
  z-index: 1;
  flex: 1;
  background-color: #fff;
  border-radius: 24px;
  padding: 30px 25px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid #edf2f7;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
@media (max-width: 991.98px) {
  .added-values-section .value-item {
    flex: 0 1 260px;
  }
}
@media (max-width: 575.98px) {
  .added-values-section .value-item {
    padding: 24px 20px;
    max-width: 100%;
  }
}
.added-values-section .value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  border-color: #b52c1f;
}
.added-values-section .value-item .icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #b52c1f, #ff4d4f);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(181, 44, 31, 0.45);
}
@media (max-width: 575.98px) {
  .added-values-section .value-item .icon-circle {
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
  }
}
.added-values-section .value-item .icon-circle svg {
  width: 34px;
  height: 34px;
  fill: #fff;
}
@media (max-width: 575.98px) {
  .added-values-section .value-item .icon-circle svg {
    width: 28px;
    height: 28px;
  }
}
.added-values-section .value-item svg {
  width: 34px;
  height: 34px;
  fill: #b52c1f;
}
.added-values-section .value-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}
@media (max-width: 575.98px) {
  .added-values-section .value-item h3 {
    font-size: 1.15rem;
  }
}
.added-values-section .value-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.9;
  margin: 0;
}
@media (max-width: 575.98px) {
  .added-values-section .value-item p {
    font-size: 0.9rem;
  }
}

@keyframes dashMove {
  to {
    stroke-dashoffset: -200;
  }
}
.erp-section {
  padding: 80px 0;
  background-color: #fff;
  direction: rtl;
}
@media (max-width: 991.98px) {
  .erp-section {
    padding: 60px 0;
  }
}
@media (max-width: 575.98px) {
  .erp-section {
    padding: 50px 0;
  }
}
.erp-section .erp-cards {
  margin-top: 50px;
}
@media (max-width: 575.98px) {
  .erp-section .erp-cards {
    margin-top: 35px;
  }
}
.erp-section .erp-slider-wrapper {
  position: relative;
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
  direction: ltr;
}
@media (max-width: 575.98px) {
  .erp-section .erp-slider-wrapper {
    margin-top: 35px;
    gap: 15px;
  }
}
.erp-section .erp-slider-btn {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #e6e6e6;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
@media (max-width: 575.98px) {
  .erp-section .erp-slider-btn {
    width: 40px;
    height: 40px;
  }
}
.erp-section .erp-slider-btn svg {
  width: 24px;
  height: 24px;
  fill: #b52c1f;
  transition: fill 0.3s ease;
}
@media (max-width: 575.98px) {
  .erp-section .erp-slider-btn svg {
    width: 20px;
    height: 20px;
  }
}
.erp-section .erp-slider-btn:hover {
  border-color: #b52c1f;
  background: #b52c1f;
}
.erp-section .erp-slider-btn:hover svg {
  fill: #fff;
}
.erp-section .erp-slider-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.erp-section .erp-slider-btn:disabled:hover {
  border-color: #e6e6e6;
  background: #fff;
}
.erp-section .erp-slider-btn:disabled:hover svg {
  fill: #b52c1f;
}
.erp-section .erp-slider-container {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.erp-section .erp-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 30px;
}
@media (max-width: 991.98px) {
  .erp-section .erp-slider-track {
    gap: 25px;
  }
}
@media (max-width: 575.98px) {
  .erp-section .erp-slider-track {
    gap: 20px;
  }
}
.erp-section .erp-slider-item {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 0;
}
@media (max-width: 991.98px) {
  .erp-section .erp-slider-item {
    flex: 0 0 calc(50% - 12.5px);
  }
}
@media (max-width: 575.98px) {
  .erp-section .erp-slider-item {
    flex: 0 0 100%;
  }
}
.erp-section .erp-slider-item .erp-card {
  margin-bottom: 0;
  height: 100%;
}
.erp-section .erp-card {
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 32px 28px 28px;
  height: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 10px;
}
@media (max-width: 991.98px) {
  .erp-section .erp-card {
    padding: 28px 24px 24px;
  }
}
@media (max-width: 575.98px) {
  .erp-section .erp-card {
    padding: 24px 20px 20px;
    margin-bottom: 16px;
  }
}
.erp-section .erp-card--odoo {
  box-shadow: inset 16px -16px 40px -12px rgba(135, 90, 123, 0.2);
}
.erp-section .erp-card--sap {
  box-shadow: inset 16px -16px 40px -12px rgba(15, 170, 224, 0.2);
}
.erp-section .erp-card--oracle {
  box-shadow: inset 16px -16px 40px -12px rgba(248, 0, 0, 0.18);
}
.erp-section .erp-card:hover {
  border-color: #b52c1f;
}
.erp-section .erp-card:hover.erp-card--odoo {
  box-shadow: inset 16px -16px 40px -12px rgba(135, 90, 123, 0.2), 0 12px 40px rgba(181, 44, 31, 0.08);
}
.erp-section .erp-card:hover.erp-card--sap {
  box-shadow: inset 16px -16px 40px -12px rgba(15, 170, 224, 0.2), 0 12px 40px rgba(181, 44, 31, 0.08);
}
.erp-section .erp-card:hover.erp-card--oracle {
  box-shadow: inset 16px -16px 40px -12px rgba(248, 0, 0, 0.18), 0 12px 40px rgba(181, 44, 31, 0.08);
}
.erp-section .erp-card:hover.erp-card--next {
  box-shadow: inset 16px -16px 40px -12px rgba(99, 102, 241, 0.2), 0 12px 40px rgba(181, 44, 31, 0.08);
}
.erp-section .erp-card .erp-card-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #b52c1f;
  background: rgba(181, 44, 31, 0.08);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.erp-section .erp-card .erp-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
  line-height: 1.35;
}
@media (max-width: 575.98px) {
  .erp-section .erp-card .erp-card-title {
    font-size: 1.25rem;
  }
}
.erp-section .erp-card .erp-card-subtitle {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 14px;
  font-weight: 600;
}
.erp-section .erp-card .erp-card-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 18px;
}
.erp-section .erp-card .erp-card-features {
  margin-bottom: 22px;
  padding-right: 0;
}
.erp-section .erp-card .erp-card-features li {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.9;
  padding-right: 18px;
  position: relative;
  margin-bottom: 6px;
}
.erp-section .erp-card .erp-card-features li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b52c1f;
}
.erp-section .erp-card .erp-card-cta {
  padding: 10px 30px;
  border-radius: 50px;
  width: 250px;
  max-width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  border: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  direction: rtl;
  margin-left: auto;
}
@media (max-width: 575.98px) {
  .erp-section .erp-card .erp-card-cta {
    padding: 10px 20px;
    width: 100%;
    justify-content: center;
    gap: 8px;
  }
}
.erp-section .erp-card .erp-card-cta svg {
  fill: #fff;
  height: 16px;
  width: 16px;
}

.erp-card--odoo .erp-card-cta {
  background: #875A7B;
  border-color: #875A7B;
}
.erp-card--odoo .erp-card-cta:hover {
  background: #6f4a65;
  border-color: #6f4a65;
  color: #fff;
}
.erp-card--odoo .erp-card-cta:hover svg {
  fill: #fff;
}

.erp-card--sap .erp-card-cta {
  background: #0FAAE0;
  border-color: #0FAAE0;
}
.erp-card--sap .erp-card-cta:hover {
  background: #0c8dba;
  border-color: #0c8dba;
  color: #fff;
}
.erp-card--sap .erp-card-cta:hover svg {
  fill: #fff;
}

.erp-card--oracle .erp-card-cta {
  background: #F80000;
  border-color: #F80000;
}
.erp-card--oracle .erp-card-cta:hover {
  background: #cf0000;
  border-color: #cf0000;
  color: #fff;
}
.erp-card--oracle .erp-card-cta:hover svg {
  fill: #fff;
}

.erp-card--next .erp-card-cta {
  background: #6366F1;
  border-color: #6366F1;
}
.erp-card--next .erp-card-cta:hover {
  background: #3e41ee;
  border-color: #3e41ee;
  color: #fff;
}
.erp-card--next .erp-card-cta:hover svg {
  fill: #fff;
}

.consultant-section {
  padding: 80px 0;
  background-color: #f8fafc;
  direction: rtl;
}
@media (max-width: 991.98px) {
  .consultant-section {
    padding: 60px 0;
  }
}
@media (max-width: 575.98px) {
  .consultant-section {
    padding: 50px 0;
  }
}
.consultant-section .index-section-header-head p.text {
  max-width: 640px;
  margin: 0 auto 0 auto;
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}
.consultant-section .consultant-features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 40px;
  margin-bottom: 50px;
}
@media (max-width: 575.98px) {
  .consultant-section .consultant-features {
    flex-direction: column;
    margin-bottom: 40px;
    gap: 20px;
  }
}
.consultant-section .consultant-features-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
  margin: 0;
  padding: 0;
}
.consultant-section .consultant-features-list li {
  font-size: 0.95rem;
  color: #444;
  padding-right: 20px;
  position: relative;
}
.consultant-section .consultant-features-list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b52c1f;
}
.consultant-section .consultant-cta {
  padding: 10px 30px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  background: #b52c1f;
  border: 1px solid #b52c1f;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.consultant-section .consultant-cta:hover {
  background: #922419;
  border-color: #922419;
  color: #fff;
}
.consultant-section .consultant-cta svg {
  fill: #fff;
  height: 16px;
  width: 16px;
}
.consultant-section .consultant-experts {
  margin-top: 40px;
}
@media (max-width: 575.98px) {
  .consultant-section .consultant-experts {
    margin-top: 30px;
  }
}
.consultant-section .consultant-expert-card {
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 28px 24px 24px;
  height: 100%;
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
  background: #fff;
}
@media (max-width: 575.98px) {
  .consultant-section .consultant-expert-card {
    padding: 24px 20px 20px;
    margin-bottom: 16px;
  }
}
.consultant-section .consultant-expert-card:hover {
  border-color: #b52c1f;
  box-shadow: 0 12px 40px rgba(181, 44, 31, 0.08);
}
.consultant-section .consultant-expert-card .consultant-expert-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #b52c1f;
  background: rgba(181, 44, 31, 0.08);
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.consultant-section .consultant-expert-card .consultant-expert-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.consultant-section .consultant-expert-card .consultant-expert-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0e3e2f;
  margin-bottom: 8px;
  line-height: 1.35;
}
@media (max-width: 575.98px) {
  .consultant-section .consultant-expert-card .consultant-expert-name {
    font-size: 1.1rem;
  }
}
.consultant-section .consultant-expert-card .consultant-expert-title {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}
.consultant-section .consultant-more {
  margin-top: 36px;
}
@media (max-width: 575.98px) {
  .consultant-section .consultant-more {
    margin-top: 28px;
  }
}
.consultant-section .consultant-more-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #b52c1f;
  text-decoration: none;
  transition: color 0.2s ease;
}
.consultant-section .consultant-more-link:hover {
  color: #811f16;
}

.partners-tech-section {
  padding: 100px 0;
  background-color: #FFF;
  position: relative;
  overflow: hidden;
  direction: ltr;
}
@media (max-width: 991.98px) {
  .partners-tech-section {
    padding: 60px 0;
  }
}
@media (max-width: 575.98px) {
  .partners-tech-section {
    padding: 40px 0;
  }
}
.partners-tech-section .partners-slider-wrapper {
  margin-top: 50px;
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.partners-tech-section .partners-slider-wrapper::before, .partners-tech-section .partners-slider-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 150px;
  z-index: 2;
  pointer-events: none;
}
.partners-tech-section .partners-slider-wrapper::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.44), transparent);
}
.partners-tech-section .partners-slider-wrapper::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.44), transparent);
}
.partners-tech-section .partners-slider-row {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.partners-tech-section .partners-slider-row::before, .partners-tech-section .partners-slider-row::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.partners-tech-section .partners-slider-row::before {
  left: 0;
  background: linear-gradient(to right, #FFF, transparent);
}
.partners-tech-section .partners-slider-row::after {
  right: 0;
  background: linear-gradient(to left, #FFF, transparent);
}
.partners-tech-section .partners-slider-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: -moz-fit-content;
  width: fit-content;
}
.partners-tech-section .partners-slider-track.slide-right {
  animation: scrollRight 30s linear infinite;
}
.partners-tech-section .partners-slider-track.slide-left {
  animation: scrollLeft 30s linear infinite;
}
.partners-tech-section .partners-slider-track:hover {
  animation-play-state: paused;
}
.partners-tech-section .partner-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners-tech-section .partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transition: all 0.3s ease;
  opacity: 0.9;
}
.partners-tech-section .partner-logo:hover {
  transform: scale(1.1);
  opacity: 1;
}
.partners-tech-section .partner-logo img {
  max-width: 100%;
  max-height: 40px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(0.3);
  transition: filter 0.3s ease;
}
.partners-tech-section .partner-logo:hover img {
  filter: grayscale(0);
}
@keyframes scrollRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scrollLeft {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@media (max-width: 991.98px) {
  .partners-tech-section {
    padding: 60px 0;
  }
  .partners-tech-section .partners-slider-wrapper {
    margin-top: 40px;
    gap: 25px;
  }
  .partners-tech-section .partners-slider-wrapper::before, .partners-tech-section .partners-slider-wrapper::after {
    height: 100px;
  }
  .partners-tech-section .partners-slider-row::before, .partners-tech-section .partners-slider-row::after {
    width: 80px;
  }
  .partners-tech-section .partners-slider-track {
    gap: 40px;
  }
  .partners-tech-section .partner-logo {
    padding: 15px;
  }
  .partners-tech-section .partner-logo img {
    max-height: 60px;
  }
}
@media (max-width: 575.98px) {
  .partners-tech-section {
    padding: 40px 0;
  }
  .partners-tech-section .partners-slider-wrapper {
    margin-top: 30px;
    gap: 20px;
  }
  .partners-tech-section .partners-slider-wrapper::before, .partners-tech-section .partners-slider-wrapper::after {
    height: 80px;
  }
  .partners-tech-section .partners-slider-row::before, .partners-tech-section .partners-slider-row::after {
    width: 50px;
  }
  .partners-tech-section .partners-slider-track {
    gap: 30px;
    animation-duration: 20s;
  }
  .partners-tech-section .partner-logo {
    padding: 10px;
  }
  .partners-tech-section .partner-logo img {
    max-height: 50px;
  }
}

.services {
  padding: 100px 0 50px 0;
  position: relative;
}
@media (max-width: 991.98px) {
  .services {
    padding: 80px 0 40px 0;
  }
}
@media (max-width: 575.98px) {
  .services {
    padding: 60px 0 30px 0;
  }
}
.services .patt1 {
  position: absolute;
  left: -301px;
  top: -704px;
  transform: translate(0, 0) rotate(45deg);
  height: 1000px;
  width: 1000px;
  filter: grayscale(1);
  opacity: 0.349;
  z-index: -1;
}
.services .patt1 img {
  max-width: 100%;
  height: 100%;
}
.services .services-container {
  margin-top: 75px;
}
@media (max-width: 991.98px) {
  .services .services-container {
    margin-top: 50px;
  }
}
@media (max-width: 575.98px) {
  .services .services-container {
    margin-top: 40px;
  }
}
.services .services-container .service-card {
  border: 1px solid #e6e6e6;
  padding: 30px 35px 20px 35px;
  border-radius: 12px;
  margin-bottom: 15px;
}
@media (max-width: 991.98px) {
  .services .services-container .service-card {
    padding: 25px 30px 20px 30px;
  }
}
@media (max-width: 575.98px) {
  .services .services-container .service-card {
    padding: 20px 20px 15px 20px;
    margin-bottom: 20px;
  }
}
.services .services-container .service-card .service-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.services .services-container .service-card .service-head h4 {
  font-size: 1.5rem;
  font-weight: 700;
  max-width: 55%;
}
@media (max-width: 991.98px) {
  .services .services-container .service-card .service-head h4 {
    font-size: 1.35rem;
    max-width: 60%;
  }
}
@media (max-width: 575.98px) {
  .services .services-container .service-card .service-head h4 {
    font-size: 1.2rem;
    max-width: 100%;
  }
}
.services .services-container .service-card .service-head span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  border: 1px solid #e6e6e6;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  color: #b52c1f;
}
.services .services-container .service-card .service-icon {
  margin: 35px 0;
}
.services .services-container .service-card .service-icon svg {
  height: 50px;
  width: 50px;
  fill: #b52c1f;
}
.services .services-container .service-card .service-info p {
  font-size: 0.8rem;
}
.services .services-container .service-card .service-link .header-btn {
  padding: 10px 0px 10px 32px;
  background: transparent;
  border-radius: 50px;
  width: 211px;
  max-width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-right: 0;
  color: #b52c1f;
}
@media (max-width: 991.98px) {
  .services .services-container .service-card .service-link .header-btn {
    width: 180px;
    padding: 10px 0px 10px 28px;
  }
}
@media (max-width: 575.98px) {
  .services .services-container .service-card .service-link .header-btn {
    font-size: 0.9rem;
    width: 100%;
    padding: 10px 20px;
  }
}
.services .services-container .service-card .service-link .header-btn svg {
  fill: #000;
  height: 16px;
  width: 16px;
}

.nums .nums-vid {
  height: 400px;
  width: 100%;
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 991.98px) {
  .nums .nums-vid {
    height: 350px;
  }
}
@media (max-width: 575.98px) {
  .nums .nums-vid {
    height: 250px;
  }
}
.nums .nums-vid:after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.45;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center center;
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
}
.nums .nums-vid .num-vid-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100px;
  width: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  border: 1px solid #FFF;
}
.nums .nums-vid .num-vid-icon svg {
  height: 40px;
  width: 40px;
  fill: #FFF;
}
.nums .index-section-header {
  padding: 60px 40px 10px 40px;
  margin-top: -190px;
}
.nums .index-section-header .index-section-header-head span {
  color: #FFF;
}
.nums .index-section-header .index-section-header-head h3 {
  color: #FFF;
}
.nums .index-section-header p.text {
  color: #FFF;
}
.nums .index-section-header p.text span {
  color: #FFF;
}
.nums .index-section-header p.text span:after {
  background: #FFF;
}
.nums .num-cards {
  background-color: #f5f8fa;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-top: 1px solid #cdcbc8;
}
.nums .num-cards .num-card {
  padding: 40px 40px 50px 40px;
}
@media (max-width: 991.98px) {
  .nums .num-cards .num-card {
    padding: 35px 30px 45px 30px;
  }
}
@media (max-width: 575.98px) {
  .nums .num-cards .num-card {
    padding: 30px 20px 40px 20px;
  }
}
.nums .num-cards .num-card .num-card-head {
  height: 225px;
}
.nums .num-cards .num-card .num-card-head h2 {
  font-family: "num", sans-serif;
  font-weight: 700;
  font-size: 5rem;
}
@media (max-width: 991.98px) {
  .nums .num-cards .num-card .num-card-head h2 {
    font-size: 4rem;
  }
}
@media (max-width: 575.98px) {
  .nums .num-cards .num-card .num-card-head h2 {
    font-size: 3rem;
  }
}
.nums .num-cards .num-card .num-card-head span {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
}
.nums .num-cards .num-card p {
  font-size: 0.9rem;
  color: #515151;
  margin: 0;
}
.nums .col-lg-3:last-child {
  border-left: unset;
}
.nums .col-lg-3 {
  border-left: 1px solid #cdcbc8;
}

.projects {
  padding: 100px 0;
}
@media (max-width: 991.98px) {
  .projects {
    padding: 80px 0;
  }
}
@media (max-width: 575.98px) {
  .projects {
    padding: 60px 0;
  }
}
.projects .project-categories {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 991.98px) {
  .projects .project-categories {
    margin-top: 40px;
  }
}
@media (max-width: 575.98px) {
  .projects .project-categories {
    margin-top: 30px;
  }
}
.projects .project-categories li {
  margin: 0 15px;
  font-size: 0.9rem;
  font-weight: 700;
  position: relative;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .projects .project-categories li {
    margin: 0 10px;
    font-size: 0.85rem;
  }
}
@media (max-width: 575.98px) {
  .projects .project-categories li {
    margin: 0 8px;
    font-size: 0.8rem;
  }
}
.projects .project-categories li:after {
  content: "/";
  margin: 0 20px 0 0;
}
@media (max-width: 575.98px) {
  .projects .project-categories li:after {
    margin: 0 10px 0 0;
  }
}
.projects .project-categories .last-li:after {
  display: none;
}
.projects .projects-cards {
  margin-top: 75px;
}
@media (max-width: 991.98px) {
  .projects .projects-cards {
    margin-top: 50px;
  }
}
@media (max-width: 575.98px) {
  .projects .projects-cards {
    margin-top: 40px;
  }
}
.projects .projects-cards .project-card {
  margin-bottom: 50px;
}
.projects .projects-cards .project-card figure {
  height: 300px;
  width: 100%;
  border-radius: 12px;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 991.98px) {
  .projects .projects-cards .project-card figure {
    height: 280px;
  }
}
@media (max-width: 575.98px) {
  .projects .projects-cards .project-card figure {
    height: 250px;
  }
}
.projects .projects-cards .project-card .project-cat {
  font-size: 0.75rem;
  background-color: #FFF;
  color: #646573;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 1px 20px 7px 15px;
  position: absolute;
  bottom: -10px;
  right: -9px;
}
.projects .projects-cards .project-card .project-cat span {
  font-weight: 600;
}
.projects .projects-cards .project-card .project-cat h4 {
  margin: 0px 10px 14px;
}
.projects .projects-cards .project-card .project-arrow {
  position: absolute;
  bottom: 25px;
  left: 30px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background-color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}
@media (max-width: 991.98px) {
  .projects .projects-cards .project-card .project-arrow {
    height: 70px;
    width: 70px;
    bottom: 20px;
    left: 25px;
  }
}
@media (max-width: 575.98px) {
  .projects .projects-cards .project-card .project-arrow {
    height: 60px;
    width: 60px;
    bottom: 15px;
    left: 20px;
  }
}
.projects .projects-cards .project-card .project-arrow svg {
  height: 25px;
  width: 25px;
  fill: #000;
}
.projects .projects-cards .project-card h3 {
  margin-top: 22px;
  font-size: 1.1rem;
  font-weight: 700;
}
@media (max-width: 991.98px) {
  .projects .projects-cards .project-card h3 {
    font-size: 1rem;
    margin-top: 18px;
  }
}
@media (max-width: 575.98px) {
  .projects .projects-cards .project-card h3 {
    font-size: 0.95rem;
    margin-top: 15px;
  }
}

.testimonilas {
  padding: 0 0 100px 0;
}
@media (max-width: 991.98px) {
  .testimonilas {
    padding: 0 0 80px 0;
  }
}
@media (max-width: 575.98px) {
  .testimonilas {
    padding: 0 0 60px 0;
  }
}
.testimonilas .tes-container {
  background: #f5f8fa;
  padding: 75px 75px;
  border-radius: 12px;
}
@media (max-width: 991.98px) {
  .testimonilas .tes-container {
    padding: 60px 50px;
  }
}
@media (max-width: 575.98px) {
  .testimonilas .tes-container {
    padding: 40px 30px;
  }
}
.testimonilas .tes-container .tes-cards {
  margin-top: 75px;
}
@media (max-width: 991.98px) {
  .testimonilas .tes-container .tes-cards {
    margin-top: 50px;
  }
}
@media (max-width: 575.98px) {
  .testimonilas .tes-container .tes-cards {
    margin-top: 40px;
  }
}
.testimonilas .tes-container .tes-cards .tes-card {
  background-color: #b52c1f;
  padding: 40px 40px;
  border-radius: 12px;
  color: #FFF;
  position: relative;
}
@media (max-width: 991.98px) {
  .testimonilas .tes-container .tes-cards .tes-card {
    padding: 35px 35px;
  }
}
@media (max-width: 575.98px) {
  .testimonilas .tes-container .tes-cards .tes-card {
    padding: 30px 25px;
    margin-bottom: 20px;
  }
}
.testimonilas .tes-container .tes-cards .tes-card .patt1 {
  position: absolute;
  right: -323px;
  top: -16px;
  transform: translate(0, 0) rotate(0);
  height: 536px;
  width: 676px;
  filter: grayscale(1);
  opacity: 0.149;
  z-index: 1;
}
.testimonilas .tes-container .tes-cards .tes-card .patt1 img {
  max-width: 100%;
  height: 100%;
}
.testimonilas .tes-container .tes-cards .tes-card .test-scocre {
  display: inline-flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0;
}
.testimonilas .tes-container .tes-cards .tes-card .test-scocre h3 {
  font-size: 3.1rem;
  font-weight: 700;
  margin: 0;
  font-family: "num";
}
@media (max-width: 991.98px) {
  .testimonilas .tes-container .tes-cards .tes-card .test-scocre h3 {
    font-size: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .testimonilas .tes-container .tes-cards .tes-card .test-scocre h3 {
    font-size: 2rem;
  }
}
.testimonilas .tes-container .tes-cards .tes-card .test-scocre span {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 5px;
  font-family: "num";
  color: #c2c2c2;
}
.testimonilas .tes-container .tes-cards .tes-card .test-scocre h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  font-family: "num";
  color: #c2c2c2;
}
.testimonilas .tes-container .tes-cards .tes-card p.text {
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 100px;
  color: #FFF;
  margin-top: 5px;
}
@media (max-width: 991.98px) {
  .testimonilas .tes-container .tes-cards .tes-card p.text {
    margin-bottom: 60px;
    font-size: 0.85rem;
  }
}
@media (max-width: 575.98px) {
  .testimonilas .tes-container .tes-cards .tes-card p.text {
    margin-bottom: 40px;
    font-size: 0.8rem;
  }
}
.testimonilas .tes-container .tes-cards .tes-card .tes-logo-container {
  position: relative;
  z-index: 10;
  width: 220px;
  max-width: 100%;
}
@media (max-width: 1199.98px) {
  .testimonilas .tes-container .tes-cards .tes-card .tes-logo-container {
    width: 150px;
  }
}
@media (max-width: 991.98px) {
  .testimonilas .tes-container .tes-cards .tes-card .tes-logo-container {
    width: auto;
    max-width: 180px;
  }
}
@media (max-width: 575.98px) {
  .testimonilas .tes-container .tes-cards .tes-card .tes-logo-container {
    max-width: 150px;
  }
}
.testimonilas .tes-container .tes-cards .tes-card .tes-logo-container a {
  text-decoration: none;
  display: flex;
  align-items: center;
  vertical-align: middle;
}
.testimonilas .tes-container .tes-cards .tes-card .tes-logo-container img {
  max-width: 100%;
  height: 50px;
  margin-top: 0px;
}
@media (max-width: 1199.98px) {
  .testimonilas .tes-container .tes-cards .tes-card .tes-logo-container img {
    height: 30px;
  }
}
.testimonilas .tes-container .tes-cards .tes-card .tes-logo-container span {
  color: #FFF;
  font-size: 0.75rem;
  margin-right: 8px;
  font-weight: 200;
}
.testimonilas .tes-container .tes-cards .tes-card .tes-logo-container .main-logo {
  display: block;
}
.testimonilas .tes-container .tes-cards .tes-card .tes-logo-container .img-dark {
  display: none;
}
.testimonilas .tes-container .tes-cards .tes-card .tes-team {
  margin-top: 25px;
}
.testimonilas .tes-container .tes-cards .tes-card .tes-team img {
  transform: rotateY(180deg);
  width: 135px;
}
.testimonilas .tes-container .tes-cards .tes-card .tes-stars {
  margin-top: 25px;
}
.testimonilas .tes-container .tes-cards .tes-card .tes-stars img {
  width: 60px;
}
.testimonilas .tes-container .tes-cards .tes-card .tes-stars span {
  display: block;
  color: #c2c2c2;
  font-size: 0.7rem;
}
.testimonilas .tes-container .review-card {
  background-color: #FFF;
  padding: 40px 40px;
  border-radius: 12px;
  color: #000;
}
@media (max-width: 991.98px) {
  .testimonilas .tes-container .review-card {
    padding: 35px 35px;
  }
}
@media (max-width: 575.98px) {
  .testimonilas .tes-container .review-card {
    padding: 30px 25px;
    margin-bottom: 20px;
  }
}
.testimonilas .tes-container .review-card .review-card-head {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 25px;
}
.testimonilas .tes-container .review-card .review-card-head figure {
  margin-bottom: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 70px;
  width: 70px;
  border-radius: 8px;
  margin-left: 25px;
}
.testimonilas .tes-container .review-card .review-card-head-info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.testimonilas .tes-container .review-card .review-card-head-info span {
  font-size: 0.85rem;
  color: #c2c2c2;
  font-weight: 500;
}
.testimonilas .tes-container .review-card .review-card-content {
  margin-top: 25px;
}
.testimonilas .tes-container .review-card .review-card-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.6;
}
.testimonilas .tes-container .review-card .review-card-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #515151;
  margin: 0;
}
.testimonilas .tes-container .review-card .review-card-content .q-icon {
  color: #b52c1f;
  margin-right: 8px;
  margin-top: -20px;
  font-size: 5rem;
  transform: rotateY(180deg);
}
.testimonilas .tes-container .reviews-more-wrapper {
  margin-top: 50px;
}
@media (max-width: 991.98px) {
  .testimonilas .tes-container .reviews-more-wrapper {
    margin-top: 40px;
  }
}
@media (max-width: 575.98px) {
  .testimonilas .tes-container .reviews-more-wrapper {
    margin-top: 30px;
  }
}
.testimonilas .tes-container .reviews-more-wrapper .reviews-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  color: #FFF;
  background: #b52c1f;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
}
@media (max-width: 575.98px) {
  .testimonilas .tes-container .reviews-more-wrapper .reviews-more-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 280px;
  }
}
.testimonilas .tes-container .reviews-more-wrapper .reviews-more-btn:hover {
  background: #922419;
  color: #FFF;
  text-decoration: none;
  transform: translateY(-2px);
}
.testimonilas .tes-container .reviews-more-wrapper .reviews-more-btn svg {
  fill: #FFF;
  height: 18px;
  width: 18px;
  flex-shrink: 0;
}

.blog {
  padding: 0px 0 100px 0;
}
@media (max-width: 991.98px) {
  .blog {
    padding: 0px 0 80px 0;
  }
}
@media (max-width: 575.98px) {
  .blog {
    padding: 0px 0 60px 0;
  }
}
.blog .blog-container {
  margin-top: 75px;
}
@media (max-width: 991.98px) {
  .blog .blog-container {
    margin-top: 50px;
  }
}
@media (max-width: 575.98px) {
  .blog .blog-container {
    margin-top: 40px;
  }
}
.blog .blog-container .blog-card figure {
  height: 250px;
  width: 100%;
  border-radius: 12px;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .blog .blog-container .blog-card figure {
    height: 230px;
  }
}
@media (max-width: 575.98px) {
  .blog .blog-container .blog-card figure {
    height: 200px;
  }
}
.blog .blog-container .blog-card .blog-cat {
  font-size: 0.75rem;
  background-color: #FFF;
  color: #646573;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 1px 0px 0px 0px;
  padding-right: 10px;
}
.blog .blog-container .blog-card .blog-cat span {
  font-weight: 600;
}
.blog .blog-container .blog-card .blog-cat h4 {
  margin: 0px 10px 14px;
}
.blog .blog-container .blog-card h3 {
  margin-top: 0;
  font-size: 1.1rem;
  font-weight: 700;
  padding-right: 10px;
  line-height: 1.6;
}
@media (max-width: 991.98px) {
  .blog .blog-container .blog-card h3 {
    font-size: 1rem;
  }
}
@media (max-width: 575.98px) {
  .blog .blog-container .blog-card h3 {
    font-size: 0.95rem;
    padding-right: 5px;
  }
}
.blog .blog-container .blog-card p {
  font-size: 0.9rem;
  color: #515151;
}
@media (max-width: 575.98px) {
  .blog .blog-container .blog-card p {
    font-size: 0.85rem;
  }
}

.cta-lead-section {
  padding: 10px 0 50px 0;
  position: relative;
  overflow: hidden;
  background-color: #FFF;
}
.cta-lead-section .container {
  position: relative;
  z-index: 1;
}
.cta-lead-section .cta-banner {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 60px 80px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(181, 44, 31, 0.1);
  border: 1px solid rgba(230, 230, 230, 0.5);
  position: relative;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .cta-lead-section .cta-banner {
    padding: 50px 50px;
    border-radius: 20px;
  }
}
@media (max-width: 575.98px) {
  .cta-lead-section .cta-banner {
    padding: 40px 30px;
    border-radius: 16px;
  }
}
.cta-lead-section .cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(181, 44, 31, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-lead-section .cta-banner .cta-content {
  position: relative;
  z-index: 1;
}
.cta-lead-section .cta-banner .cta-text {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 991.98px) {
  .cta-lead-section .cta-banner .cta-text {
    margin-bottom: 40px;
  }
}
@media (max-width: 575.98px) {
  .cta-lead-section .cta-banner .cta-text {
    margin-bottom: 35px;
  }
}
.cta-lead-section .cta-banner .cta-text .cta-pretitle {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #b52c1f;
  background: linear-gradient(135deg, rgba(181, 44, 31, 0.1), rgba(181, 44, 31, 0.05));
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid rgba(181, 44, 31, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0px;
}
.cta-lead-section .cta-banner .cta-text .cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: #0e3e2f;
  margin: 15px 0 20px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
@media (max-width: 991.98px) {
  .cta-lead-section .cta-banner .cta-text .cta-title {
    font-size: 2.25rem;
  }
}
@media (max-width: 575.98px) {
  .cta-lead-section .cta-banner .cta-text .cta-title {
    font-size: 1.75rem;
  }
}
.cta-lead-section .cta-banner .cta-text .cta-description {
  font-size: 0.9rem;
  color: #515151;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
}
@media (max-width: 575.98px) {
  .cta-lead-section .cta-banner .cta-text .cta-description {
    font-size: 0.95rem;
  }
}
.cta-lead-section .cta-banner .cta-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 991.98px) {
  .cta-lead-section .cta-banner .cta-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.cta-lead-section .cta-banner .cta-contact-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cta-lead-section .cta-banner .cta-contact-left .cta-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(230, 230, 230, 0.6);
  min-height: 220px;
  background: #f5f5f5;
}
.cta-lead-section .cta-banner .cta-contact-left .cta-map-wrap .cta-map {
  width: 100%;
  height: 220px;
  border: none;
  display: block;
}
@media (max-width: 575.98px) {
  .cta-lead-section .cta-banner .cta-contact-left .d-flex {
    display: block !important;
  }
}
.cta-lead-section .cta-banner .cta-contact-left .cta-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 50%;
}
@media (max-width: 575.98px) {
  .cta-lead-section .cta-banner .cta-contact-left .cta-contact-item {
    width: 100%;
  }
}
.cta-lead-section .cta-banner .cta-contact-left .cta-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(181, 44, 31, 0.12), rgba(181, 44, 31, 0.06));
  border: 1px solid rgba(181, 44, 31, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-lead-section .cta-banner .cta-contact-left .cta-contact-icon i {
  color: #b52c1f;
  font-size: 1rem;
}
.cta-lead-section .cta-banner .cta-contact-left .cta-contact-link {
  font-size: 1rem;
  font-weight: 600;
  color: #0e3e2f;
  text-decoration: none;
  transition: color 0.2s ease;
}
.cta-lead-section .cta-banner .cta-contact-left .cta-contact-link:hover {
  color: #b52c1f;
}
.cta-lead-section .cta-banner .cta-contact-left .cta-contact-text {
  font-size: 1rem;
  font-weight: 600;
  color: #0e3e2f;
  line-height: 1.5;
}
.cta-lead-section .cta-banner .cta-contact-left .cta-contact-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.cta-lead-section .cta-banner .cta-contact-left .cta-social-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #515151;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cta-lead-section .cta-banner .cta-contact-left .cta-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cta-lead-section .cta-banner .cta-contact-left .cta-social-link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(181, 44, 31, 0.12), rgba(181, 44, 31, 0.06));
  border: 1px solid rgba(181, 44, 31, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b52c1f;
  font-size: 1.1rem;
  transition: all 0.25s ease;
}
.cta-lead-section .cta-banner .cta-contact-left .cta-social-link:hover {
  background: linear-gradient(135deg, #b52c1f, #d63222);
  color: #fff;
  border-color: #b52c1f;
  transform: translateY(-2px);
}
.cta-lead-section .cta-banner .cta-form-wrapper {
  width: 100%;
}
@media (max-width: 991.98px) {
  .cta-lead-section .cta-banner .cta-form-wrapper {
    max-width: 100%;
  }
}
.cta-lead-section .cta-banner .cta-form-wrapper .cta-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 575.98px) {
  .cta-lead-section .cta-banner .cta-form-wrapper .cta-form .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.cta-lead-section .cta-banner .cta-form-wrapper .cta-form .form-group {
  margin-bottom: 0;
}
.cta-lead-section .cta-banner .cta-form-wrapper .cta-form .form-group .form-control {
  width: 100%;
  padding: 13px 20px;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a1a;
  background-color: #fafafa;
  transition: all 0.3s ease;
  font-family: "ar";
}
.cta-lead-section .cta-banner .cta-form-wrapper .cta-form .form-group .form-control:focus {
  outline: none;
  border-color: #b52c1f;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(181, 44, 31, 0.1);
}
.cta-lead-section .cta-banner .cta-form-wrapper .cta-form .form-group .form-control::-moz-placeholder {
  color: #999;
  font-weight: 400;
}
.cta-lead-section .cta-banner .cta-form-wrapper .cta-form .form-group .form-control::placeholder {
  color: #999;
  font-weight: 400;
}
.cta-lead-section .cta-banner .cta-form-wrapper .cta-form .form-group .form-control[name=service] {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23b52c1f'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 15px center;
  background-size: 20px;
  padding-left: 45px;
}
.cta-lead-section .cta-banner .cta-form-wrapper .cta-form .form-group textarea.form-control {
  resize: vertical;
  min-height: 140px;
}
.cta-lead-section .cta-banner .cta-form-wrapper .cta-form .cta-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #b52c1f, #d63222);
  color: #FFF;
  border: none;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(181, 44, 31, 0.25), 0 2px 4px rgba(181, 44, 31, 0.15);
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  font-family: "ar";
  margin-top: 20px;
}
.cta-lead-section .cta-banner .cta-form-wrapper .cta-form .cta-submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.cta-lead-section .cta-banner .cta-form-wrapper .cta-form .cta-submit-btn:hover {
  background: linear-gradient(135deg, #9a2419, #b52c1f);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(181, 44, 31, 0.4), 0 6px 12px rgba(181, 44, 31, 0.25);
}
.cta-lead-section .cta-banner .cta-form-wrapper .cta-form .cta-submit-btn:hover::before {
  left: 100%;
}
.cta-lead-section .cta-banner .cta-form-wrapper .cta-form .cta-submit-btn:hover svg {
  transform: translateX(6px) scale(1.1);
}
.cta-lead-section .cta-banner .cta-form-wrapper .cta-form .cta-submit-btn:active {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 6px 16px rgba(181, 44, 31, 0.3), 0 3px 6px rgba(181, 44, 31, 0.2);
}
.cta-lead-section .cta-banner .cta-form-wrapper .cta-form .cta-submit-btn svg {
  width: 22px;
  height: 22px;
  fill: #FFF;
  transition: transform 0.3s ease;
}
@media (max-width: 991.98px) {
  .cta-lead-section {
    padding: 80px 0;
  }
  .cta-lead-section .cta-banner {
    padding: 50px 50px;
  }
  .cta-lead-section .cta-banner .cta-text {
    margin-bottom: 40px;
  }
}
@media (max-width: 575.98px) {
  .cta-lead-section {
    padding: 60px 0;
  }
  .cta-lead-section .cta-banner {
    padding: 40px 30px;
    border-radius: 20px;
  }
  .cta-lead-section .cta-banner .cta-text {
    margin-bottom: 35px;
  }
  .cta-lead-section .cta-banner .cta-form-wrapper .cta-form .form-group .form-control {
    padding: 14px 18px;
    font-size: 0.9rem;
  }
  .cta-lead-section .cta-banner .cta-form-wrapper .cta-form .cta-submit-btn {
    padding: 16px 32px;
    font-size: 0.95rem;
  }
  .cta-lead-section .cta-banner .cta-form-wrapper .cta-form .cta-submit-btn svg {
    width: 20px;
    height: 20px;
  }
}

@keyframes rotate {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: linear-gradient(45deg, #f2fffc, #edf3ff);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #b52c1f;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b52c1f;
}

html[lang=en],
[lang=en] {
  direction: ltr;
}
html[lang=en] body,
[lang=en] body {
  font-family: "en";
  direction: ltr;
}
html[lang=en] .added-values-section,
[lang=en] .added-values-section {
  direction: ltr;
}
html[lang=en] .consultant-section,
[lang=en] .consultant-section {
  direction: ltr;
}
html[lang=en] .partners-logos,
[lang=en] .partners-logos {
  direction: ltr;
}
html[lang=en] .partners-logos .partner-card,
[lang=en] .partners-logos .partner-card {
  padding: 30px 30px 30px 0;
  border-left: none;
  border-right: 1px solid #444c80;
}
@media (max-width: 991.98px) {
  html[lang=en] .partners-logos .partner-card,
  [lang=en] .partners-logos .partner-card {
    padding: 25px 25px 25px 0;
  }
}
@media (max-width: 575.98px) {
  html[lang=en] .partners-logos .partner-card,
  [lang=en] .partners-logos .partner-card {
    padding: 20px 20px 20px 0;
  }
}
html[lang=en] .card-services-label,
[lang=en] .card-services-label {
  text-align: left;
}
html[lang=en] .card-services li svg,
[lang=en] .card-services li svg {
  margin-left: 0;
  margin-right: 8px;
}
html[lang=en] .review-card .review-card-head figure,
[lang=en] .review-card .review-card-head figure {
  margin-left: 0;
  margin-right: 25px;
}
html[lang=en] .review-card .review-card-head-info span,
[lang=en] .review-card .review-card-head-info span {
  margin-right: 0;
  margin-left: 8px;
}
html[lang=en] .review-card .review-card-content .q-icon,
[lang=en] .review-card .review-card-content .q-icon {
  margin-right: 0;
  margin-left: 8px;
  transform: rotateY(0deg);
}
html[lang=en] .blog-card .blog-card-meta,
[lang=en] .blog-card .blog-card-meta {
  padding-right: 0;
  padding-left: 10px;
}
html[lang=en] .blog-card h3,
[lang=en] .blog-card h3 {
  padding-right: 0;
  padding-left: 10px;
}
@media (max-width: 575.98px) {
  html[lang=en] .blog-card h3,
  [lang=en] .blog-card h3 {
    padding-right: 0;
    padding-left: 5px;
  }
}
html[lang=en] .form-group .form-control[name=subject],
[lang=en] .form-group .form-control[name=subject] {
  background-position: right 15px center;
  padding-left: 0;
  padding-right: 45px;
}
html[lang=en] .card-content .card-footer .segmentation-btn svg,
[lang=en] .card-content .card-footer .segmentation-btn svg {
  margin-left: 0;
  margin-right: 6px;
}

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 280px;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}

img {
  display: block;
}

@media (max-width: 380px) {
  .container, .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 991.98px) {
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

pre, code {
  max-width: 100%;
  overflow-x: auto;
}
@media (max-width: 575.98px) {
  pre, code {
    font-size: 0.8em;
  }
}

@media (max-width: 575.98px) {
  a.header-btn, .book-btn, button:not([type=checkbox]):not([type=radio]) {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .section-header h3 {
    font-size: 1.6rem !important;
  }
  .index-section-header-head h3 {
    font-size: 1.5rem !important;
  }
}
@media (max-width: 991.98px) and (orientation: landscape) {
  .index-header {
    min-height: 100vh;
    height: auto;
    padding-bottom: 40px;
  }
  .index-header .index-header-content {
    height: auto;
    min-height: 50vh;
  }
}
.floating-whatsapp-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 9999;
  text-decoration: none;
  color: #fff;
}
@media (max-width: 575.98px) {
  .floating-whatsapp-btn {
    width: 55px;
    height: 55px;
    bottom: 15px;
    left: 15px;
  }
}
.floating-whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
@media (max-width: 575.98px) {
  .floating-whatsapp-btn svg {
    width: 28px;
    height: 28px;
  }
}
.floating-whatsapp-btn:hover {
  background: #20BA5A;
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}
.floating-whatsapp-btn:active {
  transform: translateY(-2px);
}

html[lang=en] .floating-whatsapp-btn,
[lang=en] .floating-whatsapp-btn {
  left: auto;
  right: 20px;
}
@media (max-width: 575.98px) {
  html[lang=en] .floating-whatsapp-btn,
  [lang=en] .floating-whatsapp-btn {
    right: 15px;
    left: auto;
  }
}/*# sourceMappingURL=main.css.map */