:root {
  --main-color: #be0f5d;
  --body-bg: #f5f8fa;
  --navbar-bg: #FFF;
  --icon-active: #2c2f32;
  --icon-idle: #8b88ff;
  --p-color: #2c2f32;
  --subp-color: #adafca;
  --link-color: #6956e5;
  --a-light: #FFF;
  --shadow-color: #5e5c9a0f;
  --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: #0000000f;
  --border-color: #2f3749;
  --sub-light: #21283b;
  --border-input: #3f485f;
}

.form-group {
  width: 100%;
  position: relative;
  margin: 0;
}

@media (max-width: 991.98px) {
  .form-group {
    margin: 10px 0;
  }
}

.form-group label {
  color: #adafca;
  font-size: 0.75rem;
  font-weight: 600;
  position: absolute;
  top: 16px;
  right: 20px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  pointer-events: none;
  display: block;
  margin: 0;
  line-height: 1em;
}

.form-group .form-control {
  height: 50px;
  padding: 7px 20px 7px 20px;
  background-color: #ffffff;
  border: 1px solid #ebebeb;
  color: #3e3f5e;
  -webkit-transition: border-color .2s ease-in-out;
  transition: border-color .2s ease-in-out;
  width: 100%;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
}

.form-group .form-control:focus {
  border-color: tomato;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.form-group .form-control::-webkit-input-placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.8rem;
}

.form-group .form-control:-ms-input-placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.8rem;
}

.form-group .form-control::-ms-input-placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.8rem;
}

.form-group .form-control::placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.8rem;
}

.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: .7rem;
  font-weight: 700;
  text-align: center;
  line-height: 43px;
  cursor: pointer;
  -webkit-transition: background-color .2s ease-in-out;
  transition: background-color .2s ease-in-out;
  background-color: #7868e6;
  border: 0;
}

.create-account-btn svg {
  height: 18px;
  margin-left: 2px;
}

.create-account-btn svg path {
  fill: #FFF;
}

.create-account-btn:hover {
  background-color: #7868e6;
}

.form-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px 5px 10px 0;
}

.form-check input {
  background-color: #fff;
  border: 1px solid #dedeea;
  height: 17px;
  width: 16px;
  position: unset;
  margin: 3px 0 0 5px;
}

.form-check p {
  color: #2c2f32;
  font-size: .875rem;
  font-weight: 700;
  line-height: 22px;
  cursor: pointer;
  display: block;
  margin: 0;
}

.form-check p a {
  text-decoration: none;
  color: #FFF;
}

p.text {
  margin-top: 30px;
  font-size: .875rem;
  line-height: 1.7142857143em;
  font-weight: 500;
  color: var(--p-color);
}

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;
}

.navbar {
  height: 85px;
  top: 0;
  left: 0;
  z-index: 500;
  background: transparent;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 15px 15px 15px;
  position: fixed;
}

@media (max-width: 1199.98px) {
  .navbar {
    padding: 12px 10px;
  }
}

@media (max-width: 575.98px) {
  .navbar {
    padding: 12px 12px;
  }
}

.navbar .nav-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar .nav-logo {
  position: relative;
  z-index: 10;
  width: 175px;
}

@media (max-width: 1199.98px) {
  .navbar .nav-logo {
    width: 125px;
  }
}

@media (max-width: 575.98px) {
  .navbar .nav-logo {
    width: auto;
  }
}

.navbar .nav-logo a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: middle;
}

.navbar .nav-logo img {
  width: 150px;
}

@media (max-width: 1199.98px) {
  .navbar .nav-logo img {
    width: 120px;
  }
}

@media (max-width: 575.98px) {
  .navbar .nav-logo img {
    width: 100px;
  }
}

.navbar .nav-links {
  margin-top: 3px;
}

@media (max-width: 991.98px) {
  .navbar .nav-links {
    background: #03031b;
    position: fixed;
    top: 0;
    height: 100%;
    width: 290px;
    max-width: 80vw;
    z-index: 9999;
    overflow-y: auto;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, visibility 0.4s ease;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, visibility 0.4s ease;
    padding: 70px 24px 30px 24px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  }

  html[dir="rtl"] .navbar .nav-links {
    right: 0;
    left: auto;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }

  html[dir="ltr"] .navbar .nav-links {
    left: 0;
    right: auto;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.navbar .nav-links .nav-close {
  display: none;
}

@media (max-width: 991.98px) {
  .navbar .nav-links .nav-close {
    display: block !important;
    position: absolute;
    top: 20px;
    cursor: pointer;
    font-size: 1.5rem;
    color: #ffffff;
    z-index: 10;
  }
  
  html[dir="rtl"] .navbar .nav-links .nav-close {
    left: 20px;
    right: auto;
  }
  
  html[dir="ltr"] .navbar .nav-links .nav-close {
    right: 20px;
    left: auto;
  }
}

.navbar .nav-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
  padding: 0;
}

@media (max-width: 991.98px) {
  .navbar .nav-links ul {
    display: block;
    text-align: left;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.navbar .nav-links ul li {
  padding: 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

@media (max-width: 1199.98px) {
  .navbar .nav-links ul li {
    padding: 0 10px;
  }
}

.navbar .nav-links ul li:hover a, .navbar .nav-links ul li:hover span, .navbar .nav-links ul li:hover svg {
  color: #be0f5d;
  fill: #be0f5d;
}

@media (max-width: 991.98px) {
  .navbar .nav-links ul li {
    padding: 10px 15px;
    -webkit-transform: perspective(400px) rotateY(-15deg);
            transform: perspective(400px) rotateY(-15deg);
    z-index: -1;
    margin: 7px 0;
  }
}

.navbar .nav-links ul li a, .navbar .nav-links ul li span {
  color: #FFF;
  position: relative;
  text-decoration: none;
  font-size: 1.1rem;
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

@media (max-width: 1199.98px) {
  .navbar .nav-links ul li a, .navbar .nav-links ul li span {
    font-size: 1rem;
  }
}

.navbar .nav-links ul li svg {
  height: 8px;
  width: 8px;
  margin: -3px 6px 0 0px;
  fill: var(--p-color);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar .nav-links ul li .li-links {
  position: absolute;
  top: 0;
  right: 0;
  text-align: right;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(0, -22px);
          transform: translate(0, -22px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.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: 12px;
  margin-top: 28px;
}

@media (max-width: 1199.98px) {
  .navbar .nav-links ul li .li-links ul {
    margin-top: 40px;
  }
}

.navbar .nav-links ul li .li-links ul li {
  display: block;
  margin: 8px 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0 0;
}

.navbar .nav-links ul li .li-links ul li:hover {
  padding-right: 14px;
}

.navbar .nav-links ul li .li-links ul li:hover a {
  color: #be0f5d;
}

.navbar .nav-links ul li .li-links ul li a {
  color: #FFF;
}

.navbar .nav-links ul .hover-drop:hover .li-links {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.navbar .nav-links ul .nav-link-active a {
  color: #be0f5d;
  font-weight: 500;
  position: relative;
  border-radius: 12px;
  margin: 0;
  padding: 10px 5px;
  text-align: center;
}

@media (max-width: 991.98px) {
  .navbar .nav-links ul .nav-link-active a {
    color: #be0f5d;
    padding: 0;
    background: unset;
  }
}

.navbar .nav-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 0 0 0 0;
  z-index: 10;
  width: 175px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

@media (max-width: 1199.98px) {
  .navbar .nav-actions {
    width: 125px;
  }
}

@media (max-width: 991.98px) {
  .navbar .nav-actions {
    width: auto;
  }
}

.navbar .nav-actions .links {
  font-size: 13px;
  color: #FFF;
  margin: 0 5px;
  text-decoration: none;
}

@media (max-width: 1199.98px) {
  .navbar .nav-actions .links {
    margin: 0 1px;
  }
}

@media (max-width: 767.98px) {
  .navbar .nav-actions .links {
    text-align: center;
    margin-bottom: 20px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

@media (max-width: 991.98px) {
  .navbar .nav-actions .links {
    display: none;
  }
}

.navbar .nav-actions .links svg {
  fill: #7e868e;
  height: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar .nav-actions .links svg:hover {
  fill: #be0f5d;
}

.navbar .nav-actions .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative;
}

.navbar .nav-actions .icon svg {
  fill: #FFF;
  height: 20px;
  width: 20px;
  margin: 0 10px;
}

@media (max-width: 575.98px) {
  .navbar .nav-actions .icon svg {
    margin: 0 8px;
  }
}

.navbar .nav-actions .icon span {
  color: #FFF;
}

.navbar .nav-actions .switch-langs h6 {
  margin: 1px 0 0 0;
  color: #FFF;
  font-family: "en";
}

.navbar .nav-actions .icon.dark-mode svg {
  height: 25px !important;
  width: 25px !important;
}

.navbar .nav-actions .icon.dark-mode svg g [fill] {
  fill: var(--p-color);
}

.navbar .nav-actions .nav-toggler {
  display: none;
}

@media (max-width: 991.98px) {
  .navbar .nav-actions .nav-toggler {
    display: block;
  }
}

.navbar .nav-actions .nav-btn-fill {
  border: 2px solid #FFF;
  background: #FFF;
  text-decoration: none;
  color: #FFF;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  margin: 0 0 0 0;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
  min-width: 110px;
  margin-right: 15px;
}

.navbar .nav-actions .nav-btn-fill:hover {
  text-decoration: none;
  color: #FFF;
}

.navbar .nav-actions .li-links {
  position: absolute;
  top: 0;
  left: 0;
  text-align: right;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(0, -22px);
          transform: translate(0, -22px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar .nav-actions .li-links ul {
  display: block;
  background: #fbfbfb;
  width: 150px;
  display: block;
  text-align: right;
  padding: 10px 15px;
  border-radius: 12px;
  margin-top: 28px;
}

@media (max-width: 1199.98px) {
  .navbar .nav-actions .li-links ul {
    margin-top: 40px;
  }
}

.navbar .nav-actions .li-links ul li {
  display: block;
  margin: 8px 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0 0;
}

.navbar .nav-actions .li-links ul li:hover a {
  color: #be0f5d;
  text-decoration: none;
}

.navbar .nav-actions .li-links ul li a {
  color: var(--p-color);
}

.navbar .nav-actions .hover-drop {
  margin-top: 4px;
}

.navbar .nav-actions .hover-drop span {
  color: #FFF;
  position: relative;
  text-decoration: none;
  font-size: 0.95rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.navbar .nav-actions .hover-drop svg {
  height: 20px;
  width: 20px;
  margin: 0px 8px 0 8px;
  fill: #FFF;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar .nav-actions .hover-drop:hover .li-links {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.nav-dark {
  background: #FFF;
}

.nav-dark .nav-links {
  margin-top: 3px;
}

@media (max-width: 991.98px) {
  .nav-dark .nav-links {
    background: var(--body-bg);
    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;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}

.nav-dark .nav-links .nav-close {
  display: none;
}

@media (max-width: 991.98px) {
  .nav-dark .nav-links .nav-close {
    display: block;
    position: fixed;
    top: 20px;
    left: 20px;
  }
}

.nav-dark .nav-links .nav-close svg {
  height: 25px;
  width: 25px;
  cursor: pointer;
}

.nav-dark .nav-links .nav-close svg g [fill] {
  fill: #000248;
}

.nav-dark .nav-links ul li a, .nav-dark .nav-links ul li span {
  color: #000;
}

.nav-dark .nav-links ul li .li-links ul li a {
  color: #000;
}

.nav-dark .nav-actions .links {
  font-size: 13px;
  color: #FFF;
  margin: 0 5px;
  text-decoration: none;
}

@media (max-width: 1199.98px) {
  .nav-dark .nav-actions .links {
    margin: 0 1px;
  }
}

@media (max-width: 767.98px) {
  .nav-dark .nav-actions .links {
    text-align: center;
    margin-bottom: 20px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

@media (max-width: 991.98px) {
  .nav-dark .nav-actions .links {
    display: none;
  }
}

.nav-dark .nav-actions .icon svg {
  fill: #000;
}

.nav-dark .nav-actions .icon span {
  color: #000;
}

.nav-dark .nav-actions .switch-langs h6 {
  color: #000;
}

.nav-dark .nav-actions .nav-btn-fill {
  border: 2px solid #000;
  background: #000;
  color: #000;
}

.nav-dark .nav-actions .nav-btn-fill:hover {
  color: #000;
}

.nav-dark .nav-actions .hover-drop span {
  color: #000;
}

.nav-dark .nav-actions .hover-drop svg {
  fill: #000;
}

.nav-scroll {
  background: #FFF;
}

.nav-scroll .nav-links {
  margin-top: 3px;
}

@media (max-width: 991.98px) {
  .nav-scroll .nav-links {
    background: var(--body-bg);
    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;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}

.nav-scroll .nav-links .nav-close {
  display: none;
}

@media (max-width: 991.98px) {
  .nav-scroll .nav-links .nav-close {
    display: block;
    position: fixed;
    top: 20px;
    left: 20px;
  }
}

.nav-scroll .nav-links .nav-close svg {
  height: 25px;
  width: 25px;
  cursor: pointer;
}

.nav-scroll .nav-links .nav-close svg g [fill] {
  fill: #000248;
}

.nav-scroll .nav-links ul li a, .nav-scroll .nav-links ul li span {
  color: #000;
}

.nav-scroll .nav-links ul li .li-links ul li a {
  color: #000;
}

.nav-scroll .nav-actions .links {
  font-size: 13px;
  color: #FFF;
  margin: 0 5px;
  text-decoration: none;
}

@media (max-width: 1199.98px) {
  .nav-scroll .nav-actions .links {
    margin: 0 1px;
  }
}

@media (max-width: 767.98px) {
  .nav-scroll .nav-actions .links {
    text-align: center;
    margin-bottom: 20px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

@media (max-width: 991.98px) {
  .nav-scroll .nav-actions .links {
    display: none;
  }
}

.nav-scroll .nav-actions .icon svg {
  fill: #000;
}

.nav-scroll .nav-actions .icon span {
  color: #000;
}

.nav-scroll .nav-actions .switch-langs h6 {
  color: #000;
}

.nav-scroll .nav-actions .nav-btn-fill {
  border: 2px solid #000;
  background: #000;
  color: #000;
}

.nav-scroll .nav-actions .nav-btn-fill:hover {
  color: #000;
}

.nav-scroll .nav-actions .hover-drop span {
  color: #000;
}

.nav-scroll .nav-actions .hover-drop svg {
  fill: #000;
}

.header {
  height: calc(50vh);
  border-radius: 0;
  width: 100%;
  margin: -85px auto 0 auto;
  background-image: url(assets/images/hero-bg-new.png);
  position: relative;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

@media (max-width: 991.98px) {
  .header {
    height: 350px;
  }
}

.header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100%;
  width: 100%;
  opacity: 0.85;
  background: linear-gradient(215deg, #3F5EFB, #FC466B);
  opacity: 0.7;
  background: -webkit-gradient(linear, left top, left bottom, from(0), color-stop(#000), to(#000));
  background: linear-gradient(0, #000, #000);
}

.header .header-content {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 60vh;
  position: relative;
  z-index: 15;
}

.header .header-content .header-info {
  margin: 0;
  position: relative;
}

.header .header-content h1 {
  text-transform: uppercase;
  font-size: 3rem;
  color: #FFF;
  display: inline-block;
  margin-bottom: 5px;
  margin-top: 25px;
}

.header .header-content h1 span {
  display: block;
}

.header .header-content h1 .gray-h1 {
  font-size: 1.5rem;
  color: #be0f5d;
  background: #FFF;
  display: inherit;
  padding: 0 20px;
}

@media (max-width: 1199.98px) {
  .header .header-content h1 .gray-h1 {
    font-size: 3.1rem;
  }
}

@media (max-width: 575.98px) {
  .header .header-content h1 .gray-h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 1199.98px) {
  .header .header-content h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 991.98px) {
  .header .header-content h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 767.98px) {
  .header .header-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 575.98px) {
  .header .header-content h1 {
    font-size: 2rem;
  }
}

.header .header-content p {
  color: #e4e5e6;
  margin: 10px 0 0 0;
  width: 60%;
  font-size: 0.8rem;
  text-align: center;
  margin: auto;
}

@media (max-width: 1199.98px) {
  .header .header-content p {
    font-size: 1rem;
  }
}

@media (max-width: 991.98px) {
  .header .header-content p {
    width: 85%;
    margin: 15px auto 0 auto;
  }
}

@media (max-width: 575.98px) {
  .header .header-content p {
    font-size: 0.85rem;
  }
}

.header .header-content .btn-fill {
  border: unset;
  background: #be0f5d;
  background: linear-gradient(215deg, #352162, #d30b54);
  text-decoration: none;
  color: #FFF;
  padding: 12px 35px 12px 35px;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 25px 0 0 0;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
}

.header .header-content .btn-fill:hover svg {
  -webkit-transform: translate(-4px, 0);
          transform: translate(-4px, 0);
  fill: var(--p-color);
}

.header .header-content .btn-fill svg {
  height: 15px;
  width: 15px;
  margin-right: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  fill: var(--p-color);
  margin-top: 3px;
}

@media (max-width: 575.98px) {
  .header .header-content .btn-fill {
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 100;
  }
}

.footer {
  background: #1b1f2e;
  position: relative;
}

.footer .footer-container {
  padding: 75px 0 25px 0;
  height: 100%;
  width: 100%;
  display: inline-block;
  background-image: url(assets/images/footer-bg.jpg);
  background-position: center center;
}

.footer .social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
}

.footer .social-links .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer .social-links .social-link i {
  font-size: 1rem;
  line-height: 1;
}

.footer .social-links .social-link:hover {
  background: #be0f5d;
  border-color: #be0f5d;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(190, 15, 93, 0.35);
}

.dark-mode .footer .social-links .social-link {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .footer .social-links .social-link:hover {
  background: #6956e5;
  border-color: #6956e5;
  box-shadow: 0 8px 20px rgba(105, 86, 229, 0.35);
}

@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: 0 25px;
  }
}

.footer .footer-col .Footer-head {
  margin-bottom: 25px;
}

.footer .footer-col .Footer-head a {
  text-decoration: none;
  color: #FFF;
  font-size: 1.3rem;
  display: block;
}

.footer .footer-col .Footer-head .footer-company-tagline {
  display: block;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
  font-weight: 600;
}

.footer .footer-col .Footer-head a.footer-logo {
  font-size: 1.4rem;
}

.footer .footer-col .Footer-head a.footer-logo img {
  width: 300px;
}

@media (max-width: 575.98px) {
  .footer .footer-col .Footer-head a.footer-logo img {
    width: unset;
    max-width: 100%;
  }
}

.footer .footer-col p.footer-address {
  color: #FFF;
  font-size: 13px;
  margin-bottom: 15px;
}

.footer .footer-col ul {
  margin: 0;
  padding: 0;
}

.footer .footer-col ul li {
  color: #FFF;
  font-size: 13px;
  margin: 0 0 15px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer .footer-col ul li:hover {
  -webkit-transform: translate(7px, 0);
          transform: translate(7px, 0);
}

.footer .footer-col ul li span {
  color: #FFF;
}

.footer .footer-col ul li a {
  color: #FFF;
  text-decoration: none;
}

.footer .sub-footer {
  padding: 24px 0;
  background: #03031b;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dark-mode .footer .sub-footer {
  background: #060410;
  border-top-color: rgba(255, 255, 255, 0.03);
}

.sub-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.sub-footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.copyright-text, .dev-credit {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45) !important;
  margin: 0 !important;
  line-height: 1.5;
}

.copyright-text span {
  font-family: inherit;
}

.dev-credit a {
  color: #be0f5d !important;
  font-weight: 650;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dark-mode .dev-credit a {
  color: #8f82f8 !important;
}

.dev-credit a:hover {
  color: #ffffff !important;
  text-shadow: 0 0 10px rgba(190, 15, 93, 0.5);
}

.dark-mode .dev-credit a:hover {
  text-shadow: 0 0 10px rgba(143, 130, 248, 0.5);
}

.divider-line {
  width: 1px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.15);
}

.sub-footer-right {
  display: flex;
  align-items: center;
}

.affiliation-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.dark-mode .affiliation-badge {
  background: rgba(255, 255, 255, 0.015);
  border-color: rgba(255, 255, 255, 0.03);
}

.affiliation-badge:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(190, 15, 93, 0.2);
  transform: translateY(-1px);
}

.dark-mode .affiliation-badge:hover {
  border-color: rgba(105, 86, 229, 0.25);
}

.affiliation-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
  background: #ffffff;
  padding: 2px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.affiliation-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4) !important;
  transition: color 0.3s ease;
}

.affiliation-badge:hover .affiliation-text {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .sub-footer-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 16px;
  }

  .sub-footer-left {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    width: 100%;
  }

  .divider-line {
    display: none;
  }

  .sub-footer-right {
    justify-content: center;
    width: 100%;
  }
}

[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-right: 50px;
}

[lang="ar"] footer .footer-col li {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

[lang="ar"] footer .footer-col li:hover {
  -webkit-transform: translate(-7px, 0);
          transform: translate(-7px, 0);
}

/* Sub-footer Arabic alignment rules resolved via Flexbox direction */
[lang="ar"] footer .sub-footer-left {
  direction: rtl;
}

.slider-area::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  opacity: 0.65;
  background-color: #1b1f2e;
}

[lang="en"] .navbar .nav-actions .nav-btn-fill {
  margin-right: unset;
  margin-left: 15px;
}

.categories-page .industries {
  padding: 75px 0;
}

.categories-page .industries .section-header {
  margin-bottom: 75px;
}

.categories-page .industries .section-header h2 {
  font-size: 3.5rem;
}

.categories-page .industries .industry-card {
  text-align: right;
  margin-bottom: 12px;
  padding: 20px 40px 40px 40px;
  background: #fbfbfb;
  border: 1px solid #e4e7ec70;
}

.categories-page .industries .industry-card lord-icon {
  height: 125px;
  width: 125px;
  margin-right: -15px;
}

.categories-page .industries .industry-card h3 {
  font-size: 1.6rem;
  height: 75px;
  margin-bottom: 5px;
}

.categories-page .industries .industry-card p {
  font-size: 0.9rem;
  color: #7e868e;
}

.categories-page .industries .industry-card a {
  color: #be0f5d;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  margin: auto;
}

.categories-page .industries .industry-card a span {
  font-weight: 600;
  font-size: 0.8rem;
}

.categories-page .industries .industry-card a svg {
  height: 12px;
  width: 12px;
  margin: 0 15px;
  display: none;
}

.category-page {
  padding: 50px 0;
}

.category-page lord-icon {
  height: 200px;
  width: 200px;
  display: block;
  text-align: center;
  margin: auto;
  margin-bottom: -25px;
}

@media (max-width: 575.98px) {
  .category-page lord-icon {
    height: 150px;
    width: 150px;
  }
}

.category-page .section-header-cayegories {
  margin-bottom: 75px;
}

.category-page .section-header-cayegories h2 {
  font-size: 5.5rem;
}

@media (max-width: 1199.98px) {
  .category-page .section-header-cayegories h2 {
    font-size: 4.5rem;
  }
}

@media (max-width: 991.98px) {
  .category-page .section-header-cayegories h2 {
    font-size: 3.5rem;
  }
}

@media (max-width: 767.98px) {
  .category-page .section-header-cayegories h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .category-page .section-header-cayegories h2 {
    font-size: 1.5rem;
  }
}

.category-page .category-page-content figure {
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: 20px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.category-page .category-page-content .about-category {
  padding: 50px 0;
}

.category-page .category-page-content .about-category h3 {
  font-size: 2rem;
  margin-bottom: 25px;
}

.category-page .category-page-content .about-category p {
  font-size: 1.2rem;
  margin: 25px 0;
  color: #7e868e;
}

.category-page .category-page-content .companies {
  margin-top: 50px;
}

.category-page .category-page-content .companies-container .company-card {
  background-color: #fbfbfb;
  margin-bottom: 12px;
  padding: 0 50px;
  height: 175px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
}

.category-page .category-page-content .companies-container .company-card img {
  max-width: 100%;
}

[lang="en"] .categories-page .industries .industry-card {
  text-align: left;
}

.blog-page {
  padding: 75px 0;
}

.blog-page .blog-content .blog-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fbfbfb;
  padding: 25px 25px;
  margin-bottom: 12px;
}

@media (max-width: 1199.98px) {
  .blog-page .blog-content .blog-card {
    display: block;
    padding: 0;
  }
}

.blog-page .blog-content .blog-card .blog-card-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 1199.98px) {
  .blog-page .blog-content .blog-card .blog-card-side {
    display: block;
    padding-bottom: 10px;
  }
}

.blog-page .blog-content .blog-card .blog-image {
  margin-left: 25px;
}

.blog-page .blog-content .blog-card .blog-image figure {
  margin-bottom: 0;
  height: 150px;
  width: 225px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width: 1199.98px) {
  .blog-page .blog-content .blog-card .blog-image figure {
    width: 100%;
    height: 150px;
  }
}

@media (max-width: 1199.98px) {
  .blog-page .blog-content .blog-card .blog-image {
    margin-left: 0;
  }
}

@media (max-width: 1199.98px) {
  .blog-page .blog-content .blog-card .blog-card-info {
    padding: 15px 15px 5px 15px;
  }
}

.blog-page .blog-content .blog-card .blog-card-info .pretitle {
  color: #be0f5d;
  font-weight: 500;
  font-size: 1rem;
  padding: 3px 0;
  display: inline-block;
  border-radius: 0;
}

@media (max-width: 1199.98px) {
  .blog-page .blog-content .blog-card .blog-card-info .pretitle {
    color: #7e868e;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 2px;
  }
}

.blog-page .blog-content .blog-card .blog-card-info h3 {
  font-size: 1.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

@media (max-width: 1199.98px) {
  .blog-page .blog-content .blog-card .blog-card-info h3 {
    font-size: 1rem;
  }
}

.blog-page .blog-content .blog-card .blog-card-info p {
  color: #7e868e;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media (max-width: 1199.98px) {
  .blog-page .blog-content .blog-card .blog-card-info p {
    font-size: 0.8rem;
    margin: 0;
  }
}

.blog-page .blog-content .blog-card .blog-actions {
  width: 175px;
  text-align: center;
}

@media (max-width: 1199.98px) {
  .blog-page .blog-content .blog-card .blog-actions {
    width: 100%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 15px 15px 0;
  }
}

.blog-page .blog-content .blog-card .blog-actions a {
  color: #be0f5d;
  font-weight: 500;
  font-size: 1rem;
  background: #be0f5d14;
  padding: 5px 15px;
  display: inline-block;
  border-radius: 0;
  text-decoration: none;
}

@media (max-width: 1199.98px) {
  .blog-page .blog-content .blog-card .blog-actions a {
    font-size: 0.8rem;
  }
}

.blog-page .blog-page-content figure {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.blog-page .blog-page-content .about-blog {
  padding: 50px 0;
}

.blog-page .blog-page-content .about-blog h3 {
  font-size: 2rem;
  margin-bottom: 25px;
}

.blog-page .blog-page-content .about-blog p {
  font-size: 1.2rem;
  margin: 25px 0;
  color: #7e868e;
}

.blog-page .blog-page-content .blog-images .blog-img {
  margin-bottom: 12px;
  border-radius: 20px;
}

.blog-page .blog-page-content .blog-images .blog-img img {
  max-width: 100%;
  aspect-ratio: 10/6;
  border-radius: 20px;
}

[lang="en"] .blog-page .blog-content .blog-card .blog-image {
  margin-left: unset;
  margin-right: 25px;
}

@media (max-width: 1199.98px) {
  [lang="en"] .blog-page .blog-content .blog-card .blog-actions {
    margin: 0 0 15px 15px;
  }
}

.job-page {
  padding: 75px 0;
}

.job-page .row {
  overflow: visible  !important;
}

.job-card {
  padding: 30px 30px;
  background: #fbfbfb;
  margin-bottom: 12px;
  border: 1px solid #e4e7ec70;
}

.job-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0;
}

.job-card p {
  font-size: 0.9rem;
  color: #7e868e;
  font-weight: 600;
}

.job-card .job-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}

.job-card .job-actions .details {
  text-decoration: none;
  color: #be0f5d;
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 1px solid #be0f5d;
  cursor: pointer;
}

.job-card .job-actions .apply {
  text-decoration: none;
  background: #000;
  color: #FFF;
  padding: 7px 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
}

.job-popup {
  background: #FFF;
  border-radius: 0;
  transition: opacity 0.5s ease-in-out 0s, visibility 0.5s ease-in-out 0s, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  padding: 25px 25px 15px 25px;
  border: 1px solid #e4e7ec70;
  margin-top: 50px;
  background: #fbfbfb;
}

@media (max-width: 767.98px) {
  .job-popup {
    width: 95%;
  }
}

.job-popup .job-popup-content .job-popup-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px 0 15px 0;
  border-bottom: 1px solid #ebebeb;
}

.job-popup .job-popup-content .job-popup-header h6 {
  font-size: 1.4rem;
}

.job-popup .job-popup-content .job-popup-header .back, .job-popup .job-popup-content .job-popup-header .applyn {
  font-size: 0.9rem;
  color: #7e868e;
  border-bottom: 1px solid #e4e7ec70;
  cursor: pointer;
}

.job-popup .job-popup-content .job-popup-header svg {
  fill: #000;
  height: 25px;
  width: 25px;
  cursor: pointer;
}

.job-popup .job-popup-content .job-popup-form {
  margin: 15px 5px 15px 5px;
}

.job-popup .job-popup-content .job-popup-form label {
  font-size: 0.8rem;
  font-weight: 500;
  margin: 10px 2px 0 2px;
}

.job-popup .job-popup-content .job-popup-form .form-group {
  margin: 6px 0;
}

.job-popup .job-popup-content .job-popup-form .form-group .form-control {
  border: 1px solid #e4e7ec70;
}

.job-popup .job-popup-content .job-popup-form textarea {
  min-height: 150px;
}

.job-popup .job-popup-content .job-popup-form button {
  margin-top: 15px;
  background: #be0f5d;
  color: #FFF;
  font-size: 1rem;
  font-weight: 500;
  border: 0;
  outline: unset;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  padding: 12px 0;
  border-radius: 0px;
  margin: 20px 10px 0 10px;
  padding: 10px 25px;
}

.open-popup {
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
}

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

a {
  text-decoration: none !important;
}

.oppo-card {
  background: var(--navbar-color);
  border: 1px solid #e4e7ec70;
  background: #fbfbfb;
  padding: 25px 30px 25px 30px;
  border-radius: 0px;
  margin-bottom: 24px;
  border-radius: 12px;
  position: relative;
}

.oppo-card a {
  color: unset !important;
}

.oppo-card .job-card-header {
  display: block;
}

.oppo-card .job-card-header .job-side {
  text-align: right;
  display: block;
}

.oppo-card .job-card-header .job-image {
  margin-left: 15px;
  display: none;
}

.oppo-card .job-card-header .job-info {
  margin-bottom: 10px;
}

.oppo-card .job-card-header .job-info h3 {
  font-weight: 500;
  color: var(--p-color);
  margin-bottom: 3px;
  font-size: 1.7rem;
}

.oppo-card .job-card-header .job-info span {
  color: #adafca;
}

.oppo-card .job-card-header .job-filled {
  display: block;
  text-align: center;
  margin-left: 15px;
  display: none;
}

.oppo-card .job-card-header .job-filled span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: -8px;
  color: var(--p-color);
}

.oppo-card .job-card-header .job-filled p {
  display: block;
  font-weight: 600;
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #adafca;
}

.oppo-card .job-card-details {
  margin-top: 0;
}

.oppo-card .job-card-details .job-card-detail-line {
  display: block;
}

.oppo-card .job-card-details .job-card-detail-line .side-title {
  width: 84px;
  color: #adafca;
  padding-right: 19px;
  margin-bottom: 10px;
  display: block;
  font-size: 1.1rem;
}

.oppo-card .job-card-details .job-card-detail-line p {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: var(--p-color);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.oppo-card .job-card-details .job-card-detail-line .cert {
  -webkit-text-decoration: dotted;
          text-decoration: dotted;
}

.oppo-card .job-card-details .job-card-detail-line .cert p {
  margin-left: 25px;
  margin-bottom: 0;
  -webkit-text-decoration: dotted;
          text-decoration: dotted;
}

.oppo-card .job-card-details .job-card-detail-line .needs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 15px;
}

.oppo-card .job-card-details .job-card-detail-line .needs span {
  background: #FFF;
  color: var(--p-color);
  border: 1px solid var(--border-color);
  font-weight: 600;
  margin: 2px 2px;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 0.9rem;
}

.oppo-card .job-card-separate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
  border-bottom: 1px solid var(--border-color);
}

@media (max-width: 767.98px) {
  .oppo-card .job-card-separate {
    display: block;
  }
}

.oppo-card .job-card-separate .job-card-detail-line {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.oppo-card .job-more-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 25px 0 0 0;
}

@media (max-width: 767.98px) {
  .oppo-card .job-more-info {
    display: block;
  }
}

.oppo-card .job-more-info .job-info-badges {
  padding: 0 0 0 0;
}

@media (max-width: 767.98px) {
  .oppo-card .job-more-info .job-info-badges {
    margin-bottom: 15px;
    text-align: center;
  }
}

.oppo-card .job-more-info .job-info-badges .badge {
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #be0f5d;
  font-weight: 500;
  background: #be0f5d1f;
}

.oppo-card .job-more-info .job-status-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767.98px) {
  .oppo-card .job-more-info .job-status-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.oppo-card .job-more-info .job-status {
  padding: 6px 12px;
  font-weight: 500;
  border-radius: 4px;
  font-size: 1rem;
  margin-right: 10px;
}

.oppo-card .job-more-info .open {
  color: #00d09c;
  background: #00d09c1a;
}

.oppo-card .job-more-info .closed {
  color: #ff0023;
  background: #ffdee9;
  opacity: 1;
}

.sidebar-filter {
  margin-top: 15px;
  margin-bottom: 15px;
}

@media (max-width: 991.98px) {
  .sidebar-filter {
    margin-top: 18px;
  }
}

.sidebar-filter .section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 0 25px 0 25px;
  border-radius: 8px;
  position: relative;
  margin: 0;
}

.sidebar-filter .section-header .section-heading h3 {
  font-size: 1.1rem;
  margin: 0;
  color: #000;
}

.sidebar-filter .section-header .section-actions a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sidebar-filter .section-header .section-actions a span {
  color: #be0f5d;
  margin-left: 10px;
  font-weight: 600;
  font-size: 1.1rem;
}

.sidebar-filter .section-header .section-actions a svg {
  fill: #be0f5d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
  border: 1px solid var(--border-color);
  border-radius: 50%;
}

.sidebar-filter .sidebar-box-items {
  margin-top: 35px;
  margin-bottom: 20px;
  padding: 0 25px;
}

.sidebar-filter .sidebar-box-items .checkbox-line {
  margin: 7px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sidebar-filter .sidebar-box-items .checkbox-line .checkbox-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sidebar-filter .sidebar-box-items .checkbox-line .checkbox-wrap .h6 {
  height: 20px;
  width: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}

.sidebar-filter .sidebar-box-items .checkbox-line .checkbox-wrap .h6 input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  margin: 0;
}

.sidebar-filter .sidebar-box-items .checkbox-line .checkbox-wrap .h6 input:focus {
  outline: 0;
}

.sidebar-filter .sidebar-box-items .checkbox-line .checkbox-wrap .h6 .cbx {
  position: absolute;
  width: 20px;
  height: 20px;
}

.sidebar-filter .sidebar-box-items .checkbox-line .checkbox-wrap .h6 .cbx input {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #be0f5d;
  border-radius: 0;
  z-index: 2;
}

.sidebar-filter .sidebar-box-items .checkbox-line .checkbox-wrap .h6 .cbx label {
  width: 20px;
  height: 20px;
  background: none;
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: trasnlate3d(0, 0, 0);
          transform: trasnlate3d(0, 0, 0);
  pointer-events: none;
}

.sidebar-filter .sidebar-box-items .checkbox-line .checkbox-wrap .h6 .cbx svg {
  position: absolute;
  top: 5px;
  left: 2px;
  z-index: 1;
  pointer-events: none;
  height: 10px;
  width: 16px;
}

.sidebar-filter .sidebar-box-items .checkbox-line .checkbox-wrap .h6 .cbx svg path {
  stroke: #FFF;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 19;
  stroke-dashoffset: 19;
  -webkit-transition: stroke-dashoffset 0.3s ease;
  transition: stroke-dashoffset 0.3s ease;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.sidebar-filter .sidebar-box-items .checkbox-line .checkbox-wrap .h6 .cbx input:checked + label {
  -webkit-animation: splash 0.6s ease forwards;
          animation: splash 0.6s ease forwards;
}

.sidebar-filter .sidebar-box-items .checkbox-line .checkbox-wrap .h6 .cbx input:checked + label + svg path {
  stroke-dashoffset: 0;
}

@-webkit-keyframes splash {
  40% {
    background: #be0f5d;
    -webkit-box-shadow: 0 -18px 0 -8px #be0f5d, 16px -8px 0 -8px #be0f5d, 16px 8px 0 -8px #be0f5d, 0 18px 0 -8px #be0f5d, -16px 8px 0 -8px #be0f5d, -16px -8px 0 -8px #be0f5d;
            box-shadow: 0 -18px 0 -8px #be0f5d, 16px -8px 0 -8px #be0f5d, 16px 8px 0 -8px #be0f5d, 0 18px 0 -8px #be0f5d, -16px 8px 0 -8px #be0f5d, -16px -8px 0 -8px #be0f5d;
  }
  100% {
    background: #be0f5d;
    -webkit-box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
            box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
  }
}

@keyframes splash {
  40% {
    background: #be0f5d;
    -webkit-box-shadow: 0 -18px 0 -8px #be0f5d, 16px -8px 0 -8px #be0f5d, 16px 8px 0 -8px #be0f5d, 0 18px 0 -8px #be0f5d, -16px 8px 0 -8px #be0f5d, -16px -8px 0 -8px #be0f5d;
            box-shadow: 0 -18px 0 -8px #be0f5d, 16px -8px 0 -8px #be0f5d, 16px 8px 0 -8px #be0f5d, 0 18px 0 -8px #be0f5d, -16px 8px 0 -8px #be0f5d, -16px -8px 0 -8px #be0f5d;
  }
  100% {
    background: #be0f5d;
    -webkit-box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
            box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
  }
}

.sidebar-filter .sidebar-box-items .checkbox-line .checkbox-wrap p {
  padding-left: 0px;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 22px;
  cursor: pointer;
  color: #000;
  margin-right: 10px;
}

.sidebar-filter .sidebar-box-items .checkbox-line .checkbox-line-text {
  color: #000;
  font-size: .8rem;
  font-weight: 500;
}

.sidebar-filter .search-box {
  padding: 0 25px;
}

.sidebar-filter .search-box .search-box-container {
  margin-top: 25px;
  margin-bottom: 20px;
}

.sidebar-filter .multi-select {
  padding: 0 25px;
}

.sidebar-filter .multi-select .multi-select-container {
  margin-top: 25px;
  margin-bottom: 20px;
}

.sidebar-filter .posts-search {
  width: 100%;
  padding: 0 0 0 0;
  margin: 10px 0 25px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sidebar-filter .posts-search form {
  width: 100%;
}

.sidebar-filter .posts-search .form-group {
  width: 100%;
  position: relative;
  margin: 0;
}

@media (max-width: 991.98px) {
  .sidebar-filter .posts-search .form-group {
    margin: 10px 0 0 0;
  }
}

.sidebar-filter .posts-search .form-group .form-control {
  height: 45px;
  padding: 0 45px 0 20px;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  color: var(--h-color);
  -webkit-transition: border-color .2s ease-in-out;
  transition: border-color .2s ease-in-out;
  width: 100%;
  border-radius: 0;
  font-size: 0.85rem;
  font-weight: 500;
}

@media (max-width: 575.98px) {
  .sidebar-filter .posts-search .form-group .form-control {
    height: 43px;
    padding: 0 40px 0 20px;
  }
}

.sidebar-filter .posts-search .form-group .form-control:focus {
  border-color: #be0f5d;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.sidebar-filter .posts-search .form-group .form-control::-webkit-input-placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.8rem;
}

.sidebar-filter .posts-search .form-group .form-control:-ms-input-placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.8rem;
}

.sidebar-filter .posts-search .form-group .form-control::-ms-input-placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.8rem;
}

.sidebar-filter .posts-search .form-group .form-control::placeholder {
  color: #cacaca;
  font-weight: 500;
  font-size: 0.8rem;
}

@media (max-width: 575.98px) {
  .sidebar-filter .posts-search .form-group .form-control::-webkit-input-placeholder {
    font-size: 0.7rem;
  }
  .sidebar-filter .posts-search .form-group .form-control:-ms-input-placeholder {
    font-size: 0.7rem;
  }
  .sidebar-filter .posts-search .form-group .form-control::-ms-input-placeholder {
    font-size: 0.7rem;
  }
  .sidebar-filter .posts-search .form-group .form-control::placeholder {
    font-size: 0.7rem;
  }
}

.sidebar-filter .posts-search .form-group .search-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}

.sidebar-filter .posts-search .form-group .search-icon svg {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  height: 22px;
  width: 22px;
  fill: var(--h-color);
}

@media (max-width: 575.98px) {
  .sidebar-filter .posts-search .form-group .search-icon svg {
    font-size: 0.7rem;
    height: 18px;
    width: 18px;
  }
}

.fb {
  text-decoration: none;
  width: 100%;
  margin: auto;
  color: #FFF;
  display: inline-block;
  height: 45px;
  border-radius: 0;
  font-size: .75rem;
  font-weight: 700;
  text-align: center;
  line-height: 45px;
  cursor: pointer;
  margin-top: 15px;
  -webkit-transition: background-color .2s ease-in-out;
  transition: background-color .2s ease-in-out;
  background-color: #000;
  margin: 0 auto 18px auto;
  border: 0;
}

.fb svg {
  height: 18px;
  margin-left: 4px;
}

.fb svg path {
  fill: #FFF;
}

.fb:hover {
  background-color: #be0f5d;
}

.job-header {
  padding: 35px 0;
  color: #000;
  margin-top: 85px;
  z-index: 10;
  border: 1px solid #e4e7ec70;
  background: #fbfbfb;
  margin-bottom: 25px;
}

@media (max-width: 767.98px) {
  .job-header .job-header-info {
    text-align: center;
    margin-bottom: 15px;
  }
}

.job-header .job-header-info .job-tags .date {
  margin-left: 5px;
  color: dimgray;
}

.job-header .job-header-info .job-tags .badge {
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #be0f5d;
  font-weight: 500;
  background: #be0f5d1f;
}

.job-header .job-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767.98px) {
  .job-header .job-actions {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.job-header .job-actions a {
  text-decoration: none;
  width: 150px;
  margin: auto;
  color: #FFF;
  display: inline-block;
  height: 45px;
  border-radius: 0;
  font-size: .75rem;
  font-weight: 700;
  text-align: center;
  line-height: 45px;
  -webkit-transition: background-color .2s ease-in-out;
  transition: background-color .2s ease-in-out;
  background-color: #000;
  margin: 0 auto 0 0;
  border: 0;
}

@media (max-width: 767.98px) {
  .job-header .job-actions a {
    margin: 0 auto 0 auto;
  }
}

.one-job {
  padding: 0 0 75px 0;
}

.one-job .editor-content .editor-line {
  margin-bottom: 35px;
}

.one-job .editor-content .editor-line h3 {
  font-size: 1.4rem;
}

.one-job .editor-content .editor-line p {
  color: dimgray;
}

.one-job .editor-content .editor-line ul {
  padding: 0 20px;
  color: dimgray;
}

.input-range {
  margin-top: 25px;
  direction: ltr;
  padding: 0 18px;
  /* Functional styling;
   * These styles are required for noUiSlider to function.
   * You don't need to change these rules to apply your design.
   */
  /* Painting and performance;
   * Browsers can paint handles in their own layer.
   */
  /* Slider size and handle placement;
   */
  /* Styling;
   */
  /* Handles and cursors;
   */
  /* Disabled state;
   */
}

.input-range .slider-labels {
  margin-top: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 17px;
  font-family: "changa";
  font-weight: 300;
}

.input-range .noUi-target, .input-range .noUi-target * {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.input-range .noUi-target {
  position: relative;
  direction: ltr;
}

.input-range .noUi-base {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  /* Fix 401 */
}

.input-range .noUi-origin {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
}

.input-range .noUi-handle {
  position: relative;
  z-index: 1;
}

.input-range .noUi-stacking .noUi-handle {
  /* This class is applied to the lower origin when
     its values is > 50%. */
  z-index: 10;
}

.input-range .noUi-state-tap .noUi-origin {
  -webkit-transition: left 0.3s,top .3s;
  transition: left 0.3s,top .3s;
}

.input-range .noUi-state-drag * {
  cursor: inherit !important;
}

.input-range .noUi-base, .input-range .noUi-handle {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.input-range .noUi-horizontal {
  height: 4px;
}

.input-range .noUi-horizontal .noUi-handle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  left: -7px;
  top: -7px;
  background-color: #be0f5d;
}

.input-range .noUi-background {
  background: #D6D7D9;
}

.input-range .noUi-connect {
  background: #be0f5d;
  -webkit-transition: background 450ms;
  transition: background 450ms;
}

.input-range .noUi-origin {
  border-radius: 2px;
}

.input-range .noUi-target {
  border-radius: 2px;
}

.input-range .noUi-draggable {
  cursor: w-resize;
}

.input-range .noUi-vertical .noUi-draggable {
  cursor: n-resize;
}

.input-range .noUi-handle {
  cursor: default;
  -webkit-box-sizing: content-box !important;
  box-sizing: content-box !important;
}

.input-range .noUi-handle:active {
  border: 8px solid #be0f5d;
  border: 8px solid rgba(53, 93, 187, 0.38);
  background-clip: padding-box;
  left: -14px;
  top: -14px;
}

.input-range [disabled].noUi-connect, .input-range [disabled] .noUi-connect {
  background: #B8B8B8;
}

.input-range [disabled].noUi-origin, .input-range [disabled] .noUi-handle {
  cursor: not-allowed;
}

.success-job {
  padding: 150px 0 75px 0;
  font-size: 24px;
}

.success-job .main-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.success-job .check-container {
  width: 6.25rem;
  height: 7.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.success-job .check-container .check-background {
  width: 100%;
  height: calc(100% - 1.25rem);
  background: -webkit-gradient(linear, left top, right bottom, from(#5de593), to(#41d67c));
  background: linear-gradient(to bottom right, #5de593, #41d67c);
  -webkit-box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
          box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
  -webkit-transform: scale(0.84);
          transform: scale(0.84);
  border-radius: 50%;
  -webkit-animation: animateContainer 0.75s ease-out forwards 0.75s;
          animation: animateContainer 0.75s ease-out forwards 0.75s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
}

.success-job .check-container .check-background svg {
  width: 65%;
  -webkit-transform: translateY(0.25rem);
          transform: translateY(0.25rem);
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  -webkit-animation: animateCheck 0.35s forwards 1.25s ease-out;
          animation: animateCheck 0.35s forwards 1.25s ease-out;
}

.success-job .check-container .check-shadow {
  bottom: calc(-15% - 5px);
  left: 0;
  border-radius: 50%;
  background: radial-gradient(closest-side, #49da83, transparent);
  -webkit-animation: animateShadow 0.75s ease-out forwards 0.75s;
          animation: animateShadow 0.75s ease-out forwards 0.75s;
}

@-webkit-keyframes animateContainer {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
            box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
  }
  25% {
    opacity: 1;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    -webkit-box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
            box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
  }
  43.75% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
    -webkit-box-shadow: 0px 0px 0px 43.334px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
            box-shadow: 0px 0px 0px 43.334px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
  }
  62.5% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 21.667px rgba(255, 255, 255, 0.25) inset;
            box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 21.667px rgba(255, 255, 255, 0.25) inset;
  }
  81.25% {
    -webkit-box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset;
            box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset;
  }
  100% {
    opacity: 1;
    -webkit-box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset;
            box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset;
  }
}

@keyframes animateContainer {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
            box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
  }
  25% {
    opacity: 1;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    -webkit-box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
            box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
  }
  43.75% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
    -webkit-box-shadow: 0px 0px 0px 43.334px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
            box-shadow: 0px 0px 0px 43.334px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
  }
  62.5% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 21.667px rgba(255, 255, 255, 0.25) inset;
            box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 21.667px rgba(255, 255, 255, 0.25) inset;
  }
  81.25% {
    -webkit-box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset;
            box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset;
  }
  100% {
    opacity: 1;
    -webkit-box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset;
            box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset;
  }
}

@-webkit-keyframes animateCheck {
  from {
    stroke-dashoffset: 80;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes animateCheck {
  from {
    stroke-dashoffset: 80;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes animateShadow {
  0% {
    opacity: 0;
    width: 100%;
    height: 15%;
  }
  25% {
    opacity: 0.25;
  }
  43.75% {
    width: 40%;
    height: 7%;
    opacity: 0.35;
  }
  100% {
    width: 85%;
    height: 15%;
    opacity: 0.25;
  }
}

@keyframes animateShadow {
  0% {
    opacity: 0;
    width: 100%;
    height: 15%;
  }
  25% {
    opacity: 0.25;
  }
  43.75% {
    width: 40%;
    height: 7%;
    opacity: 0.35;
  }
  100% {
    width: 85%;
    height: 15%;
    opacity: 0.25;
  }
}

.success-job h3 {
  text-align: center;
}

.success-job p {
  text-align: center;
  color: #7e868e;
  font-size: 0.9rem;
  width: 50%;
  margin: auto;
}

@media (max-width: 767.98px) {
  .success-job p {
    width: 100%;
  }
}

.success-job .back-home {
  border: unset;
  background: linear-gradient(215deg, #352162, #d30b54);
  color: #FFF;
  padding: 12px 35px 12px 35px;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 25px 0 0 0;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
  display: table;
  text-align: center;
  margin: 25px auto;
}

.contact-page-wrapper {
  padding: 80px 0;
  background-color: var(--body-bg, #f5f8fa);
}

.contact-card-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  background-color: var(--navbar-bg, #ffffff);
  border: 1px solid var(--border-color, #eaeaf5);
  padding: 24px;
  border-radius: 16px;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: 0 10px 30px var(--shadow-color, rgba(94, 92, 154, 0.06));
          box-shadow: 0 10px 30px var(--shadow-color, rgba(94, 92, 154, 0.06));
  position: relative;
  overflow: hidden;
}

.contact-card-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right bottom, from(rgba(190, 15, 93, 0.04)), to(rgba(105, 86, 229, 0.04)));
  background: linear-gradient(135deg, rgba(190, 15, 93, 0.04) 0%, rgba(105, 86, 229, 0.04) 100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.contact-card-box:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  border-color: var(--main-color, #be0f5d);
  -webkit-box-shadow: 0 15px 35px rgba(190, 15, 93, 0.08);
          box-shadow: 0 15px 35px rgba(190, 15, 93, 0.08);
}

.dark-mode .contact-card-box:hover {
  -webkit-box-shadow: 0 15px 35px rgba(105, 86, 229, 0.12);
          box-shadow: 0 15px 35px rgba(105, 86, 229, 0.12);
}

.contact-card-box:hover::before {
  opacity: 1;
}

.contact-card-box .card-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background-color: rgba(190, 15, 93, 0.08);
  color: var(--main-color, #be0f5d);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.4rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.dark-mode .contact-card-box .card-icon {
  background-color: rgba(105, 86, 229, 0.12);
}

.contact-card-box:hover .card-icon {
  background-color: var(--main-color, #be0f5d);
  color: #ffffff;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.contact-card-box .card-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  z-index: 2;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: inherit;
}

.contact-card-box .card-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--subp-color, #adafca);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-card-box .card-value-link,
.contact-card-box .card-value-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--p-color, #2c2f32);
  text-decoration: none;
  margin: 0;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  display: inline-block;
}

.contact-card-box .card-value-link:hover {
  color: var(--main-color, #be0f5d);
}

.contact-card-box .card-values-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.contact-map-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color, #eaeaf5);
  -webkit-box-shadow: 0 10px 30px var(--shadow-color, rgba(94, 92, 154, 0.06));
          box-shadow: 0 10px 30px var(--shadow-color, rgba(94, 92, 154, 0.06));
  height: 320px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.contact-map-card:hover {
  border-color: var(--main-color, #be0f5d);
  -webkit-box-shadow: 0 15px 35px rgba(190, 15, 93, 0.08);
          box-shadow: 0 15px 35px rgba(190, 15, 93, 0.08);
}

.contact-map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.contact-form-card {
  background-color: var(--navbar-bg, #ffffff);
  border: 1px solid var(--border-color, #eaeaf5);
  padding: 40px;
  border-radius: 24px;
  -webkit-box-shadow: 0 15px 40px var(--shadow-color, rgba(94, 92, 154, 0.08));
          box-shadow: 0 15px 40px var(--shadow-color, rgba(94, 92, 154, 0.08));
  height: 100%;
}

.form-group-custom {
  position: relative;
  margin-bottom: 24px;
  width: 100%;
}

.form-input-custom {
  width: 100%;
  height: 54px;
  padding: 18px 20px 6px 20px;
  border: 1px solid var(--border-input, #dedeea);
  background-color: var(--navbar-bg, #ffffff);
  color: var(--p-color, #2c2f32);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  outline: none;
}

textarea.form-input-custom {
  height: auto;
  min-height: 160px;
  padding-top: 24px;
  resize: vertical;
}

.form-label-custom {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--subp-color, #adafca);
  font-size: 0.95rem;
  font-weight: 500;
  pointer-events: none;
}

[dir="rtl"] .form-label-custom {
  right: 20px;
  left: auto;
  -webkit-transform-origin: top right;
          transform-origin: top right;
}

[dir="ltr"] .form-label-custom {
  left: 20px;
  right: auto;
  -webkit-transform-origin: top left;
          transform-origin: top left;
}

textarea.form-input-custom ~ .form-label-custom {
  top: 24px;
  -webkit-transform: none;
          transform: none;
}

.form-input-custom:focus ~ .form-label-custom,
.form-input-custom:not(:placeholder-shown) ~ .form-label-custom,
.form-input-custom:-webkit-autofill ~ .form-label-custom {
  top: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--main-color, #be0f5d);
}

[dir="rtl"] .form-input-custom:focus ~ .form-label-custom,
[dir="rtl"] .form-input-custom:not(:placeholder-shown) ~ .form-label-custom,
[dir="rtl"] .form-input-custom:-webkit-autofill ~ .form-label-custom {
  -webkit-transform: translateY(0) scale(0.9);
          transform: translateY(0) scale(0.9);
}

[dir="ltr"] .form-input-custom:focus ~ .form-label-custom,
[dir="ltr"] .form-input-custom:not(:placeholder-shown) ~ .form-label-custom,
[dir="ltr"] .form-input-custom:-webkit-autofill ~ .form-label-custom {
  -webkit-transform: translateY(0) scale(0.9);
          transform: translateY(0) scale(0.9);
}

.form-input-custom:focus {
  border-color: var(--main-color, #be0f5d);
  -webkit-box-shadow: 0 0 0 4px rgba(190, 15, 93, 0.08);
          box-shadow: 0 0 0 4px rgba(190, 15, 93, 0.08);
  background-color: var(--navbar-bg, #ffffff);
}

.dark-mode .form-input-custom:focus {
  -webkit-box-shadow: 0 0 0 4px rgba(105, 86, 229, 0.12);
          box-shadow: 0 0 0 4px rgba(105, 86, 229, 0.12);
}

.form-input-custom.is-invalid {
  border-color: #dc3545 !important;
}

.form-input-custom.is-invalid ~ .form-label-custom {
  color: #dc3545 !important;
}

.form-input-custom.is-invalid:focus {
  -webkit-box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.12) !important;
          box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.12) !important;
}

.btn-submit-custom {
  background-color: var(--main-color, #be0f5d);
  color: #ffffff;
  border: none;
  padding: 14px 30px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 12px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  -webkit-box-shadow: 0 5px 15px rgba(190, 15, 93, 0.15);
          box-shadow: 0 5px 15px rgba(190, 15, 93, 0.15);
}

.dark-mode .btn-submit-custom {
  -webkit-box-shadow: 0 5px 15px rgba(105, 86, 229, 0.2);
          box-shadow: 0 5px 15px rgba(105, 86, 229, 0.2);
}

.btn-submit-custom:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 25px rgba(190, 15, 93, 0.25);
          box-shadow: 0 8px 25px rgba(190, 15, 93, 0.25);
  opacity: 0.95;
}

.dark-mode .btn-submit-custom:hover {
  -webkit-box-shadow: 0 8px 25px rgba(105, 86, 229, 0.3);
          box-shadow: 0 8px 25px rgba(105, 86, 229, 0.3);
}

.btn-submit-custom i {
  font-size: 0.95rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.btn-submit-custom:hover i {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

[dir="rtl"] .btn-submit-custom:hover i {
  -webkit-transform: translateX(-4px);
          transform: translateX(-4px);
}

@media (max-width: 991.98px) {
  .contact-form-card {
    padding: 30px 20px;
    margin-top: 20px;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Changa";
  background-color: #fff;
  height: 100%;
  position: relative;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
}

.row {
  overflow: visible;
}

.swiper {
  direction: ltr !important;
}

.container-fluid {
  padding-right: 50px;
  padding-left: 50px;
}

.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 {
  padding-right: 8px;
  padding-left: 8px;
}

.btn-fill {
  border: 2px solid #be0f5d;
  background: #be0f5d;
  text-decoration: none;
  color: #FFF;
  padding: 12px 35px 12px 35px;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 25px 0 0 0;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
}

.btn-fill:hover {
  text-decoration: none;
  color: #FFF;
}

.btn-fill:hover svg {
  -webkit-transform: translate(-4px, 0);
          transform: translate(-4px, 0);
  fill: var(--p-color);
}

.btn-fill svg {
  height: 15px;
  width: 15px;
  margin-right: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  fill: var(--p-color);
  margin-top: 3px;
}

@media (max-width: 575.98px) {
  .btn-fill {
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 100;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  display: block;
}

.section-header .pretitle {
  color: #be0f5d;
  font-weight: 500;
  font-size: 1.1rem;
  background: #be0f5d14;
  padding: 3px 12px;
  display: inline-block;
  border-radius: 0;
}

.section-header p {
  margin-bottom: 0;
  font-weight: 400;
  color: #7e868e;
  margin-bottom: 5px;
}

.section-header p span {
  color: #be0f5d;
  font-weight: 500;
  font-size: 1.1rem;
  background: #be0f5d14;
  padding: 3px 12px;
  display: inline-block;
  border-radius: 0;
}

.section-header h2 {
  font-size: 3rem;
  line-height: 1.4;
  margin-bottom: 15px;
}

@media (max-width: 767.98px) {
  .section-header h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .section-header h2 {
    font-size: 1.7rem;
  }
}

.section-header h2 span {
  color: #be0f5d;
  font-weight: 500;
}

.section-header h2 {
  position: relative;
}

.section-header h2 svg {
  height: 84px;
  width: 225px;
  position: absolute;
  top: 92%;
  fill: #be0f5d;
  right: 50%;
  -webkit-transform: translate(50%, 0);
          transform: translate(50%, 0);
}

.section-header .header-text {
  width: 50%;
  margin: 0 auto 25px auto;
  display: block;
  font-size: 0.9rem;
}

@media (max-width: 767.98px) {
  .section-header .header-text {
    font-size: 0.9rem;
    width: 80%;
  }
}

@media (max-width: 575.98px) {
  .section-header .header-text {
    width: 90%;
  }
}

.section-header-side {
  text-align: right;
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 991.98px) {
  .section-header-side {
    display: block;
  }
}

.section-header-side .pretitle {
  color: #be0f5d;
  font-weight: 500;
  font-size: 1.1rem;
  background: #be0f5d14;
  padding: 3px 12px;
  display: inline-block;
  border-radius: 0;
}

.section-header-side p {
  margin-bottom: 0;
  font-weight: 400;
  color: #7e868e;
  margin-bottom: 5px;
}

.section-header-side p span {
  color: #be0f5d;
  font-weight: 500;
  font-size: 1.1rem;
  background: #be0f5d14;
  padding: 3px 12px;
  display: inline-block;
  border-radius: 0;
}

.section-header-side h2 {
  font-size: 3rem;
  line-height: 1.4;
  margin-bottom: 5px;
}

@media (max-width: 767.98px) {
  .section-header-side h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .section-header-side h2 {
    font-size: 1.7rem;
  }
}

.section-header-side h2 span {
  color: #be0f5d;
  font-weight: 500;
}

.section-header-side .header-text {
  width: 547px;
  margin: 0;
  display: block;
  font-size: 0.9rem;
}

@media (max-width: 767.98px) {
  .section-header-side .header-text {
    font-size: 0.9rem;
    width: 80%;
  }
}

@media (max-width: 575.98px) {
  .section-header-side .header-text {
    width: 90%;
  }
}

.home-header {
  height: calc(80vh);
  border-radius: 0;
  width: 100%;
  margin: -85px auto 0 auto;
  background-image: url(assets/images/hero-bg-new.png);
  background-size: cover;
  background-position: 0px 0px;
  background-repeat: no-repeat;
  position: relative;
  position: relative;
}

.home-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100%;
  width: 100%;
  opacity: 0.85;
  background: linear-gradient(215deg, #3F5EFB, #FC466B);
  opacity: 0.55;
  background: -webkit-gradient(linear, left top, left bottom, from(0), color-stop(#000), to(#000));
  background: linear-gradient(0, #000, #000);
}

.home-header .header-content {
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 85vh;
  position: relative;
  z-index: 15;
}

.home-header .header-content .header-info {
  margin: 0;
  position: relative;
}

@media (max-width: 991.98px) {
  .home-header .header-content .header-info {
    text-align: center;
  }
}

.home-header .header-content h1 {
  text-transform: uppercase;
  font-size: 4.5rem;
  color: #fff;
  display: inline-block;
  margin-bottom: 5px;
}

.home-header .header-content h1 span {
  display: block;
}

.home-header .header-content h1 .gray-h1 {
  font-size: 3.5rem;
  color: #be0f5d;
  background: #FFF;
  display: inherit;
  padding: 0 20px;
}

@media (max-width: 1199.98px) {
  .home-header .header-content h1 .gray-h1 {
    font-size: 3.1rem;
  }
}

@media (max-width: 767.98px) {
  .home-header .header-content h1 .gray-h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .home-header .header-content h1 .gray-h1 {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .home-header .header-content h1 .gray-h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 1199.98px) {
  .home-header .header-content h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 991.98px) {
  .home-header .header-content h1 {
    font-size: 3.5rem;
  }
}

@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: 2rem;
  }
}

.home-header .header-content p {
  color: #FFF;
  margin: 10px 0 0 0;
  width: 60%;
  font-size: 1rem;
  margin: 0;
  text-align: right;
}

@media (max-width: 1199.98px) {
  .home-header .header-content p {
    font-size: 1rem;
  }
}

@media (max-width: 991.98px) {
  .home-header .header-content p {
    width: 85%;
    margin: 15px auto 0 auto;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .home-header .header-content p {
    font-size: 0.85rem;
  }
}

.home-header .header-content .btn-fill {
  border: unset;
  background: #be0f5d;
  background: linear-gradient(215deg, #352162, #d30b54);
  text-decoration: none;
  color: #FFF;
  padding: 12px 35px 12px 35px;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 25px 0 0 0;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
}

.home-header .header-content .btn-fill:hover svg {
  -webkit-transform: translate(-4px, 0);
          transform: translate(-4px, 0);
  fill: var(--p-color);
}

.home-header .header-content .btn-fill svg {
  height: 15px;
  width: 15px;
  margin-right: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  fill: var(--p-color);
  margin-top: 3px;
}

@media (max-width: 575.98px) {
  .home-header .header-content .btn-fill {
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 100;
  }
}

.home-header .header-content .header-image-first {
  position: absolute;
  bottom: 100%;
  left: 50%;
  z-index: -1;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.home-header .header-content .header-image-first img {
  height: 425px;
}

.partners {
  padding: 75px 0 0 0;
}

.partners .section-header {
  margin-bottom: 25px;
  background: #FFF;
  margin-top: -115px;
  z-index: 5;
  position: relative;
  border-radius: 50px;
  padding-top: 50px;
}

.partners .partners-container {
  border-bottom: 1px solid #d0d5dd;
  padding-bottom: 50px;
}

.partners .partners-container .partner-card {
  text-align: center;
}

.partners .partners-container .partner-card:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.partners .partners-container .partner-card img {
  max-width: 100%;
  height: 125px;
  text-align: center;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 575.98px) {
  .partners .partners-container .partner-card img {
    height: 100px;
  }
}

.industries {
  padding: 50px 0;
}

.industries .industry-card {
  text-align: right;
  margin-bottom: 12px;
  padding: 20px 40px 40px 40px;
  background: #fbfbfb;
  border: 1px solid #e4e7ec70;
}

.industries .industry-card lord-icon {
  height: 125px;
  width: 125px;
  margin-right: -15px;
}

.industries .industry-card h3 {
  font-size: 1.6rem;
  height: 75px;
  margin-bottom: 5px;
}

.industries .industry-card p {
  font-size: 0.9rem;
  color: #7e868e;
}

.industries .industry-card a {
  color: #be0f5d;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  margin: auto;
}

.industries .industry-card a span {
  font-weight: 600;
  font-size: 0.8rem;
}

.industries .industry-card a svg {
  height: 12px;
  width: 12px;
  margin: 0 15px;
  display: none;
}

.industries .industry-card-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 393px;
  border: 1px dashed #7e868e4a;
}

.industries .industry-card-more .industry-card-more-container {
  padding: 0;
  display: block;
}

.industries .industry-card-more .industry-card-more-container lord-icon {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: -25px;
}

.industries .industry-card-more .industry-card-more-container h3 {
  height: auto;
  margin-top: 25px;
  color: #7e868e;
}

.vision {
  background: #FFF;
  padding: 75px 0;
}

.vision .row {
  padding: 50px 0;
  overflow: visible;
}

@media (max-width: 991.98px) {
  .vision .vision-content {
    text-align: center;
  }
}

.vision .vision-content h3 {
  font-size: 2.2rem;
  position: relative;
  color: #08344e;
}

.vision .vision-content h3 svg {
  height: 84px;
  width: 215px;
  position: absolute;
  top: 99%;
  fill: #be0f5d;
  right: 0%;
  -webkit-transform: translate(0%, 0);
          transform: translate(0%, 0);
}

@media (max-width: 991.98px) {
  .vision .vision-content h3 svg {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    right: unset;
  }
}

.vision .vision-content p {
  margin-top: 25px;
  color: #838694;
  width: 80%;
  font-size: 1.1rem;
}

@media (max-width: 991.98px) {
  .vision .vision-content p {
    width: 100%;
  }
}

.vision .vision-content .vision-tabs {
  margin-top: 50px;
  position: relative;
  z-index: 5;
}

.vision .vision-content .vision-tabs ul {
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  border-bottom: 1px solid #e7e7e8;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

@media (max-width: 991.98px) {
  .vision .vision-content .vision-tabs ul {
    width: 100%;
  }
}

.vision .vision-content .vision-tabs ul li {
  margin: 0 20px;
  cursor: pointer;
  display: block;
  padding: 15px 0;
  font-size: 1.5rem;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .vision .vision-content .vision-tabs ul li {
    font-size: 1.2rem;
  }
}

.vision .vision-content .vision-tabs ul .li-active {
  border-bottom: 2px solid #be0f5d;
}

.vision .vision-content .vision-tabs-content {
  background: #FFF;
  border-radius: 12px;
  padding: 40px 40px;
  color: #838694;
  font-size: 1.2rem;
  margin-top: 20px;
  background: #f7f7f9;
  width: 90%;
  display: none;
}

@media (max-width: 991.98px) {
  .vision .vision-content .vision-tabs-content {
    width: 100%;
    margin-bottom: 25px;
    font-size: 1rem;
    padding: 30px 30px;
  }
}

.vision .vision-image {
  position: relative;
  z-index: 4;
}

@media (max-width: 991.98px) {
  .vision .vision-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.vision .vision-image .main-img {
  max-width: 90%;
  border-radius: 20px;
  height: 620px;
}

@media (max-width: 1199.98px) {
  .vision .vision-image .main-img {
    max-width: 100%;
  }
}

.vision .vision-image .img-header {
  position: absolute;
  top: 50%;
  left: -50px;
  background: #be0f5d;
  color: #FFF;
  font-size: 2.1rem;
  font-weight: 600;
  width: 250px;
  padding: 35px 35px;
  border-radius: 20px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 5;
}

@media (max-width: 1199.98px) {
  .vision .vision-image .img-header {
    display: none;
  }
}

.vision .vision-image .img-header img {
  max-width: 100%;
  margin-top: 15px;
}

.vision .vision-image .vision-dots-top {
  position: absolute;
  top: -40px;
  right: -50px;
  z-index: -1;
}

@media (max-width: 1199.98px) {
  .vision .vision-image .vision-dots-top {
    display: none;
  }
}

.vision .vision-image .vision-dots-top img {
  max-width: 100%;
  border-radius: 0;
}

.vision .vision-image .vision-dots-bottom {
  position: absolute;
  bottom: 57px;
  left: 77px;
  z-index: -1;
}

@media (max-width: 1199.98px) {
  .vision .vision-image .vision-dots-bottom {
    display: none;
  }
}

.vision .vision-image .vision-dots-bottom img {
  max-width: 100%;
  border-radius: 0;
}

.map-numbers {
  background: #FFF;
  padding: 0 0 75px 0;
}

.map-numbers .map-number-container {
  padding-top: 75px;
}

.map-numbers .map-numbers-line-vid {
  width: 70%;
}

@media (max-width: 1199.98px) {
  .map-numbers .map-numbers-line-vid {
    margin: auto;
  }
}

@media (max-width: 991.98px) {
  .map-numbers .map-numbers-line-vid {
    margin: 50px auto 0 auto;
  }
}

.map-numbers .map-numbers-line .section-pretitle {
  font-size: 0.9rem;
  margin-bottom: 10px;
  font-weight: 100;
  color: #6956e5;
}

.map-numbers .map-numbers-line .section-header {
  margin-bottom: 25px;
}

.map-numbers .map-numbers-line .section-header .section-header-content h2 {
  text-align: right;
  display: table;
}

.map-numbers .map-numbers-line .section-header .section-header-content h2 svg {
  text-align: right;
}

.map-numbers .map-numbers-line h2 {
  font-size: 2rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 15px;
}

.map-numbers .map-numbers-line h2 .font-bold {
  font-size: 1.7rem;
  color: var(--light);
  font-weight: 100;
}

.map-numbers .map-numbers-line p {
  color: #adafca;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.map-numbers .map-numbers-line img {
  max-width: 100%;
  display: block;
  max-height: 300px;
  margin-top: 50px;
}

.map-numbers .map-numbers-line iframe {
  max-width: 100%;
  border-radius: 12px;
}

.map-numbers .map-numbers-line video {
  border-radius: 12px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  aspect-ratio: 9/16;
}

.map-numbers .map-numbers-line .plyr {
  border-radius: 12px;
}

.ma3 {
  padding: 75px 0 75px 0;
}

.ma3 .vision-container .vision-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 8px 0;
  padding: 30px 30px;
  border: 1px solid #e4e7ec70;
}

.ma3 .vision-container .vision-card .icon-parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(59%, #be0f5d), color-stop(125%, #fff));
  background-image: linear-gradient(180deg, #be0f5d 59%, #fff 125%);
  margin-bottom: 25px;
  height: 50px;
  width: 50px;
  margin-left: 15px;
}

.ma3 .vision-container .vision-card .icon-parent img {
  height: 25px;
}

.ma3 .vision-container .vision-card .icon-parent i {
  color: #FFF;
  font-size: 1.5rem;
  line-height: 0;
}

.ma3 .vision-container .vision-card .vision-card-info {
  -webkit-box-flex: 6;
      -ms-flex: 6;
          flex: 6;
}

.ma3 .vision-container .vision-card .vision-card-info h3 {
  color: #000;
  font-size: 1.4rem;
}

.ma3 .vision-container .vision-card .vision-card-info p {
  font-size: 0.9rem;
  color: #01183996;
  margin: 0;
}

.team-container {
  padding: 75px 0;
}

.team-container figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 450px;
  border-radius: 20px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width: 575.98px) {
  .team-container figure {
    aspect-ratio: 16/9;
    height: auto;
  }
}

.team-container figure .h6 {
  background: #FFF;
  padding: 15px;
  font-size: 1.5rem;
  margin-bottom: 25px;
}

@media (max-width: 991.98px) {
  .team-container figure .h6 {
    width: 90%;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .team-container figure .h6 {
    font-size: 1.2rem;
    display: none;
  }
}

.team-number {
  background: #fbfbfb;
}

.team-number .number-container {
  padding: 50px 0 75px 0;
}

.team-number .number-container .padding-top {
  padding-top: 70px;
}

.team-number .number-container .one-number {
  text-align: center;
  margin: 10px 0;
}

.team-number .number-container .one-number .icon-parent {
  height: 70px;
  width: 70px;
  background: #e4e7ec;
  background: #FFF;
  border: 1px solid #e4e7ec70;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
}

.team-number .number-container .one-number i {
  color: #000;
  font-size: 1.9rem;
  line-height: 0;
  margin-right: 0;
}

.team-number .number-container .one-number h3 {
  color: #000;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: -6px;
  margin-top: 10px;
}

.team-number .number-container .one-number span {
  font-size: 0.9rem;
  color: #adafca;
}

.blog-section {
  padding: 75px 0 75px 0;
}

.blog-section .blog-card-main {
  margin: 10px 0;
}

.blog-section .blog-container figure {
  margin: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 150px;
  width: 100%;
  border-radius: 0;
}

.blog-section .blog-container .blog-content {
  background: #fbfbfb;
  padding: 20px 25px;
  border: 1px solid #e4e7ec70;
  border-top: unset;
}

.blog-section .blog-container .blog-content .pretitle {
  color: #7e868e;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 2px;
}

.blog-section .blog-container .blog-content h3 {
  font-size: 1rem;
}

.blog-section .blog-container .blog-content a {
  border: unset;
  color: #be0f5d;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 5px 0 0 0;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
}

.blog-section .blog-container .blog-content a svg {
  height: 18px;
  fill: #FFF;
  margin-right: 1px;
  margin-left: 0;
}

.contact {
  padding: 0 0 0 0;
  background: #fbfbfb;
  position: relative;
  overflow: hidden;
}

.contact:before {
  content: "";
  height: 100px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: -20px;
  position: absolute;
  display: inline-block;
  left: 0;
  background-image: url(assets/images/shape-divider-2.png);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

@media (max-width: 991.98px) {
  .contact:before {
    display: none;
  }
}

.contact .contact-container {
  height: 100%;
  width: 100%;
  display: inline-block;
  padding: 100px 0 50px 0;
}

@media (max-width: 991.98px) {
  .contact .contact-info {
    padding: 0 0 25px 0;
    text-align: center;
  }
}

.contact .contact-info h3 {
  font-size: 2.2rem;
  position: relative;
  color: #08344e;
}

.contact .contact-info h3 svg {
  height: 84px;
  width: 295px;
  position: absolute;
  top: 99%;
  fill: #be0f5d;
  right: 0%;
  -webkit-transform: translate(0%, 0);
          transform: translate(0%, 0);
}

@media (max-width: 991.98px) {
  .contact .contact-info h3 svg {
    right: unset;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

.contact .contact-info p {
  margin-top: 25px;
  color: #838694;
  width: 95%;
  font-size: 1rem;
}

.contact .contact-info .contacts-line .contact-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact .contact-info .contacts-line .contact-line svg {
  height: 40px;
  fill: #be0f5d;
  margin-left: 10px;
  margin-bottom: 0;
}

.contact .contact-info .contacts-line .contact-line .contact-line-part {
  margin: 20px 0;
}

.contact .contact-info .contacts-line .contact-line .contact-line-part h6 {
  margin: 0;
  font-size: 1.2rem;
  display: block;
  text-align: right;
}

.contact .contact-info .contacts-line .contact-line .contact-line-part p {
  margin: 0;
  width: 100%;
}

.contact .contact-form-map iframe {
  height: 450px;
  width: 100%;
  outline: none;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  border: unset;
}

.brands {
  padding: 75px 0 50px 0;
}

.brands .swiper {
  width: 100%;
  margin-right: auto;
  margin-left: 0;
}

.brands .companies-slider {
  height: 167px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: url(assets/images/shape-divider-home-edit.png);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.brands .companies-slider .brand-card {
  text-align: center;
  background: #fbfbfb;
  border: 1px solid #e4e7ec70;
  padding: 0 25px;
}

.brands .companies-slider .brand-card:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.brands .companies-slider .brand-card img {
  max-width: 100%;
  height: 125px;
  text-align: center;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.separation {
  background: #fbfbfb;
  padding: 25px 0;
  text-align: center;
  background-image: url(assets/images/section-bg2.jpg);
  background-size: cover;
  background-position: 50% 25%;
  background-repeat: no-repeat;
}

.separation p {
  margin: 0;
  font-weight: 600;
  font-size: 1.5rem;
}

@media (max-width: 767.98px) {
  .separation p {
    font-size: 1.2rem;
  }
}

@media (max-width: 575.98px) {
  .separation p {
    font-size: 1rem;
  }
}

.navbar-open {
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}

[lang="en"] body {
  direction: ltr;
  text-align: left;
}

[lang="en"] .home-header .header-content {
  text-align: left;
}

[lang="en"] .home-header .header-content h1 {
  text-transform: uppercase;
  font-size: 4.5rem;
  color: #fff;
  display: inline-block;
  margin-bottom: 5px;
}

[lang="en"] .home-header .header-content h1 span {
  display: block;
}

[lang="en"] .home-header .header-content h1 .gray-h1 {
  font-size: 3.5rem;
  color: #be0f5d;
  background: #FFF;
  display: inherit;
  padding: 0 20px;
}

@media (max-width: 1199.98px) {
  [lang="en"] .home-header .header-content h1 .gray-h1 {
    font-size: 3.1rem;
  }
}

@media (max-width: 767.98px) {
  [lang="en"] .home-header .header-content h1 .gray-h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  [lang="en"] .home-header .header-content h1 .gray-h1 {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  [lang="en"] .home-header .header-content h1 .gray-h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 1199.98px) {
  [lang="en"] .home-header .header-content h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 991.98px) {
  [lang="en"] .home-header .header-content h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 767.98px) {
  [lang="en"] .home-header .header-content h1 {
    font-size: 2.7rem;
  }
}

@media (max-width: 575.98px) {
  [lang="en"] .home-header .header-content h1 {
    font-size: 2rem;
  }
}

[lang="en"] .home-header .header-content p {
  text-align: left;
}

[lang="en"] .industries .industry-card {
  text-align: left;
}

[lang="en"] .vision .vision-content h3 svg {
  right: unset;
  left: 0;
}

@media (max-width: 991.98px) {
  [lang="en"] .vision .vision-content h3 svg {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    right: unset;
  }
}

[lang="en"] .vision .vision-image .img-header {
  left: unset;
  right: 0;
}

[lang="en"] .ma3 .vision-container .vision-card .icon-parent {
  margin-left: unset;
  margin-right: 15px;
}

[lang="en"] .contact .contact-info .contacts-line .contact-line svg {
  margin-left: 0;
  margin-right: 10px;
}

[lang="en"] .contact .contact-info .contacts-line .contact-line .contact-line-part h6 {
  text-align: left;
}

.tab-content-show {
  display: block !important;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #be0f5d;
  border-radius: 4px;
}

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

#btn-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  background: #be0f5d;
  padding: 5px;
}

#btn-back-to-top svg {
  fill: #FFF;
  height: 30px;
  width: 30px;
}

/* Premium Enhancements Overrides */
.navbar.nav-scroll {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.dark-mode .navbar.nav-scroll {
  background: rgba(30, 30, 45, 0.85) !important;
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.partner-card, .industry-card, .blog-card, .vision-card, .one-number {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  border-radius: 16px !important;
  overflow: visible;
}

.partner-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 35px rgba(190, 15, 93, 0.1);
  border-color: #be0f5d !important;
}

.partner-card:hover img {
  filter: grayscale(0%) !important;
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.vision-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

/* Gradients and micro-animations for main action buttons */
.btn-fill, .nav-btn-fill {
  background: linear-gradient(135deg, #be0f5d 0%, #900542 100%) !important;
  border: none !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(190, 15, 93, 0.3) !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  position: relative;
  overflow: hidden;
  border-radius: 30px !important;
}

.btn-fill:hover, .nav-btn-fill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(190, 15, 93, 0.4) !important;
  opacity: 0.95;
}

.btn-fill:active, .nav-btn-fill:active {
  transform: translateY(1px);
}

/* Tabs styles home page */
.vision-tabs ul {
  display: flex;
  gap: 15px;
  border-bottom: 2px solid #eaeaf5;
  padding-bottom: 10px;
}

.vision-tab, .msg-tab {
  cursor: pointer;
  padding: 8px 20px;
  font-weight: 700;
  border-radius: 20px;
  transition: all 0.3s ease;
  color: #adafca;
}

.vision-tab.li-active, .msg-tab.li-active {
  background: #be0f5d;
  color: white !important;
}

/* CSS smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* ==========================================================================
   HOMEPAGE PREMIUM REDESIGN OVERRIDES
   ========================================================================== */

/* 1. Hero Header Redesign */
.home-header {
  background-image: url(/assets/images/hero-bg-new.png) !important;
  background-size: cover !important;
  background-position: center center !important;
  position: relative;
  overflow: hidden;
  margin: 0 auto !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  border-radius: 0 !important;
  height: auto !important;
  min-height: 100vh !important;
  padding: 0 !important;
}

@media (min-width: 992px) {
  .home-header {
    height: 100vh !important;
    min-height: 100vh !important;
    overflow: hidden !important;
  }
}

.home-header .container {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
}

@media (min-width: 992px) {
  .home-header .container {
    padding-top: 100px !important;
    padding-bottom: 20px !important;
  }
}

@media (max-width: 991.98px) {
  .home-header {
    padding-top: 110px !important;
    padding-bottom: 50px !important;
  }
  .home-header .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

.home-header .overlay {
  background: linear-gradient(135deg, rgba(10, 8, 30, 0.92) 0%, rgba(15, 12, 38, 0.96) 50%, rgba(25, 15, 45, 0.90) 100%) !important;
  opacity: 1 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.home-header .container {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
}

.home-header .header-row {
  position: relative;
  min-height: 0;
}

.home-header .header-info-content {
  text-align: right;
  max-width: 100%;
}
[dir="ltr"] .home-header .header-info-content {
  text-align: left;
}

/* Badge Styling */
.home-header .badge-container {
  margin-bottom: 20px;
}
.home-header .badge-pill {
  background: rgba(190, 15, 93, 0.08);
  border: 1px solid rgba(190, 15, 93, 0.2);
  color: #ff57a0;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.home-header .badge-pill .badge-icon {
  font-size: 0.9rem;
}

/* Typography */
.home-header h1 {
  font-size: 3rem !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
  margin-bottom: 24px !important;
  letter-spacing: -0.3px;
  text-transform: none !important;
  color: #ffffff;
}
.home-header h1 .gray-h1 {
  color: #ffffff !important;
  display: inline !important;
  font-size: inherit !important;
  background: none !important;
  padding: 0 !important;
  -webkit-text-fill-color: #ffffff;
}
.home-header h1 .fill {
  background: linear-gradient(135deg, #ff57a0 0%, #be0f5d 50%, #ff83b5 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  display: inline !important;
  margin-top: 0 !important;
  font-weight: 800;
  margin-inline-start: 6px;
}
.home-header p {
  font-size: 1.15rem !important;
  color: rgba(226, 232, 240, 0.85) !important;
  line-height: 1.85 !important;
  margin-bottom: 35px !important;
  max-width: 680px !important;
  width: 100% !important;
}

/* Button & Action Container */
.home-header .header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
[dir="rtl"] .home-header .header-actions {
  justify-content: flex-start;
}
[dir="ltr"] .home-header .header-actions {
  justify-content: flex-start;
}

/* Glow Filled Button */
.home-header .btn-fill-glow {
  background: linear-gradient(135deg, #be0f5d, #e04b8c) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  padding: 14px 32px !important;
  border-radius: 100px !important;
  border: none !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px -5px rgba(190, 15, 93, 0.5) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  text-decoration: none !important;
  cursor: pointer;
}
.home-header .btn-fill-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -5px rgba(190, 15, 93, 0.7), 0 0 15px rgba(255, 87, 160, 0.3) !important;
}
.home-header .btn-fill-glow .arrow-icon {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}
[dir="ltr"] .home-header .btn-fill-glow .arrow-icon {
  transform: rotate(180deg);
}
[dir="rtl"] .home-header .btn-fill-glow:hover .arrow-icon {
  transform: translateX(-4px);
}
[dir="ltr"] .home-header .btn-fill-glow:hover .arrow-icon {
  transform: rotate(180deg) translateX(-4px);
}

/* Outline Custom Button */
.home-header .btn-outline-light-custom {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  padding: 14px 32px !important;
  border-radius: 100px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}
.home-header .btn-outline-light-custom:hover {
  background: #ffffff !important;
  color: #0f0c26 !important;
  border-color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px -10px rgba(255, 255, 255, 0.15) !important;
}

/* Visual Column wrapper */
.home-header .visual-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

/* Glow Background Effects */
.home-header .visual-circle-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(190, 15, 93, 0.25) 0%, rgba(190, 15, 93, 0) 70%);
  border-radius: 50%;
  top: -5%;
  left: -5%;
  z-index: 1;
  filter: blur(50px);
  animation: pulseGlow 8s infinite alternate ease-in-out;
}
.home-header .visual-circle-glow-secondary {
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 87, 160, 0.2) 0%, rgba(255, 87, 160, 0) 70%);
  border-radius: 50%;
  bottom: -5%;
  right: -5%;
  z-index: 1;
  filter: blur(40px);
  animation: pulseGlow 6s infinite alternate-reverse ease-in-out;
}

@keyframes pulseGlow {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.2); opacity: 0.95; }
}

/* Main Visual Canvas - Holographic card with dynamic floating */
@keyframes floatCanvas {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(0.8deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.home-header .visual-canvas-container {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  border-radius: 32px;
  overflow: hidden;
  z-index: 2;
  background: rgba(15, 12, 35, 0.45);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.65),
              0 0 50px -10px rgba(190, 15, 93, 0.25),
              inset 0 0 20px rgba(255, 255, 255, 0.02);
  animation: floatCanvas 8s infinite ease-in-out;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.home-header .visual-wrapper:hover .visual-canvas-container {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(190, 15, 93, 0.35);
  box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.75),
              0 0 60px rgba(190, 15, 93, 0.4),
              0 0 0 1px rgba(190, 15, 93, 0.15),
              inset 0 0 30px rgba(190, 15, 93, 0.05);
}

.home-header .hero-3d-canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
}

.home-header .hero-3d-canvas:active {
  cursor: grabbing;
}

.home-header .visual-canvas-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(15, 12, 38, 0.4) 100%);
  pointer-events: none;
}

/* Floating Badges */
.home-header .floating-badge {
  position: absolute;
  background: rgba(20, 15, 50, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  box-shadow: 0 15px 30px -8px rgba(0, 0, 0, 0.3);
  animation: floatAnim 5s infinite ease-in-out;
}

@keyframes floatAnim {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.home-header .floating-badge.badge-1 {
  top: 10%;
  right: 0;
  animation-delay: 0s;
}
[dir="ltr"] .home-header .floating-badge.badge-1 {
  right: auto;
  left: 0;
}

.home-header .floating-badge.badge-2 {
  bottom: 10%;
  left: 0;
  animation-delay: 2.5s;
}
[dir="ltr"] .home-header .floating-badge.badge-2 {
  left: auto;
  right: 0;
}

.home-header .floating-badge .icon-box {
  background: linear-gradient(135deg, #be0f5d, #ff57a0);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
}
.home-header .floating-badge .badge-text h5 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}
.home-header .floating-badge .badge-text span {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 500;
  white-space: nowrap;
}

/* Hero Media Queries */
@media (min-width: 1200px) {
  .home-header h1 {
    font-size: 3.4rem !important;
  }
}
@media (max-width: 991.98px) {
  .home-header .container {
    padding-top: 110px;
    padding-bottom: 60px;
  }
  .home-header .header-info-content {
    text-align: center !important;
    max-width: 100%;
    margin: 0 auto;
  }
  .home-header .badge-container {
    display: flex;
    justify-content: center;
  }
  .home-header h1 {
    font-size: 2.5rem !important;
  }
  .home-header p {
    font-size: 1.1rem !important;
    width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
  .home-header .header-actions {
    justify-content: center !important;
  }
}
@media (max-width: 575.98px) {
  .home-header .container {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .home-header h1 {
    font-size: 1.9rem !important;
  }
  .home-header p {
    font-size: 1rem !important;
    width: 100% !important;
  }
  .home-header .btn-fill-glow,
  .home-header .btn-outline-light-custom {
    width: 100%;
    justify-content: center;
    padding: 12px 24px !important;
    font-size: 0.95rem !important;
  }
}

/* 2. Partners Section Redesign */
.partners {
  padding: 80px 0 !important;
  background: #f8fafc;
}
.partners .section-header {
  margin-top: 0 !important;
  background: transparent !important;
  padding-top: 0 !important;
  margin-bottom: 50px !important;
}
.partners .section-header h2 {
  font-size: 2.5rem !important;
  color: #0f172a !important;
  font-weight: 800 !important;
  position: relative;
  display: inline-block;
}
.partners .section-header h2 svg {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 12px;
  fill: #be0f5d;
}
.partners .section-header p.header-text {
  color: #64748b !important;
  font-size: 1.1rem !important;
  margin-top: 15px !important;
}
.partners .partner-card {
  background: #ffffff;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  height: 120px !important;
  padding: 20px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.partners .partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  border-color: #be0f5d !important;
}
.partners .partner-card img {
  max-height: 80px !important;
  max-width: 100% !important;
  object-fit: contain !important;
  filter: grayscale(100%) !important;
  opacity: 0.7;
  transition: all 0.3s ease !important;
}
.partners .partner-card:hover img {
  filter: grayscale(0%) !important;
  opacity: 1 !important;
}

/* 3. Sectors / Fields of Work Redesign */
.industries {
  padding: 100px 0 !important;
  background: #ffffff;
}
.industries .section-header h2 {
  font-size: 2.5rem !important;
  color: #0f172a !important;
  font-weight: 800 !important;
  position: relative;
  display: inline-block;
}
.industries .section-header h2 svg {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 12px;
  fill: #be0f5d;
}
.industries .section-header p.header-text {
  color: #64748b !important;
  font-size: 1.1rem !important;
  margin-top: 15px !important;
}
.industries .industry-card {
  background: #f8fafc !important;
  border: 1px solid #f1f5f9 !important;
  border-radius: 24px !important;
  padding: 40px 30px !important;
  height: 100% !important;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
}
[dir="ltr"] .industries .industry-card {
  text-align: left;
}
.industries .industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(190, 15, 93, 0.1) !important;
  border-color: rgba(190, 15, 93, 0.2) !important;
  background: #ffffff !important;
}
.industries .industry-card lord-icon {
  height: 80px !important;
  width: 80px !important;
  margin-bottom: 25px !important;
  margin-right: 0 !important;
}
.industries .industry-card h3 {
  font-size: 1.4rem !important;
  color: #0f172a !important;
  font-weight: 700 !important;
  margin-bottom: 15px !important;
  height: auto !important;
}
.industries .industry-card p {
  font-size: 1rem !important;
  color: #475569 !important;
  line-height: 1.6 !important;
  margin-bottom: 25px !important;
  flex-grow: 1;
}
.industries .industry-card a {
  color: #be0f5d !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease !important;
  margin: 0 !important;
}
.industries .industry-card a svg {
  display: inline-block !important;
  fill: #be0f5d !important;
  transition: transform 0.2s ease !important;
}
.industries .industry-card a:hover svg {
  transform: translate(3px, -3px);
}
.industries .industry-card-more {
  min-height: 100% !important;
  border: 2px dashed #cbd5e1 !important;
  background: transparent !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 24px !important;
}
.industries .industry-card-more:hover {
  border-color: #be0f5d !important;
  background: rgba(190, 15, 93, 0.02) !important;
  transform: translateY(-8px);
}
.industries .industry-card-more-container h3 {
  color: #64748b !important;
font-size: 1.25rem !important;
  text-align: center !important;
  margin-top: 15px !important;
}

/* 4. Numbers & Statistics Redesign */
.team-number {
  background: linear-gradient(180deg, #090714 0%, #0c0a1f 100%) !important;
  padding: 80px 0 !important;
  color: #ffffff !important;
  position: relative;
  overflow: visible; /* Fix clipping of hovered cards and shadows */
}
.team-number::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(190, 15, 93, 0.07) 0%, transparent 60%),
              radial-gradient(circle at 80% 20%, rgba(105, 86, 229, 0.05) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}
.team-number .container {
  position: relative;
  z-index: 2;
}
.team-number .section-header h2 {
  font-size: 2.2rem !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  position: relative;
  display: inline-block;
  margin-bottom: 40px !important;
}
.team-number .section-header h2 svg {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 10px;
  fill: var(--main-color, #be0f5d);
}

.team-number .one-number {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 20px !important;
  padding: 35px 20px !important;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  text-align: center !important;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 100%;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0); /* Force GPU composite to prevent Safari backdrop-filter clipping bug */
  will-change: transform;
}

.team-number .one-number:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  -webkit-transform: translate3d(0, -8px, 0) !important;
          transform: translate3d(0, -8px, 0) !important;
  border-color: var(--main-color, #be0f5d) !important;
  -webkit-box-shadow: 0 20px 40px rgba(190, 15, 93, 0.15), 0 0 0 1px rgba(190, 15, 93, 0.1) !important;
          box-shadow: 0 20px 40px rgba(190, 15, 93, 0.15), 0 0 0 1px rgba(190, 15, 93, 0.1) !important;
}

.dark-mode .team-number .one-number:hover {
  -webkit-box-shadow: 0 20px 40px rgba(105, 86, 229, 0.2), 0 0 0 1px rgba(105, 86, 229, 0.15) !important;
          box-shadow: 0 20px 40px rgba(105, 86, 229, 0.2), 0 0 0 1px rgba(105, 86, 229, 0.15) !important;
}

.team-number .one-number .icon-parent {
  background: rgba(190, 15, 93, 0.08) !important;
  border: 1px solid rgba(190, 15, 93, 0.2) !important;
  height: 64px !important;
  width: 64px !important;
  border-radius: 16px !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  margin: 0 auto 20px auto !important;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.dark-mode .team-number .one-number .icon-parent {
  background: rgba(105, 86, 229, 0.08) !important;
  border-color: rgba(105, 86, 229, 0.2) !important;
}

.team-number .one-number:hover .icon-parent {
  background: var(--main-color, #be0f5d) !important;
  border-color: var(--main-color, #be0f5d) !important;
  -webkit-transform: scale(1.08) rotate(5deg);
          transform: scale(1.08) rotate(5deg);
}

.team-number .one-number:hover .icon-parent i {
  color: #ffffff !important;
}

.team-number .one-number i {
  color: var(--main-color, #be0f5d);
  font-size: 1.6rem !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
}

.team-number .one-number .num-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2px;
  margin-top: 10px;
  margin-bottom: 6px;
}

.team-number .one-number .plus-sign {
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  color: var(--main-color, #be0f5d);
  line-height: 1;
}

.team-number .one-number .count-to {
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  background: -webkit-gradient(linear, left top, right top, from(#ffffff), to(var(--main-color, #be0f5d)));
  background: linear-gradient(to right, #ffffff 40%, var(--main-color, #be0f5d) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block;
  line-height: 1;
}

.team-number .one-number span.stat-label {
  font-size: 0.95rem !important;
  color: #94a3b8 !important;
  font-weight: 600 !important;
  display: block;
  margin-top: 10px;
  text-transform: capitalize;
}

/* 5. CEO / Chairman Message Redesign */
.map-numbers {
  background: linear-gradient(135deg, #0c0a1f 0%, #1a1535 50%, #0f0d24 100%) !important;
  padding: 100px 0 !important;
  position: relative;
  overflow: hidden;
}
/* Decorative background pattern */
.map-numbers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 50%, rgba(190, 15, 93, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(100, 50, 150, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.map-numbers .container {
  position: relative;
  z-index: 2;
}
.map-numbers .row {
  align-items: center !important;
}

/* CEO Image Column */
.map-numbers .ceo-image-wrapper {
  position: relative;
  width: 100% !important;
  max-width: 420px;
  height: auto !important;
  border-radius: 20px !important;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(255, 255, 255, 0.06) !important;
  border: none !important;
  background: linear-gradient(180deg, rgba(190, 15, 93, 0.1) 0%, rgba(15, 12, 38, 0.3) 100%);
  margin: 0 auto;
}
.map-numbers .ceo-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(12, 10, 31, 0.6), transparent);
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .map-numbers .ceo-image-wrapper {
    max-width: 350px;
    margin: 0 auto 40px auto !important;
  }
}
.map-numbers .ceo-image {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  display: block;
  object-fit: cover !important;
  margin: 0 !important;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.map-numbers .ceo-image-wrapper:hover .ceo-image {
  transform: scale(1.03);
}

/* Text / Right Side */
.map-numbers .right-side {
  padding-left: 50px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
[dir="rtl"] .map-numbers .right-side {
  padding-left: 0 !important;
  padding-right: 50px !important;
}
@media (max-width: 991.98px) {
  .map-numbers .right-side {
    padding: 0 !important;
    text-align: center !important;
  }
}

/* Section heading */
.map-numbers .right-side .section-header {
  margin-bottom: 20px !important;
}
.map-numbers .right-side h2,
.map-numbers .right-side .section-header .section-header-content h2 {
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  display: inline-block !important;
  text-align: right !important;
  position: relative;
}
[dir="ltr"] .map-numbers .right-side h2,
[dir="ltr"] .map-numbers .right-side .section-header .section-header-content h2 {
  text-align: left !important;
}
@media (max-width: 991.98px) {
  .map-numbers .right-side h2,
  .map-numbers .right-side .section-header .section-header-content h2 {
    text-align: center !important;
    display: block !important;
  }
}
.map-numbers .right-side .section-header .section-header-content h2 svg .style-color {
  stroke: #be0f5d !important;
}

/* Decorative quote icon before text */
.map-numbers .right-side .section-header::before {
  content: '\201C';
  font-size: 5rem;
  line-height: 1;
  color: rgba(190, 15, 93, 0.2);
  font-family: Georgia, serif;
  display: block;
  margin-bottom: -15px;
}
@media (max-width: 991.98px) {
  .map-numbers .right-side .section-header::before {
    text-align: center;
  }
}

/* Paragraph text */
.map-numbers .right-side p {
  color: #b0b8c8 !important;
  font-size: 1.05rem !important;
  line-height: 1.9 !important;
  margin-bottom: 15px !important;
}

/* Divider line before signature */
.map-numbers .ceo-signature-block {
  margin-top: 30px !important;
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 25px;
  border-radius: 16px;
  width: fit-content;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media (max-width: 991.98px) {
  .map-numbers .ceo-signature-block {
    margin: 30px auto 0 auto !important;
  }
}
.map-numbers .ceo-signature-block img {
  max-height: 55px !important;
  margin: 0 !important;
  opacity: 0.9;
  filter: brightness(1.5) contrast(0.9);
}
.map-numbers .ceo-name-role h4 {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 3px !important;
}
.map-numbers .ceo-name-role span {
  color: #ff57a0 !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
}

/* 6. Vision & Mission Redesign */
.vision {
  padding: 100px 0 !important;
  background: #ffffff !important;
  position: relative;
  overflow: hidden;
}
.vision .vision-content h3 {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin-bottom: 15px !important;
  position: relative;
  display: inline-block;
}
.vision .vision-content h3 svg {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 12px;
  fill: #be0f5d;
}
.vision .vision-content p.description {
  font-size: 1.1rem !important;
  color: #475569 !important;
  line-height: 1.8 !important;
  margin-bottom: 30px !important;
  width: 100% !important;
}
.vision .vision-tabs {
  margin-bottom: 25px !important;
}
.vision .vision-tabs ul {
  width: auto !important;
  display: inline-flex !important;
  background: #f1f5f9 !important;
  border-radius: 30px !important;
  padding: 6px !important;
  gap: 5px !important;
  border-bottom: none !important;
  margin: 0 !important;
}
.vision .vision-tabs ul li {
  margin: 0 !important;
  padding: 10px 24px !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #64748b !important;
  border-radius: 24px !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  border: none !important;
}
.vision .vision-tabs ul li i {
  font-size: 1.1rem !important;
  color: #64748b !important;
  transition: all 0.3s ease !important;
}
.vision .vision-tabs ul li:hover {
  color: #be0f5d !important;
}
.vision .vision-tabs ul li:hover i {
  color: #be0f5d !important;
}
.vision .vision-tabs ul .li-active {
  background: #be0f5d !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(190, 15, 93, 0.2) !important;
  border-bottom: none !important;
}
.vision .vision-tabs ul .li-active i {
  color: #ffffff !important;
}
.vision .vision-tabs-content {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 24px !important;
  padding: 35px !important;
  font-size: 1.05rem !important;
  color: #334155 !important;
  line-height: 1.9 !important;
  width: 100% !important;
  box-shadow: 0 15px 35px -15px rgba(15, 23, 42, 0.05) !important;
  display: none !important;
  position: relative;
}
.vision .vision-tabs-content.tab-content-show {
  display: block !important;
  animation: tabFadeIn 0.5s ease;
}
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.vision .vision-tabs-content .tab-inner-content {
  position: relative;
  z-index: 2;
}

/* Vision Image & Overlay */
.vision .vision-image {
  position: relative;
  padding: 20px 0;
}
.vision .vision-image .main-img-wrapper {
  border-radius: 28px !important;
  overflow: hidden !important;
  box-shadow: 0 25px 55px -15px rgba(15, 23, 42, 0.15) !important;
  border: 1px solid rgba(15, 23, 42, 0.03);
}
.vision .vision-image .main-img {
  height: 520px !important;
  object-fit: cover !important;
  width: 100% !important;
  max-width: 100% !important;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.vision .vision-image:hover .main-img {
  transform: scale(1.03);
}
.vision .vision-image .img-header {
  position: absolute;
  bottom: -15px;
  left: 30px;
  background: rgba(15, 23, 42, 0.88) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px !important;
  padding: 24px 28px !important;
  width: 330px !important;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.25) !important;
  z-index: 5;
  transition: all 0.3s ease;
}
[dir="rtl"] .vision .vision-image .img-header {
  left: auto;
  right: 30px;
}
.vision .vision-image .img-header:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 87, 160, 0.3);
}
.vision .vision-image .img-header i {
  color: #ff57a0 !important;
  font-size: 1.8rem !important;
  display: block;
  margin-bottom: 10px;
}
.vision .vision-image .img-header p {
  color: #e2e8f0 !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  font-weight: 500;
}
.vision .vision-image .vision-dots-top {
  position: absolute;
  top: 0;
  right: -20px;
  z-index: -1;
  opacity: 0.5;
}
[dir="rtl"] .vision .vision-image .vision-dots-top {
  right: auto;
  left: -20px;
}
.vision .vision-image .vision-dots-bottom {
  position: absolute;
  bottom: 0;
  left: -20px;
  z-index: -1;
  opacity: 0.5;
}
[dir="rtl"] .vision .vision-image .vision-dots-bottom {
  left: auto;
  right: -20px;
}
@media (max-width: 991.98px) {
  .vision {
    padding: 80px 0 !important;
  }
  .vision .vision-content {
    margin-bottom: 50px !important;
    text-align: center;
  }
  .vision .vision-content h3 {
    display: inline-block;
  }
  .vision .vision-tabs ul {
    justify-content: center !important;
  }
  .vision .vision-image .main-img {
    height: 400px !important;
  }
  .vision .vision-image .img-header {
    width: calc(100% - 60px) !important;
    left: 30px !important;
    right: 30px !important;
    bottom: -30px !important;
  }
}

/* 7. Work Strategy & Corporate Values Redesign */
.ma3 {
  background: #f8fafc !important;
  padding: 100px 0 !important;
}
.ma3 .section-header h2 {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin-bottom: 50px !important;
}
.ma3 .vision-container .vision-card {
  background: #ffffff !important;
  border-radius: 20px !important;
  border: 1px solid #e2e8f0 !important;
  padding: 30px !important;
  height: 100% !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex;
  gap: 20px;
  margin: 0 !important;
}
.ma3 .vision-container .vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px -8px rgba(0, 0, 0, 0.1) !important;
  border-color: #be0f5d !important;
}
.ma3 .vision-container .vision-card .icon-parent {
  background: linear-gradient(135deg, #be0f5d, #e04b8c) !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  flex-shrink: 0;
}
.ma3 .vision-container .vision-card .icon-parent i {
  font-size: 1.6rem !important;
}
.ma3 .vision-container .vision-card .vision-card-info h3 {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin-bottom: 8px !important;
}
.ma3 .vision-container .vision-card .vision-card-info p {
  font-size: 0.95rem !important;
  color: #475569 !important;
  line-height: 1.6 !important;
}

/* 8. Team Image Card Redesign */
.team-container {
  padding: 100px 0 !important;
  background: linear-gradient(180deg, #100e2b 0%, #070515 100%) !important;
  color: #ffffff !important;
  position: relative;
  overflow: hidden;
}
.team-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 50%, rgba(190, 15, 93, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.team-container .container {
  position: relative;
  z-index: 2;
}
.team-container .section-header h2 {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  position: relative;
  display: inline-block;
  margin-bottom: 15px !important;
}
.team-container .section-header h2 svg {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 12px;
  fill: #be0f5d;
}
.team-container .section-header p.header-text {
  color: #b0b8c8 !important;
  font-size: 1.1rem !important;
  margin-bottom: 50px !important;
}
.team-container figure {
  height: 520px !important;
  border-radius: 28px !important;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(255, 255, 255, 0.08) !important;
  overflow: hidden;
  position: relative;
  margin: 0 !important;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
  background-position: center !important;
  background-size: cover !important;
}
.team-container figure::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(7, 5, 21, 0.8) 0%, rgba(7, 5, 21, 0.15) 60%, transparent 100%);
  z-index: 1;
  pointer-events: none;
  transition: all 0.5s ease;
}
.team-container figure:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.7),
              0 0 30px rgba(190, 15, 93, 0.15),
              0 0 0 1px rgba(190, 15, 93, 0.25) !important;
}
.team-container figure:hover::after {
  background: linear-gradient(to top, rgba(7, 5, 21, 0.9) 0%, rgba(7, 5, 21, 0.25) 60%, transparent 100%);
}
.team-container figure .h6 {
  position: absolute !important;
  bottom: 40px !important;
  left: 40px !important;
  right: 40px !important;
  margin: 0 !important;
  background: rgba(15, 23, 42, 0.72) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  color: #ffffff !important;
  padding: 25px 40px !important;
  border-radius: 24px !important;
  font-size: 1.35rem !important;
  font-weight: 600 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  text-align: center !important;
  z-index: 2;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.4s ease;
}
.team-container figure:hover .h6 {
  background: rgba(15, 23, 42, 0.8) !important;
  border-color: rgba(255, 87, 160, 0.25) !important;
}
.team-container figure .h6::before {
  content: '\201C';
  font-size: 4rem;
  line-height: 1;
  color: rgba(255, 87, 160, 0.2);
  font-family: Georgia, serif;
  position: absolute;
  top: -10px;
  left: 20px;
}
[dir="rtl"] .team-container figure .h6::before {
  left: auto;
  right: 20px;
}
@media (max-width: 767.98px) {
  .team-container {
    padding: 80px 0 !important;
  }
  .team-container figure {
    height: 400px !important;
  }
  .team-container figure .h6 {
    bottom: 25px !important;
    left: 20px !important;
    right: 20px !important;
    font-size: 1.1rem !important;
    padding: 20px 25px !important;
  }
}

/* 9. Blog / Community Impact Redesign */
.blog-section {
  background: #f8fafc !important;
  padding: 100px 0 !important;
}
.blog-section .section-header h2 {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin-bottom: 50px !important;
}
.blog-section .blog-card {
  background: #ffffff !important;
  border-radius: 24px !important;
  border: 1px solid #e2e8f0 !important;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  height: 100% !important;
  display: flex;
  flex-direction: column;
}
.blog-section .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  border-color: #be0f5d !important;
}
.blog-section .blog-card .blog-image {
  overflow: hidden !important;
}
.blog-section .blog-card .blog-image figure {
  height: 220px !important;
  margin: 0 !important;
  transition: all 0.5s ease !important;
}
.blog-section .blog-card:hover .blog-image figure {
  transform: scale(1.05) !important;
}
.blog-section .blog-card .blog-card-info {
  padding: 30px !important;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: right;
}
[dir="ltr"] .blog-section .blog-card .blog-card-info {
  text-align: left;
}
.blog-section .blog-card .blog-card-info .pretitle {
  font-size: 0.85rem !important;
  color: #be0f5d !important;
  font-weight: 600 !important;
  margin-bottom: 10px !important;
}
.blog-section .blog-card .blog-card-info h3 {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  line-height: 1.5 !important;
  margin-bottom: 15px !important;
}
.blog-section .blog-card .blog-card-info p {
  font-size: 0.95rem !important;
  color: #64748b !important;
  line-height: 1.6 !important;
  margin-bottom: 25px !important;
  flex-grow: 1;
}
.blog-section .blog-card .blog-actions a {
  background: transparent !important;
  color: #be0f5d !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease !important;
  text-decoration: none;
}
.blog-section .blog-card .blog-actions a:hover {
  color: #be0f5d !important;
  letter-spacing: 0.5px;
}
.blog-section .btn-fill {
  background: linear-gradient(90deg, #be0f5d, #e04b8c) !important;
  border: none !important;
  padding: 14px 35px !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 15px rgba(190, 15, 93, 0.3) !important;
  transition: all 0.3s ease !important;
}
.blog-section .btn-fill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(190, 15, 93, 0.5) !important;
}

/* ==========================================================================
   MEGA MENU & PRODUCTS SECTION STYLES
   ========================================================================== */

.has-megamenu {
  position: static !important;
}

.megamenu {
  position: absolute;
  top: 85px;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border-bottom: 2px solid rgba(190, 15, 93, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  padding: 35px 0;
}

.has-megamenu:hover .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar.nav-scroll .megamenu {
  border-bottom: 2px solid #be0f5d;
}

.dark-mode .megamenu {
  background: rgba(30, 30, 45, 0.98);
  border-bottom: 2px solid rgba(105, 86, 229, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.dark-mode .navbar.nav-scroll .megamenu {
  border-bottom: 2px solid #6956e5;
}

.megamenu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.megamenu-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.megamenu-col {
  display: flex;
  flex-direction: column;
}

.megamenu-col-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: #121331;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid #eaeaf5;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: start;
}

.dark-mode .megamenu-col-title {
  color: #FFF;
  border-bottom-color: #2f3749;
}

.megamenu-col-title i {
  color: #be0f5d;
}

.dark-mode .megamenu-col-title i {
  color: #6956e5;
}

.megamenu-products-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.navbar .nav-links ul li .megamenu-prod-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 8px 10px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  background: transparent !important;
  width: 100% !important;
}

.navbar .nav-links ul li .megamenu-prod-item:hover {
  background: rgba(190, 15, 93, 0.04) !important;
  transform: translateY(-2px) !important;
}

.dark-mode .navbar .nav-links ul li .megamenu-prod-item:hover {
  background: rgba(105, 86, 229, 0.08) !important;
}

.megamenu-prod-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.megamenu-prod-item:hover .megamenu-prod-icon {
  transform: scale(1.1);
}

.megamenu-prod-details {
  flex-grow: 1;
  min-width: 0;
  text-align: start;
}

.megamenu-prod-details h6 {
  font-size: 0.85rem;
  font-weight: 750;
  color: #121331;
  margin: 0;
  transition: color 0.25s ease;
}

.dark-mode .megamenu-prod-details h6 {
  color: #FFF;
}

.megamenu-prod-item:hover .megamenu-prod-details h6 {
  color: #be0f5d;
}

.dark-mode .megamenu-prod-item:hover .megamenu-prod-details h6 {
  color: #6956e5;
}

.megamenu-prod-details p {
  font-size: 0.7rem;
  color: #7e868e;
  margin: 2px 0 0 0;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dark-mode .megamenu-prod-details p {
  color: #9aa4bf;
}

.nav-arrow {
  font-size: 0.75rem !important;
  margin-inline-start: 4px;
  transition: transform 0.3s ease;
}

.has-megamenu:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Custom Dropdown for Partners */
.has-dropdown {
  position: relative !important;
}

.dropdown-menu-custom {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 320px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(190, 15, 93, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.02);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
  padding: 12px;
}

.navbar.nav-scroll .dropdown-menu-custom {
  top: 55px;
  border-bottom: 2px solid #be0f5d;
}

.has-dropdown:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.has-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

.dark-mode .dropdown-menu-custom {
  background: rgba(21, 21, 33, 0.96);
  border-color: rgba(105, 86, 229, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.dark-mode .navbar.nav-scroll .dropdown-menu-custom {
  border-bottom: 2px solid #6956e5;
}

.dropdown-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dropdown-item-custom {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 8px 12px !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  color: #121331 !important;
  transition: all 0.2s ease !important;
  background: transparent !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.dropdown-item-custom:hover {
  background: rgba(190, 15, 93, 0.05) !important;
  transform: translateX(4px) !important;
}

[dir="rtl"] .dropdown-item-custom:hover {
  transform: translateX(-4px) !important;
}

.dark-mode .dropdown-item-custom {
  color: #FFF !important;
}

.dark-mode .dropdown-item-custom:hover {
  background: rgba(105, 86, 229, 0.1) !important;
}

.logo-wrapper-custom {
  background: #ffffff;
  border: 1px solid #eaeaf5;
  border-radius: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.dropdown-item-custom:hover .logo-wrapper-custom {
  border-color: #be0f5d;
  transform: scale(1.05);
}

.dark-mode .dropdown-item-custom:hover .logo-wrapper-custom {
  border-color: #6956e5;
}

.partner-dropdown-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partner-dropdown-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: start;
}

[dir="rtl"] .partner-dropdown-info {
  text-align: right;
}

.partner-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #121331;
}

.dark-mode .partner-name {
  color: #ffffff;
}

.dropdown-item-custom:hover .partner-name {
  color: #be0f5d;
}

.dark-mode .dropdown-item-custom:hover .partner-name {
  color: #6956e5;
}

.partner-tagline {
  font-size: 0.72rem;
  font-weight: 500;
  color: #64748b;
  line-height: 1.2;
}

.dark-mode .partner-tagline {
  color: #94a3b8;
}

.dropdown-divider-custom {
  height: 1px;
  background: #eaeaf5;
  margin: 6px 0;
}

.dark-mode .dropdown-divider-custom {
  background: rgba(255, 255, 255, 0.08);
}

.all-partners-link {
  font-weight: 700 !important;
  color: #be0f5d !important;
}

.all-partners-link i {
  transition: transform 0.2s ease;
}

.all-partners-link:hover i {
  transform: translateX(-3px);
}

[dir="ltr"] .all-partners-link:hover i {
  transform: translateX(3px);
}

.dark-mode .all-partners-link {
  color: #6956e5 !important;
}

/* Mobile responsive navigation overrides */
@media (max-width: 991.98px) {
  .has-megamenu {
    position: relative !important;
    display: block !important;
    text-align: right !important;
  }
  
  html[dir="ltr"] .has-megamenu {
    text-align: left !important;
  }
  
  .megamenu {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    box-shadow: none !important;
    border: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
    padding: 15px !important;
    border-radius: 12px;
    max-height: 350px;
    overflow-y: auto;
  }
  
  .megamenu.megamenu-open {
    display: block !important;
  }
  
  .megamenu-row {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  
  .megamenu-col {
    margin-bottom: 10px;
  }
  
  .megamenu-col-title {
    font-size: 0.85rem !important;
    margin-bottom: 10px !important;
    color: #FFF !important;
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
  }
  
  .navbar .nav-links ul li .megamenu-prod-item {
    padding: 6px 8px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
  }
  
  .megamenu-prod-details h6 {
    color: #FFF !important;
    font-size: 0.8rem !important;
  }
  
  .megamenu-prod-details p {
    color: rgba(255, 255, 255, 0.6) !important;
  }

  /* Mobile responsive overrides for partner dropdown */
  .has-dropdown {
    position: relative !important;
    display: block !important;
    text-align: right !important;
  }
  
  html[dir="ltr"] .has-dropdown {
    text-align: left !important;
  }
  
  .dropdown-menu-custom {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    box-shadow: none !important;
    border: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
    padding: 15px !important;
    border-radius: 12px;
    max-height: 350px;
    overflow-y: auto;
  }
  
  .dropdown-menu-custom.dropdown-open {
    display: block !important;
  }
  
  .dropdown-item-custom {
    color: #FFF !important;
    font-size: 0.85rem !important;
    padding: 8px 10px !important;
  }
  
  .dropdown-item-custom .logo-wrapper-custom {
    width: 32px !important;
    height: 32px !important;
    border-radius: 6px !important;
    padding: 2px !important;
  }
  
  .dropdown-item-custom .partner-name {
    color: #ffffff !important;
    font-size: 0.82rem !important;
  }
  
  .dropdown-item-custom .partner-tagline {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.68rem !important;
  }
  
  .dropdown-divider-custom {
    background: rgba(255, 255, 255, 0.1) !important;
  }
  
  .all-partners-link i {
    color: #FFF !important;
  }
}

/* Homepage Products Section */
.home-products {
  padding: 100px 0;
  background: #FFF;
}

.dark-mode .home-products {
  background: #1e1e2d;
}

.products-tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 45px;
}

.products-tabs {
  display: flex;
  background: #f5f8fa;
  padding: 6px;
  border-radius: 50px;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.dark-mode .products-tabs {
  background: #151521;
}

.products-tabs .tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #7e868e;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark-mode .products-tabs .tab-btn {
  color: #9aa4bf;
}

.products-tabs .tab-btn:hover {
  color: #be0f5d;
}

.dark-mode .products-tabs .tab-btn:hover {
  color: #6956e5;
}

.products-tabs .tab-btn.active {
  background: #be0f5d;
  color: #FFF !important;
  box-shadow: 0 4px 15px rgba(190, 15, 93, 0.3);
}

.dark-mode .products-tabs .tab-btn.active {
  background: #6956e5;
  box-shadow: 0 4px 15px rgba(105, 86, 229, 0.3);
}

.tab-icon {
  font-size: 0.9rem;
}

.products-grid {
  transition: all 0.5s ease;
}

.product-card-wrapper {
  transition: all 0.4s ease;
}

.product-item-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fcfcfd;
  border: 1px solid #eaeaf5;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(94, 92, 154, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: start;
}

.dark-mode .product-item-card {
  background: #21283b;
  border-color: #2f3749;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-item-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(190, 15, 93, 0.08);
  border-color: rgba(190, 15, 93, 0.2);
}

.dark-mode .product-item-card:hover {
  box-shadow: 0 15px 35px rgba(105, 86, 229, 0.15);
  border-color: rgba(105, 86, 229, 0.3);
}

.product-item-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.product-item-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.product-item-card:hover .product-item-icon {
  transform: scale(1.1) rotate(5deg);
}

.product-item-title-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-item-title-box h4 {
  font-size: 1.05rem;
  font-weight: 850;
  color: #121331;
  margin: 0;
}

.dark-mode .product-item-title-box h4 {
  color: #FFF;
}

.product-item-title-box span {
  font-size: 0.72rem;
  color: #7e868e;
  font-weight: 500;
}

.dark-mode .product-item-title-box span {
  color: #9aa4bf;
}

.product-item-body {
  flex-grow: 1;
  margin-bottom: 20px;
}

.product-item-body p {
  font-size: 0.85rem;
  color: #5e5e76;
  line-height: 1.6;
  margin: 0;
}

.dark-mode .product-item-body p {
  color: #adafca;
}

.product-item-footer {
  margin-top: auto;
}

.product-item-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #be0f5d;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.dark-mode .product-item-btn {
  color: #6956e5;
}

.product-item-btn i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

/* Flip arrow for RTL layout */
html[dir="rtl"] .product-item-btn i {
  transform: scaleX(-1);
}

.product-item-btn:hover {
  color: #be0f5d;
  letter-spacing: 0.5px;
}

.dark-mode .product-item-btn:hover {
  color: #8b88ff;
}

.product-item-btn:hover i {
  transform: translateX(-4px);
}

html[dir="rtl"] .product-item-btn:hover i {
  transform: scaleX(-1) translateX(-4px);
}

@media (max-width: 768px) {
  .home-products {
    padding: 60px 0;
  }
  .products-tabs .tab-btn {
    padding: 8px 16px;
    font-size: 0.78rem;
  }
}

/* ==========================================================================
   Partners Module Styles
   ========================================================================== */

.partners-page-section {
  padding: 80px 0;
  background: var(--body-bg);
}

.partner-grid-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 35px 30px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(94, 92, 154, 0.04);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
  text-align: center;
  align-items: center;
}

.dark-mode .partner-grid-card {
  background: rgba(30, 30, 45, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.partner-grid-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(190, 15, 93, 0.12);
}

.dark-mode .partner-grid-card:hover {
  box-shadow: 0 15px 35px rgba(105, 86, 229, 0.2);
}

.partner-grid-logo-wrapper {
  height: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  background: #FFF;
  border-radius: 12px;
  padding: 15px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.dark-mode .partner-grid-logo-wrapper {
  background: #FFF; /* Keep white background for colored logos to pop clearly */
  border-color: rgba(255, 255, 255, 0.1);
}

.partner-grid-logo {
  max-height: 70px;
  max-width: 160px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-grid-card:hover .partner-grid-logo {
  transform: scale(1.05);
}

.partner-grid-info {
  flex-grow: 1;
  margin-bottom: 20px;
  width: 100%;
}

.partner-grid-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--p-color);
  margin-bottom: 12px;
}

.partner-grid-desc {
  font-size: 0.88rem;
  color: var(--subp-color);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.partner-grid-actions {
  width: 100%;
  display: flex;
  justify-content: center;
}

.partner-details-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--main-color);
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.partner-details-btn i {
  font-size: 0.78rem;
  transition: transform 0.3s ease;
}

.partner-details-btn:hover {
  letter-spacing: 0.5px;
}

.partner-details-btn:hover i {
  transform: translateX(-4px);
}

html[dir="ltr"] .partner-details-btn:hover i {
  transform: translateX(4px);
}

/* Partner Details Page */
.partner-show-page {
  padding: 120px 0 80px 0;
  background: var(--body-bg);
}

.partner-hero-card {
  padding: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 15px 40px rgba(94, 92, 154, 0.04);
}

.dark-mode .partner-hero-card {
  background: rgba(30, 30, 45, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.partner-hero-logo-wrapper {
  background: #FFF;
  padding: 25px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-color);
  width: 100%;
  max-width: 260px;
  height: 160px;
}

.partner-hero-logo {
  max-height: 110px;
  max-width: 210px;
  object-fit: contain;
}

.partner-hero-info h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--p-color);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .partner-hero-info h2 {
    font-size: 1.8rem;
    text-align: center;
  }
  .partner-hero-actions {
    justify-content: center;
  }
}

.partner-hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.partner-hero-actions .btn-fill {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  text-decoration: none !important;
}

.partner-hero-actions .btn-outline-light-custom {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  border: 2px solid var(--border-color);
  color: var(--p-color);
  background: transparent;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.partner-hero-actions .btn-outline-light-custom:hover {
  background: var(--main-color);
  border-color: var(--main-color);
  color: #FFF;
}

.partner-detail-section-card {
  padding: 35px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(94, 92, 154, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dark-mode .partner-detail-section-card {
  background: rgba(30, 30, 45, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.partner-detail-section-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(94, 92, 154, 0.06);
}

.card-icon-header {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.partner-detail-section-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--p-color);
  margin-bottom: 15px;
}

.partner-detail-section-card p {
  font-size: 0.92rem;
  color: var(--subp-color);
  line-height: 1.7;
  margin: 0;
}

.partner-card-link {
  text-decoration: none !important;
  display: block;
}

.partner-card-link .partner-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card-link:hover .partner-card {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 10px 25px rgba(190, 15, 93, 0.15);
}

.dark-mode .partner-card-link:hover .partner-card {
  box-shadow: 0 10px 25px rgba(105, 86, 229, 0.25);
}

/* Sectors Text Link Styling */
.explore-all-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: #be0f5d;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(190, 15, 93, 0.03);
  border: 1px solid rgba(190, 15, 93, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.explore-all-link i {
  transition: transform 0.3s ease;
}

.explore-all-link:hover {
  background: rgba(190, 15, 93, 0.08);
  border-color: rgba(190, 15, 93, 0.3);
  box-shadow: 0 4px 15px rgba(190, 15, 93, 0.08);
  color: #be0f5d;
}

[dir="rtl"] .explore-all-link:hover i {
  transform: translateX(-6px);
}

[dir="ltr"] .explore-all-link:hover i {
  transform: translateX(6px);
}

.dark-mode .explore-all-link {
  color: #6956e5;
  background: rgba(105, 86, 229, 0.04);
  border-color: rgba(105, 86, 229, 0.15);
}

.dark-mode .explore-all-link:hover {
  background: rgba(105, 86, 229, 0.12);
  border-color: rgba(105, 86, 229, 0.4);
  box-shadow: 0 4px 15px rgba(105, 86, 229, 0.15);
  color: #6956e5;
}

/* ==========================================
   Home About Section & About Page Styles
========================================== */

/* Home About Section */
.home-about-section {
  position: relative;
  background: #ffffff;
  padding: 100px 0;
  overflow: hidden;
  transition: background 0.3s ease;
}

.dark-mode .home-about-section {
  background: #0c0817;
}

/* Background Blobs for About section */
.home-about-section .bg-blob {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  filter: blur(100px);
  -webkit-filter: blur(100px);
  transition: all 0.5s ease;
}

.home-about-section .blob-1 {
  top: -10%;
  right: -5%;
  background: rgba(190, 15, 93, 0.08);
}

.home-about-section .blob-2 {
  bottom: -10%;
  left: -5%;
  background: rgba(0, 180, 216, 0.08);
}

.dark-mode .home-about-section .blob-1 {
  background: rgba(105, 86, 229, 0.12);
}

.dark-mode .home-about-section .blob-2 {
  background: rgba(0, 180, 216, 0.1);
}

.home-about-image-container {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 20px;
}

.about-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(190, 15, 93, 0.08) 0%, rgba(190, 15, 93, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.dark-mode .about-glow-effect {
  background: radial-gradient(circle, rgba(105, 86, 229, 0.15) 0%, rgba(105, 86, 229, 0) 70%);
}

.home-about-img {
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(190, 15, 93, 0.1);
  transition: all 0.5s ease;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.home-about-image-container:hover .home-about-img {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(190, 15, 93, 0.15);
}

.dark-mode .home-about-img {
  border-color: rgba(105, 86, 229, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.dark-mode .home-about-image-container:hover .home-about-img {
  box-shadow: 0 20px 45px rgba(105, 86, 229, 0.25);
}

.home-about-badge, .about-badge {
  display: inline-block;
  background: rgba(190, 15, 93, 0.06);
  color: #be0f5d;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid rgba(190, 15, 93, 0.15);
  letter-spacing: 0.5px;
}

.dark-mode .home-about-badge, .dark-mode .about-badge {
  background: rgba(105, 86, 229, 0.08);
  color: #6956e5;
  border-color: rgba(105, 86, 229, 0.2);
}

.home-about-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0b071e;
  line-height: 1.3;
}

.dark-mode .home-about-heading {
  color: #ffffff;
}

.home-about-desc {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.8;
}

.dark-mode .home-about-desc {
  color: rgba(255, 255, 255, 0.65);
}

.about-feature-item {
  width: 100%;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(190, 15, 93, 0.08);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-weight: 650;
  color: #2b2b2b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark-mode .about-feature-item {
  background: rgba(255, 255, 255, 0.015);
  border-color: rgba(105, 86, 229, 0.12);
  color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-feature-item:hover {
  transform: translateY(-3px);
  background: #ffffff;
  border-color: rgba(190, 15, 93, 0.25);
  box-shadow: 0 8px 20px rgba(190, 15, 93, 0.06);
}

.dark-mode .about-feature-item:hover {
  background: rgba(105, 86, 229, 0.06);
  border-color: rgba(105, 86, 229, 0.35);
  box-shadow: 0 8px 20px rgba(105, 86, 229, 0.15);
}

.about-feature-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(190, 15, 93, 0.08);
  color: #be0f5d;
  border-radius: 50%;
  font-size: 0.82rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.dark-mode .about-feature-item i {
  background: rgba(105, 86, 229, 0.15);
  color: #8f82f8;
}

.about-feature-item:hover i {
  transform: scale(1.1);
  background: #be0f5d;
  color: #ffffff;
}

.dark-mode .about-feature-item:hover i {
  background: #6956e5;
  color: #ffffff;
}

.home-about-btn {
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home-about-btn i {
  transition: transform 0.3s ease;
}

[dir="rtl"] .home-about-btn:hover i {
  transform: translateX(-5px);
}

[dir="ltr"] .home-about-btn:hover i {
  transform: translateX(5px);
}

/* About Page Specific Styles */
.about-page {
  padding: 50px 0;
  background: #fcfcfd;
}

.dark-mode .about-page {
  background: #080410;
}

.journey-content-card {
  padding-inline-end: 20px;
}

.journey-image-wrapper {
  position: relative;
  display: inline-block;
}

.about-glowing-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: 130%;
  background: radial-gradient(circle, rgba(190, 15, 93, 0.05) 0%, rgba(190, 15, 93, 0) 70%);
  z-index: 1;
}

.dark-mode .about-glowing-circle {
  background: radial-gradient(circle, rgba(105, 86, 229, 0.12) 0%, rgba(105, 86, 229, 0) 70%);
}

.journey-main-img {
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(190, 15, 93, 0.1);
}

.dark-mode .journey-main-img {
  border-color: rgba(105, 86, 229, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.feature-bullet span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333333;
}

.dark-mode .feature-bullet span {
  color: rgba(255, 255, 255, 0.85);
}

.feature-bullet .bullet-icon i {
  color: #be0f5d;
  font-size: 1.1rem;
}

.dark-mode .feature-bullet .bullet-icon i {
  color: #6956e5;
}

/* Pillars Section Styles */
.about-pillars-section {
  background: #f8f9fa;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dark-mode .about-pillars-section {
  background: #0b0716;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pillar-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 30px 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.dark-mode .pillar-card {
  background: #110c22;
  border-color: rgba(255, 255, 255, 0.05);
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--card-color);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--card-color);
}

.dark-mode .pillar-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.pillar-icon-box {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon-box {
  transform: scale(1.1) rotate(5deg);
}

.pillar-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0b071e;
  margin-bottom: 18px;
}

.dark-mode .pillar-card h4 {
  color: #ffffff;
}

.pillar-links-list li {
  margin-bottom: 12px;
}

.pillar-links-list li a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: #555555;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.dark-mode .pillar-links-list li a {
  color: rgba(255, 255, 255, 0.7);
}

.pillar-links-list li a:hover {
  color: #be0f5d;
  transform: translateX(4px);
}

[dir="rtl"] .pillar-links-list li a:hover {
  transform: translateX(-4px);
}

.dark-mode .pillar-links-list li a:hover {
  color: #6956e5;
}

/* About Services Section */
.about-services-section {
  background: #f8f9fa;
}
.dark-mode .about-services-section {
  background: #0b0716;
}
.about-service-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dark-mode .about-service-card {
  background: #110c22;
  border-color: rgba(255,255,255,0.06);
}
.about-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}
.about-service-card-top {
  padding: 24px 20px 20px;
}
.about-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.about-service-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0b071e;
  margin: 0;
}
.dark-mode .about-service-title {
  color: #ffffff;
}
.about-service-list {
  padding: 12px 0;
}
.about-service-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.dark-mode .about-service-list li a {
  color: rgba(255,255,255,0.75);
  border-bottom-color: rgba(255,255,255,0.04);
}
.about-service-list li:last-child a {
  border-bottom: none;
}
.about-service-list li a:hover {
  background: rgba(190,15,93,0.05);
  color: #be0f5d;
}
.dark-mode .about-service-list li a:hover {
  background: rgba(190,15,93,0.08);
  color: #ff6fa8;
}
.about-service-list li a .arrow-end {
  margin-inline-start: auto;
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.2s ease;
  color: #be0f5d;
}
.about-service-list li a:hover .arrow-end {
  opacity: 1;
}

/* Values Card Styles */
.value-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  transition: all 0.4s ease;
  height: 100%;
}

.dark-mode .value-card {
  background: #110c22;
  border-color: rgba(255, 255, 255, 0.05);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(190, 15, 93, 0.06);
  border-color: rgba(190, 15, 93, 0.2);
}

.dark-mode .value-card:hover {
  box-shadow: 0 10px 25px rgba(105, 86, 229, 0.15);
  border-color: rgba(105, 86, 229, 0.25);
}

.value-icon-box {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(190, 15, 93, 0.06);
  color: #be0f5d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.dark-mode .value-icon-box {
  background: rgba(105, 86, 229, 0.08);
  color: #6956e5;
}

.value-card:hover .value-icon-box {
  transform: rotateY(180deg);
  background: #be0f5d;
  color: #ffffff;
}

.dark-mode .value-card:hover .value-icon-box {
  background: #6956e5;
  color: #ffffff;
}

.value-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0b071e;
  margin-bottom: 12px;
}

.dark-mode .value-card h5 {
  color: #ffffff;
}

.value-card p {
  font-size: 0.88rem;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

.dark-mode .value-card p {
  color: rgba(255, 255, 255, 0.6);
}

/* Navbar responsive spacing optimization to fit new tabs and prevent wrapping */
@media (min-width: 992px) {
  /* Prevent flex wrapping of navbar container items */
  .navbar > .container {
    flex-wrap: nowrap !important;
  }

  /* Shrink logo container to gain space */
  .navbar .nav-logo {
    width: 135px !important;
  }
  .navbar .nav-logo img {
    width: 125px !important;
  }

  /* Shrink nav actions container to gain space */
  .navbar .nav-actions {
    width: 110px !important;
  }

  /* Reduce padding of navigation list items */
  .navbar .nav-links ul li {
    padding: 0 9px !important;
  }
}

@media (min-width: 992px) and (max-width: 1250px) {
  /* For medium screens, compress padding and font sizes even further */
  .navbar .nav-links ul li {
    padding: 0 5px !important;
  }
  .navbar .nav-links ul li a, 
  .navbar .nav-links ul li span {
    font-size: 0.88rem !important;
  }
  .navbar .nav-logo {
    width: 115px !important;
  }
  .navbar .nav-logo img {
    width: 105px !important;
  }
  .navbar .nav-actions {
    width: 95px !important;
  }
}

/* Mobile Drawer positioning and alignments overrides */
@media (max-width: 991.98px) {
  .navbar-open {
    -webkit-transform: translateX(0) !important;
            transform: translateX(0) !important;
  }

  .navbar .nav-links ul {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    -webkit-transform: none !important;
            transform: none !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .navbar .nav-links ul li {
    width: 100% !important;
    padding: 10px 0 !important;
    margin: 4px 0 !important;
    -webkit-transform: none !important;
            transform: none !important;
    display: block !important;
  }
  
  html[dir="rtl"] .navbar .nav-links {
    text-align: right !important;
  }
  
  html[dir="ltr"] .navbar .nav-links {
    text-align: left !important;
  }
  
  html[dir="rtl"] .navbar .nav-links ul li {
    text-align: right !important;
  }
  
  html[dir="ltr"] .navbar .nav-links ul li {
    text-align: left !important;
  }
}

/* Background overlay styled for the drawer layout */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Megamenu Position, Direction, and Spacing Fixes */
.megamenu {
  top: 100% !important; /* Align exactly at the bottom of the navbar, leaving no gap */
  margin-top: 0 !important;
}

/* Force correct text direction and alignments inside Megamenu for RTL (Arabic) */
html[dir="rtl"] .megamenu {
  direction: rtl !important;
  text-align: right !important;
}

html[dir="rtl"] .megamenu-col-title {
  text-align: right !important;
  justify-content: flex-start !important;
  flex-direction: row !important;
}

html[dir="rtl"] .megamenu-prod-item {
  flex-direction: row !important;
  text-align: right !important;
}

html[dir="rtl"] .megamenu-prod-details {
  text-align: right !important;
}

/* Force correct text direction and alignments inside Megamenu for LTR (English) */
html[dir="ltr"] .megamenu {
  direction: ltr !important;
  text-align: left !important;
}

html[dir="ltr"] .megamenu-col-title {
  text-align: left !important;
  justify-content: flex-start !important;
  flex-direction: row !important;
}

html[dir="ltr"] .megamenu-prod-item {
  flex-direction: row !important;
  text-align: left !important;
}

html[dir="ltr"] .megamenu-prod-details {
  text-align: left !important;
}

/* Styling fix for links inside the Megamenu to prevent inheriting main navbar white color */
.navbar .nav-links ul li .megamenu-prod-item {
  color: inherit !important;
}

.megamenu-prod-details p {
  white-space: normal !important; /* Allow description to wrap naturally */
  overflow: visible !important;
  text-overflow: clip !important;
}

.megamenu-prod-details p {
  white-space: normal !important; /* Allow description to wrap naturally */
  overflow: visible !important;
  text-overflow: clip !important;
}

/* ==========================================
   Home About Interactive Floating Elements
========================================== */
.home-about-interactive-container {
  position: relative;
  width: 100%;
  height: 480px;
  background-color: rgba(255, 255, 255, 0.01);
  background-image: radial-gradient(rgba(190, 15, 93, 0.08) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  border-radius: 30px;
  border: 1px dashed rgba(190, 15, 93, 0.15);
  box-shadow: inset 0 0 50px rgba(190, 15, 93, 0.01);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  transition: all 0.4s ease;
}

.dark-mode .home-about-interactive-container {
  background-color: rgba(255, 255, 255, 0.005);
  background-image: radial-gradient(rgba(105, 86, 229, 0.12) 1.5px, transparent 1.5px);
  border-color: rgba(105, 86, 229, 0.2);
  box-shadow: inset 0 0 50px rgba(105, 86, 229, 0.02);
}

/* Connected Network SVG Lines */
.about-network-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.about-network-svg line {
  stroke: rgba(190, 15, 93, 0.12);
  stroke-width: 2px;
  stroke-dasharray: 8 6;
  animation: lineDashPulse 40s linear infinite;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark-mode .about-network-svg line {
  stroke: rgba(105, 86, 229, 0.15);
}

@keyframes lineDashPulse {
  to {
    stroke-dashoffset: -1000;
  }
}

/* Dynamic Line Glows using CSS :has() */
.home-about-interactive-container:has(.sector-telecom:hover) .line-telecom {
  stroke: #00b4d8;
  stroke-width: 3px;
  stroke-dasharray: none;
  filter: drop-shadow(0 0 6px rgba(0, 180, 216, 0.6));
}

.home-about-interactive-container:has(.sector-technology:hover) .line-technology {
  stroke: #7209b7;
  stroke-width: 3px;
  stroke-dasharray: none;
  filter: drop-shadow(0 0 6px rgba(114, 9, 183, 0.6));
}

.home-about-interactive-container:has(.sector-infrastructure:hover) .line-infrastructure {
  stroke: #e25b00;
  stroke-width: 3px;
  stroke-dasharray: none;
  filter: drop-shadow(0 0 6px rgba(226, 91, 0, 0.6));
}

.home-about-interactive-container:has(.sector-logistics:hover) .line-logistics {
  stroke: #2a9d8f;
  stroke-width: 3px;
  stroke-dasharray: none;
  filter: drop-shadow(0 0 6px rgba(42, 157, 143, 0.6));
}

.home-about-interactive-container:has(.sector-energy:hover) .line-energy {
  stroke: #ffb703;
  stroke-width: 3px;
  stroke-dasharray: none;
  filter: drop-shadow(0 0 6px rgba(255, 183, 3, 0.6));
}

/* Center Hub */
.about-center-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.hub-logo-box {
  width: 110px;
  height: 110px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(190, 15, 93, 0.12);
  border: 1px solid rgba(190, 15, 93, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  overflow: hidden;
}

.hub-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.38);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark-mode .hub-logo-box {
  background: #120e24;
  border-color: rgba(105, 86, 229, 0.2);
  box-shadow: 0 10px 30px rgba(105, 86, 229, 0.25);
}

.about-center-hub:hover .hub-logo-box {
  transform: scale(1.06);
  box-shadow: 0 15px 40px rgba(190, 15, 93, 0.22);
}

.about-center-hub:hover .hub-logo-box img {
  transform: scale(1.45);
}

.dark-mode .about-center-hub:hover .hub-logo-box {
  box-shadow: 0 15px 40px rgba(105, 86, 229, 0.45);
}

.hub-title {
  margin-top: 12px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0b071e;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.dark-mode .hub-title {
  color: #ffffff;
  background: rgba(30, 30, 45, 0.75);
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Floating Sector Animation Wrappers */
.floating-sector-wrapper {
  position: absolute;
  z-index: 5;
  animation: sectorFloat 4.5s ease-in-out infinite;
}

/* Positions for wrappers on desktop */
.sector-telecom-wrapper {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.sector-technology-wrapper {
  top: 15%;
  right: 8%;
  animation-delay: 0.9s;
}

.sector-infrastructure-wrapper {
  bottom: 15%;
  right: 10%;
  animation-delay: 1.8s;
}

.sector-logistics-wrapper {
  bottom: 15%;
  left: 10%;
  animation-delay: 2.7s;
}

.sector-energy-wrapper {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation-name: sectorFloatCenter;
  animation-delay: 3.6s;
}

/* Floating Badges styling */
.floating-sector {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.dark-mode .floating-sector {
  background: rgba(18, 14, 36, 0.85);
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.floating-sector:hover {
  transform: scale(1.05) translateY(-5px);
  z-index: 20;
}

/* Sector-specific hover glowing effects */
.sector-telecom:hover {
  border-color: #00b4d8 !important;
  box-shadow: 0 10px 25px rgba(0, 180, 216, 0.25) !important;
}
.dark-mode .sector-telecom:hover {
  box-shadow: 0 10px 25px rgba(0, 180, 216, 0.4) !important;
}

.sector-technology:hover {
  border-color: #7209b7 !important;
  box-shadow: 0 10px 25px rgba(114, 9, 183, 0.25) !important;
}
.dark-mode .sector-technology:hover {
  box-shadow: 0 10px 25px rgba(114, 9, 183, 0.4) !important;
}

.sector-infrastructure:hover {
  border-color: #e25b00 !important;
  box-shadow: 0 10px 25px rgba(226, 91, 0, 0.25) !important;
}
.dark-mode .sector-infrastructure:hover {
  box-shadow: 0 10px 25px rgba(226, 91, 0, 0.4) !important;
}

.sector-logistics:hover {
  border-color: #2a9d8f !important;
  box-shadow: 0 10px 25px rgba(42, 157, 143, 0.25) !important;
}
.dark-mode .sector-logistics:hover {
  box-shadow: 0 10px 25px rgba(42, 157, 143, 0.4) !important;
}

.sector-energy:hover {
  border-color: #ffb703 !important;
  box-shadow: 0 10px 25px rgba(255, 183, 3, 0.25) !important;
}
.dark-mode .sector-energy:hover {
  box-shadow: 0 10px 25px rgba(255, 183, 3, 0.4) !important;
}

.sector-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.floating-sector:hover .sector-icon {
  transform: rotate(6deg) scale(1.08);
}

.sector-label {
  font-size: 0.9rem;
  font-weight: 750;
  color: #0b071e;
}

.dark-mode .sector-label {
  color: #ffffff;
}

/* Keyframes for Floating Effect (purely vertical translation) */
@keyframes sectorFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

@keyframes sectorFloatCenter {
  0% { transform: translateX(-50%) translateY(0px); }
  50% { transform: translateX(-50%) translateY(-8px); }
  100% { transform: translateX(-50%) translateY(0px); }
}

/* Responsive adjustment for Mobile view (prevent overlapping) */
@media (max-width: 575.98px) {
  .home-about-interactive-container {
    height: 440px;
  }
  .hub-logo-box {
    width: 90px;
    height: 90px;
    padding: 0;
  }
  .floating-sector {
    padding: 8px 14px;
    gap: 6px;
  }
  .sector-icon {
    width: 30px;
    height: 30px;
    font-size: 0.95rem;
    border-radius: 8px;
  }
  .sector-label {
    font-size: 0.8rem;
  }

  /* Reposition wrappers to completely clear the center hub */
  .sector-telecom-wrapper {
    top: 30%;
    left: 3%;
  }
  
  .sector-technology-wrapper {
    top: 30%;
    right: 3%;
  }
  
  .sector-infrastructure-wrapper {
    bottom: 8%;
    right: 4%;
  }
  
  .sector-logistics-wrapper {
    bottom: 8%;
    left: 4%;
  }
  
  .sector-energy-wrapper {
    top: 6%;
    left: 50%;
  }
}

/* ==========================================================================
   11. Contact CTA Section Redesign
   ========================================================================== */
.home-contact-cta {
  padding: 100px 0 !important;
  background: #f8fafc !important;
  position: relative;
  overflow: hidden;
}

/* Section Header Visibility & Alignment */
.home-contact-cta .section-header {
  margin-bottom: 50px !important;
}
.home-contact-cta .section-header h2 {
  font-size: 2.5rem !important;
  color: #0f172a !important;
  font-weight: 850 !important;
  position: relative;
  display: inline-block;
  margin-bottom: 15px !important;
}
.home-contact-cta .section-header h2 svg {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 12px;
  fill: #be0f5d;
}
.home-contact-cta .section-header p.header-text {
  color: #64748b !important;
  font-size: 1.05rem !important;
  max-width: 600px;
  margin: 15px auto 0 auto !important;
}

/* Contact Info Cards (Vertical Stack) */
.contact-cta-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-cta-card {
  background: #ffffff;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  padding: 20px !important;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.contact-cta-card:hover {
  transform: translateY(-4px);
  border-color: #be0f5d !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03) !important;
}

/* Sized Icon Boxes instead of full width */
.contact-cta-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}
.contact-cta-card:hover .contact-cta-icon {
  transform: scale(1.1);
}

.contact-cta-details {
  flex: 1;
}
.contact-cta-details h5 {
  font-size: 1.1rem !important;
  color: #0f172a !important;
  font-weight: 700 !important;
  margin-bottom: 4px !important;
  margin-top: 0 !important;
}
.contact-cta-details p {
  color: #475569 !important;
  font-size: 0.95rem !important;
  margin-bottom: 0 !important;
  line-height: 1.5 !important;
}

/* Quick Contact Form Card */
.contact-cta-form-wrapper {
  background: #ffffff;
  border: 1px solid #e2e8f0 !important;
  border-radius: 24px !important;
  padding: 40px !important;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05) !important;
}
.contact-cta-form-wrapper h4 {
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin-bottom: 8px !important;
  margin-top: 0 !important;
}
.contact-cta-form-desc {
  color: #64748b !important;
  font-size: 0.95rem !important;
  margin-bottom: 30px !important;
}

/* Form Inputs */
.contact-cta-input {
  height: 52px;
  background: #f8fafc !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 12px !important;
  color: #0f172a !important;
  padding: 12px 18px !important;
  font-size: 0.95rem !important;
  transition: all 0.3s ease !important;
}
textarea.contact-cta-input {
  height: auto !important;
  min-height: 120px;
  padding: 16px 18px !important;
}
.contact-cta-input:focus {
  background: #ffffff !important;
  border-color: #be0f5d !important;
  box-shadow: 0 0 0 3px rgba(190, 15, 93, 0.15) !important;
  outline: none !important;
}

/* Custom submit button styles */
.contact-cta-submit {
  background: linear-gradient(135deg, #be0f5d, #e04b8c) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  padding: 14px 32px !important;
  border-radius: 100px !important;
  border: none !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px -5px rgba(190, 15, 93, 0.4) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer;
  width: auto;
}
.contact-cta-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -5px rgba(190, 15, 93, 0.6), 0 0 15px rgba(255, 87, 160, 0.2) !important;
}
.contact-cta-submit .arrow-icon {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}
[dir="rtl"] .contact-cta-submit:hover .arrow-icon {
  transform: translateX(-4px);
}
[dir="ltr"] .contact-cta-submit .arrow-icon {
  transform: rotate(180deg);
}
[dir="ltr"] .contact-cta-submit:hover .arrow-icon {
  transform: rotate(180deg) translateX(-4px);
}

/* ==========================================================================
   Dark Mode Styles for Contact Section
   ========================================================================== */
.dark-mode .home-contact-cta {
  background: linear-gradient(180deg, #100e2b 0%, #070515 100%) !important;
}
.dark-mode .home-contact-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 50%, rgba(190, 15, 93, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.dark-mode .home-contact-cta .section-header h2 {
  color: #ffffff !important;
}
.dark-mode .home-contact-cta .section-header p.header-text {
  color: #b0b8c8 !important;
}
.dark-mode .contact-cta-card {
  background: #161233 !important;
  border-color: rgba(255, 255, 255, 0.05) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}
.dark-mode .contact-cta-card:hover {
  border-color: #be0f5d !important;
  box-shadow: 0 8px 30px rgba(190, 15, 93, 0.15) !important;
}
.dark-mode .contact-cta-details h5 {
  color: #ffffff !important;
}
.dark-mode .contact-cta-details p {
  color: #a0aec0 !important;
}
.dark-mode .contact-cta-form-wrapper {
  background: #161233 !important;
  border-color: rgba(255, 255, 255, 0.05) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
}
.dark-mode .contact-cta-form-wrapper h4 {
  color: #ffffff !important;
}
.dark-mode .contact-cta-form-desc {
  color: #a0aec0 !important;
}
.dark-mode .contact-cta-input {
  background: #0d0a21 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
}
.dark-mode .contact-cta-input:focus {
  background: #0d0a21 !important;
  border-color: #be0f5d !important;
  box-shadow: 0 0 0 3px rgba(190, 15, 93, 0.3) !important;
}
.dark-mode .contact-cta-input::placeholder {
  color: #718096 !important;
}

/* Mobile navigation drawer final override */
.mobile-nav-lock {
  overflow: hidden;
  touch-action: none;
}

.nav-close,
.nav-toggler {
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
}

.nav-overlay {
  pointer-events: none;
}

.nav-overlay.active {
  pointer-events: auto;
}

@media (max-width: 991.98px) {
  .mobile-nav-lock .navbar .nav-logo,
  .mobile-nav-lock .navbar > .container > .nav-actions {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .mobile-nav-lock .navbar .nav-links {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .navbar {
    height: 72px !important;
    z-index: 10000 !important;
  }

  .navbar > .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
  }

  .navbar .nav-logo {
    width: auto !important;
    flex: 0 0 auto !important;
  }

  .navbar .nav-logo img {
    width: 104px !important;
    max-width: 30vw !important;
  }

  .navbar .nav-actions {
    width: auto !important;
    flex: 0 0 auto !important;
    gap: 4px !important;
  }

  .navbar .nav-actions .switch-langs {
    margin: 0 !important;
  }

  .navbar .nav-actions .hover-drop {
    margin: 0 !important;
    min-height: 44px !important;
    padding: 0 4px !important;
  }

  .navbar .nav-actions .hover-drop span {
    font-size: 0.82rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .navbar .nav-actions .hover-drop svg {
    width: 18px !important;
    height: 18px !important;
    margin-inline: 6px !important;
  }

  .navbar .nav-actions .nav-toggler {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    -webkit-appearance: none !important;
            appearance: none !important;
  }

  .navbar .nav-actions .nav-toggler svg {
    width: 22px !important;
    height: 22px !important;
    margin: 0 !important;
  }

  .nav-overlay {
    z-index: 9990 !important;
    background: rgba(0, 0, 0, 0.62) !important;
  }

  .navbar .nav-links,
  .nav-dark .nav-links,
  .nav-scroll .nav-links {
    position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
    width: min(88vw, 360px) !important;
    max-width: 360px !important;
    height: 100vh !important;
    height: 100dvh !important;
    margin: 0 !important;
    padding: calc(66px + env(safe-area-inset-top)) 18px calc(22px + env(safe-area-inset-bottom)) !important;
    background: #03031b !important;
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    z-index: 10020 !important;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.45) !important;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1) !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .navbar .nav-links::-webkit-scrollbar,
  .megamenu::-webkit-scrollbar,
  .dropdown-menu-custom::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
  }

  .navbar .nav-links::-webkit-scrollbar-track,
  .megamenu::-webkit-scrollbar-track,
  .dropdown-menu-custom::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08) !important;
    border-radius: 999px !important;
  }

  .navbar .nav-links::-webkit-scrollbar-thumb,
  .megamenu::-webkit-scrollbar-thumb,
  .dropdown-menu-custom::-webkit-scrollbar-thumb {
    background: rgba(190, 15, 93, 0.72) !important;
    border-radius: 999px !important;
  }

  html[dir="rtl"] .navbar .nav-links {
    right: 0 !important;
    left: auto !important;
    text-align: right !important;
    transform: translate3d(100%, 0, 0) !important;
  }

  html[dir="ltr"] .navbar .nav-links {
    left: 0 !important;
    right: auto !important;
    text-align: left !important;
    transform: translate3d(-100%, 0, 0) !important;
  }

  html[dir="rtl"] .navbar .nav-links.navbar-open,
  html[dir="ltr"] .navbar .nav-links.navbar-open {
    transform: translate3d(0, 0, 0) !important;
  }

  .navbar .nav-links .nav-close,
  .nav-dark .nav-links .nav-close,
  .nav-scroll .nav-links .nav-close {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    top: calc(16px + env(safe-area-inset-top)) !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08) !important;
    cursor: pointer !important;
    z-index: 2 !important;
    -webkit-appearance: none !important;
            appearance: none !important;
  }

  html[dir="rtl"] .navbar .nav-links .nav-close {
    left: 16px !important;
    right: auto !important;
  }

  html[dir="ltr"] .navbar .nav-links .nav-close {
    right: 16px !important;
    left: auto !important;
  }

  .navbar .nav-links .nav-close i {
    line-height: 1 !important;
  }

  .navbar .nav-links ul,
  .nav-dark .nav-links ul,
  .nav-scroll .nav-links ul {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: inherit !important;
  }

  .navbar .nav-links ul li,
  .nav-dark .nav-links ul li,
  .nav-scroll .nav-links ul li {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    z-index: auto !important;
    text-align: inherit !important;
  }

  .navbar .nav-links ul li > a,
  .navbar .nav-links ul li > span,
  .nav-dark .nav-links ul li > a,
  .nav-scroll .nav-links ul li > a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 44px !important;
    width: 100% !important;
    padding: 10px 4px !important;
    color: #ffffff !important;
    font-size: 0.98rem !important;
    line-height: 1.35 !important;
    text-align: inherit !important;
    border-radius: 8px !important;
  }

  .navbar .nav-links ul .nav-link-active > a {
    color: #ffffff !important;
    background: rgba(190, 15, 93, 0.18) !important;
    padding: 10px 12px !important;
  }

  .navbar .nav-links .nav-arrow {
    flex: 0 0 auto !important;
    margin-inline-start: 8px !important;
  }

  .has-megamenu,
  .has-dropdown {
    position: relative !important;
    text-align: inherit !important;
  }

  .has-megamenu:hover .megamenu,
  .has-dropdown:hover .dropdown-menu-custom {
    transform: none !important;
  }

  .megamenu,
  .dropdown-menu-custom {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    max-width: none !important;
    max-height: 0 !important;
    display: block !important;
    padding: 0 10px !important;
    margin: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    overflow: hidden !important;
    transform: none !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: none !important;
    transition: max-height 0.32s ease, padding 0.32s ease, opacity 0.24s ease !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .megamenu.megamenu-open,
  .dropdown-menu-custom.dropdown-open {
    max-height: 58vh !important;
    max-height: 58dvh !important;
    padding: 10px !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .megamenu-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .megamenu-col {
    margin: 0 !important;
  }

  .megamenu-col-title {
    justify-content: flex-start !important;
    margin: 0 0 8px !important;
    padding-bottom: 8px !important;
    color: #ffffff !important;
    border-bottom-color: rgba(255, 255, 255, 0.12) !important;
    font-size: 0.84rem !important;
  }

  .megamenu-products-list,
  .dropdown-list {
    gap: 5px !important;
  }

  .navbar .nav-links ul li .megamenu-prod-item,
  .dropdown-item-custom {
    min-height: 42px !important;
    padding: 8px !important;
    color: #ffffff !important;
    border-radius: 8px !important;
  }

  .megamenu-prod-details h6,
  .partner-name {
    color: #ffffff !important;
    font-size: 0.82rem !important;
  }

  .megamenu-prod-details p,
  .partner-tagline {
    color: rgba(255, 255, 255, 0.62) !important;
    font-size: 0.68rem !important;
    line-height: 1.35 !important;
  }

  .dropdown-item-custom .logo-wrapper-custom {
    width: 34px !important;
    height: 34px !important;
    border-radius: 7px !important;
  }
}

@media (max-width: 374.98px) {
  .navbar .nav-actions .hover-drop span {
    display: none !important;
  }

  .navbar .nav-actions .hover-drop svg {
    margin-inline: 4px !important;
  }
}

/* ==========================================================================
   Adaptive Logo — light/dark variants by background
   logo-light.png → dark backgrounds (hero, footer, dark-mode nav)
   logo-dark.png  → light backgrounds (scrolled nav, nav-dark pages)
   ========================================================================== */

.site-logo-switcher {
  display: inline-flex;
  align-items: center;
  position: relative;
  line-height: 0;
}

.site-logo {
  width: 150px;
  height: auto;
  display: block;
  transition: opacity 0.25s ease;
}

.site-logo--dark {
  display: none;
}

/* Dark backgrounds → light logo (default at top of page) */
.navbar:not(.nav-scroll):not(.nav-dark) .site-logo--light,
.footer .site-logo--light,
.footer-logo .site-logo--light {
  display: block;
}

.navbar:not(.nav-scroll):not(.nav-dark) .site-logo--dark,
.footer .site-logo--dark,
.footer-logo .site-logo--dark {
  display: none;
}

/* Light backgrounds → dark logo */
.navbar.nav-scroll .site-logo--light,
.navbar.nav-dark .site-logo--light {
  display: none;
}

.navbar.nav-scroll .site-logo--dark,
.navbar.nav-dark .site-logo--dark {
  display: block;
}

/* Dark mode: scrolled navbar keeps a dark surface */
.dark-mode .navbar.nav-scroll .site-logo--dark {
  display: none;
}

.dark-mode .navbar.nav-scroll .site-logo--light {
  display: block;
}

/* Footer always sits on a dark background */
.footer .site-logo--dark,
.footer-logo .site-logo--dark {
  display: none !important;
}

.footer .site-logo--light,
.footer-logo .site-logo--light {
  display: block !important;
}

.footer .site-logo,
.footer-logo .site-logo {
  width: 220px;
  max-width: 100%;
}

@media (max-width: 1199.98px) {
  .site-logo {
    width: 120px;
  }

  .footer .site-logo,
  .footer-logo .site-logo {
    width: 180px;
  }
}

@media (max-width: 575.98px) {
  .site-logo {
    width: 100px;
  }

  .footer .site-logo,
  .footer-logo .site-logo {
    width: 160px;
  }
}

.mobile-logo-wrapper {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[dir="rtl"] .mobile-logo-wrapper {
  padding-left: 40px;
}

[dir="ltr"] .mobile-logo-wrapper {
  padding-right: 40px;
}

/* ==========================================================================
   HERO SECTION V2 — Homepage
   ========================================================================== */

.home-header .hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 35%, black 15%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 35%, black 15%, transparent 72%);
  pointer-events: none;
}

.home-header .hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 1;
  animation: heroOrbDrift 14s ease-in-out infinite alternate;
}

.home-header .hero-orb-1 {
  width: 380px;
  height: 380px;
  top: 8%;
  right: 6%;
  background: rgba(190, 15, 93, 0.2);
}

.home-header .hero-orb-2 {
  width: 300px;
  height: 300px;
  bottom: 12%;
  left: 4%;
  background: rgba(90, 40, 160, 0.16);
  animation-delay: -5s;
}

@keyframes heroOrbDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(18px, -20px) scale(1.1); }
}

.home-header .overlay {
  background:
    linear-gradient(155deg, rgba(6, 4, 22, 0.94) 0%, rgba(12, 8, 32, 0.88) 45%, rgba(22, 10, 42, 0.82) 100%),
    radial-gradient(ellipse 60% 50% at 75% 40%, rgba(190, 15, 93, 0.12) 0%, transparent 65%) !important;
}

.home-header .hero-group-logo {
  height: 20px;
  width: auto;
  object-fit: contain;
}

.home-header h1 .fill {
  position: relative;
  display: inline-block;
}

.home-header h1 .fill::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #be0f5d, #ff57a0, transparent);
  opacity: 0.55;
}

/* Animated ring around desktop visual */
.home-header .visual-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 404px;
  height: 404px;
  max-width: calc(100% + 24px);
  max-height: calc(100% + 24px);
  border-radius: 28px;
  z-index: 0;
  background: conic-gradient(from 0deg, transparent, #be0f5d, #ff57a0, transparent 65%);
  animation: heroRingSpin 8s linear infinite;
  opacity: 0.4;
  transform: translate(-50%, -50%);
}

.home-header .visual-ring::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 26px;
  background: rgba(10, 8, 28, 0.9);
}

@keyframes heroRingSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.home-header .visual-img-container {
  border-radius: 26px;
  max-width: 400px;
  box-shadow:
    0 28px 60px -12px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 40px rgba(190, 15, 93, 0.1);
}

/* Mobile / tablet visual */
.home-header .hero-mobile-visual {
  display: flex;
  justify-content: center;
  margin: 30px auto 0;
  width: 100%;
  max-width: 320px;
}

.home-header .hero-mobile-visual-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 12, 35, 0.45);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 20px 45px -15px rgba(0, 0, 0, 0.6),
              0 0 35px -5px rgba(190, 15, 93, 0.2);
}

.home-header .hero-mobile-visual-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 40%, rgba(15, 12, 38, 0.3) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Stats strip */
.home-header .hero-stats-strip {
  position: relative;
  z-index: 3;
  margin-top: 36px;
}

.home-header .hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 48px -18px rgba(0, 0, 0, 0.45);
}

.home-header .hero-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 14px;
  animation: heroStatIn 0.6s ease both;
  animation-delay: var(--delay, 0s);
  transition: background 0.3s ease;
}

@keyframes heroStatIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.home-header .hero-stat-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.home-header .hero-stat-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #ff8ec0;
  background: linear-gradient(135deg, rgba(190, 15, 93, 0.22), rgba(255, 87, 160, 0.1));
  border: 1px solid rgba(255, 87, 160, 0.18);
}

.home-header .hero-stat-content strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.home-header .hero-stat-content span {
  display: block;
  font-size: 0.74rem;
  color: #94a3b8;
  font-weight: 500;
  margin-top: 2px;
  line-height: 1.3;
}



/* Wave divider */
.hero-wave-divider {
  display: block;
  line-height: 0;
  margin-top: -1px;
  position: relative;
  z-index: 2;
}

.hero-wave-divider svg {
  width: 100%;
  height: 64px;
  display: block;
}

.dark-mode .hero-wave-divider svg path {
  fill: #0c0817;
}

.page-home .home-about-section {
  padding-top: 56px;
}

/* Hero responsive */
@media (min-width: 1200px) {
  .home-header h1 {
    font-size: 3.4rem !important;
    line-height: 1.25 !important;
  }
}

@media (max-width: 991.98px) {
  .home-header .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 16px;
  }

  .home-header .hero-stats-strip {
    margin-top: 24px;
  }

  .home-header .floating-badge {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .home-header .hero-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 14px;
    border-radius: 16px;
  }

  .home-header .hero-stat-item {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    padding: 10px 6px;
  }

  .home-header .hero-stat-content strong {
    font-size: 1.1rem;
  }

  .home-header .hero-mobile-visual {
    max-width: 100%;
    padding: 0 10px;
  }
}

/* ==========================================================================
   HOME STATS SECTION V2
   ========================================================================== */

.home-stats-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0 !important;
  background: linear-gradient(165deg, #06040f 0%, #0c0820 40%, #100a28 100%) !important;
}

.home-stats-section .stats-bg-mesh {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 75%);
  pointer-events: none;
}

.home-stats-section .stats-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.home-stats-section .stats-bg-glow-1 {
  width: 400px;
  height: 400px;
  top: -10%;
  right: 10%;
  background: rgba(190, 15, 93, 0.12);
}

.home-stats-section .stats-bg-glow-2 {
  width: 350px;
  height: 350px;
  bottom: -15%;
  left: 5%;
  background: rgba(0, 180, 216, 0.08);
}

.home-stats-section .container {
  position: relative;
  z-index: 2;
}

.home-stats-section .stats-header {
  text-align: center;
  margin-bottom: 52px;
}

.home-stats-section .stats-eyebrow {
  display: inline-block;
  background: rgba(190, 15, 93, 0.1);
  color: #ff57a0;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px solid rgba(190, 15, 93, 0.2);
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.home-stats-section .stats-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.home-stats-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.home-stats-section .stat-card {
  position: relative;
  border-radius: 22px;
  --stat-color: #be0f5d;
}

.home-stats-section .stat-card-glow {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(ellipse at 50% 0%, color-mix(in srgb, var(--stat-color) 18%, transparent), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.home-stats-section .stat-card:hover .stat-card-glow {
  opacity: 1;
}

.home-stats-section .stat-card-inner {
  position: relative;
  height: 100%;
  padding: 32px 24px 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.home-stats-section .stat-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--stat-color), transparent);
  opacity: 0.7;
}

.home-stats-section .stat-card:hover .stat-card-inner {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--stat-color) 35%, transparent);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.3),
    0 0 0 1px color-mix(in srgb, var(--stat-color) 15%, transparent);
}

.home-stats-section .stat-icon-wrap {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: var(--stat-color);
  background: color-mix(in srgb, var(--stat-color) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--stat-color) 25%, transparent);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-stats-section .stat-card:hover .stat-icon-wrap {
  background: var(--stat-color);
  color: #ffffff;
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--stat-color) 40%, transparent);
}

.home-stats-section .stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 10px;
  line-height: 1;
}

.home-stats-section .stat-value .plus-sign {
  font-size: 2rem;
  font-weight: 800;
  color: var(--stat-color);
}

.home-stats-section .stat-value .count-to {
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 30%, var(--stat-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-stats-section .stat-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: #94a3b8;
  margin: 0;
  line-height: 1.5;
}

.home-stats-section .stat-card:hover .stat-label {
  color: #cbd5e1;
}

@media (max-width: 991.98px) {
  .home-stats-section {
    padding: 80px 0 !important;
  }

  .home-stats-section .stats-title {
    font-size: 2rem;
  }

  .home-stats-section .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .home-stats-section .stat-card-inner {
    padding: 26px 18px 22px;
  }

  .home-stats-section .stat-value .count-to {
    font-size: 2.2rem;
  }
}

@media (max-width: 575.98px) {
  .home-stats-section .stats-header {
    margin-bottom: 36px;
  }

  .home-stats-section .stats-title {
    font-size: 1.65rem;
  }

  .home-stats-section .stats-grid {
    gap: 12px;
  }

  .home-stats-section .stat-icon-wrap {
    width: 54px;
    height: 54px;
    font-size: 1.25rem;
    margin-bottom: 16px;
    border-radius: 14px;
  }

  .home-stats-section .stat-value .plus-sign {
    font-size: 1.5rem;
  }

  .home-stats-section .stat-value .count-to {
    font-size: 1.85rem;
  }

  .home-stats-section .stat-label {
    font-size: 0.8rem;
  }
}

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