@charset "UTF-8";
:root {
  --mainColor: #b5ae4a;
  --mainColor20: #b5ae4a33;
  --mainColor05: #b5ae4a0d;
  --linearGradient: linear-gradient(
    160deg,
    #4b5861 0%,
    rgba(19, 53, 44, 0.64) 50%,
    var(--mainColor) 100%
  );
  --secondColor: #f7f3e7;
  --goldColor: #f4bd4b;
  --whiteColor: #ffffff;
  --darkColor: #191919;
  --lightGrayColor: #d6d6d6;
  --grayColor: #777;
  --transition: 0.3s ease-in-out;
  --shadow: 0px 2px 4px #c1c1c1;
  --BigShadow: 0 16px 32px 0 #071c1f1a;
}

@font-face {
  font-family: "fontRegular";
  font-display: swap;
  src: url(../webfonts/GreycliffArabicCF-Regular.otf);
}
@font-face {
  font-family: "fontBold";
  font-display: swap;
  src: url(../webfonts/GreycliffArabicCF-Bold.otf);
  font-weight: 900;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  scroll-behavior: smooth;
  direction: rtl;
}

::-webkit-scrollbar {
  width: 4px;
  height: 6px;
  border-radius: 0px !important;
}

::-webkit-scrollbar-track {
  border-radius: 8px !important;
  background: var(--darkColor);
}

::-webkit-scrollbar-thumb {
  background: var(--mainColor20);
  outline: none;
  border-radius: 20px !important;
}

:target {
  scroll-margin-top: 50px;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  text-decoration: none;
  color: var(--mainColor);
}

button {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.row {
  margin: 0px;
}

body {
  overflow-x: hidden !important;
  width: 100vw;
  background-color: var(--darkColor);
}

body,
a,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  line-height: 1.6;
  color: var(--whiteColor);
  font-family: "fontRegular", sans-serif;
}

#cursor-glow {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 9999;
  mix-blend-mode: screen;
  filter: blur(40px);
}
@media screen and (max-width: 767px) {
  #cursor-glow {
    display: none;
  }
}

#cursor-dot {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--mainColor);
  transform: translate(-50%, -50%);
  z-index: 10000;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6), 0 0 40px rgba(212, 175, 55, 0.3);
}
@media screen and (max-width: 767px) {
  #cursor-dot {
    display: none;
  }
}

@media (max-width: 767px) {
  .container,
  .container-fluid {
    padding: 0px 4px;
  }
}
video,
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.btn {
  font-size: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.btn i {
  font-size: 16px;
}

.btn:focus {
  box-shadow: none;
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  border-color: transparent;
}

input {
  accent-color: var(--mainColor) !important;
}

.odometer-inside {
  direction: ltr !important;
}

.fancybox__container {
  z-index: 1999;
}

::-moz-placeholder {
  font-size: 12px;
  color: #bababa !important;
  font-weight: normal !important;
}

::placeholder {
  font-size: 12px;
  color: #bababa !important;
  font-weight: normal !important;
}

::-moz-selection {
  background-color: var(--mainColor);
}

::selection {
  background-color: var(--mainColor);
}

[type=email],
[type=number],
[type=tel],
[type=url] {
  direction: rtl;
}

.fancybox__track,
.fancybox__content {
  direction: ltr !important;
}

.carousel__track {
  direction: rtl !important;
}

.navbar-toggler {
  border: none;
  box-shadow: none !important;
}
.navbar-toggler .navbar-toggler-icon {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

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

.form-control {
  min-height: 48px;
}
.form-control:focus {
  box-shadow: none;
}

.tooltip {
  --bs-tooltip-bg: var(--textlightGrayr);
}
.tooltip .tooltip-inner {
  font-size: 10px;
  padding: 8px 16px !important;
}

content {
  min-height: calc(100dvh - 320px);
  display: flex;
  flex-direction: column;
}

.spinerLoader {
  background-color: var(--darkColor);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.spinerLoader .spinerLoaderImg {
  width: 200px;
  height: 200px;
  -webkit-mask-image: url("../img/l.svg");
          mask-image: url("../img/l.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: relative;
}
.spinerLoader .spinerLoaderImg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
  height: 200px;
  z-index: 2;
  background-color: var(--mainColor);
  transform: translateY(100%);
  animation: slide-up 1.5s forwards;
}
.spinerLoader .spinerLoaderImg::before {
  content: "";
  display: block;
  width: 200px;
  height: 200px;
  background-image: url("../img/logo.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(1) opacity(0.5);
}
@keyframes slide-up {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0%);
  }
}

.lazyDiv {
  position: relative;
  overflow: hidden;
}
.lazyDiv::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #000;
  transition: transform 2s 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateX(0%);
}
.lazyDiv.oppositeDir::after {
  right: unset;
  left: 0;
}
.lazyDiv .lazy {
  position: relative;
  z-index: 1;
  width: 100%;
}
.lazyDiv.loaded::after {
  transform: translateX(100%);
}
.lazyDiv.loaded.oppositeDir::after {
  transform: translateX(-100%);
}
.lazyDiv.loaded.down::after {
  transform: translateY(100%);
}
.lazyDiv.loaded.up::after {
  transform: translateY(-100%);
}

.container {
  width: min(100% - 4px, 1320px);
  max-width: unset;
  margin: auto;
}

.contactBtns {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 110;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 8px 6px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3), inset 0 0 18px rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.contactBtns .contactBtn {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.2), 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition), filter var(--transition), box-shadow var(--transition);
}
.contactBtns .contactBtn img {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}
.contactBtns .contactBtn.whatsapp {
  background: radial-gradient(circle at 25% 25%, #48d777 0%, #18a84b 100%);
}
.contactBtns .contactBtn.call {
  background: radial-gradient(circle at 25% 25%, #6fc5ff 0%, #2584e7 100%);
}
.contactBtns .contactBtn:hover {
  transform: translateY(-3px) scale(1.05);
  filter: saturate(1.08);
  box-shadow: inset 0 0 14px rgba(255, 255, 255, 0.24), 0 10px 20px rgba(0, 0, 0, 0.28);
}
@media (max-width: 767px) {
  .contactBtns {
    left: 10px;
    bottom: 12px;
    padding: 8px;
    border-radius: 26px;
  }
  .contactBtns .contactBtn {
    width: 42px;
    height: 42px;
  }
  .contactBtns .contactBtn img {
    width: 19px;
    height: 19px;
  }
}

.socialBtns {
  position: fixed;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}
.socialBtns .main,
.socialBtns a {
  cursor: pointer;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
}
.socialBtns .main img,
.socialBtns a img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}
.socialBtns .main {
  position: relative;
  z-index: 2;
  width: 38px;
  height: 40px;
  background: var(--linearGradient);
  background-size: 400%;
  animation: animateBg 5s linear infinite;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1843137255);
  color: var(--darkColor);
  border-radius: 100% 0 0 100%;
}
.socialBtns .main img {
  width: 22px;
  height: 22px;
}
.socialBtns .subs a {
  box-shadow: none;
  position: absolute;
  right: 10px;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(0px) translateY(0px);
  border: 1px solid var(--whiteColor);
}
.socialBtns .subs a:nth-child(1) {
  transition-delay: 0.2s, 0s, 0.2s;
}
.socialBtns .subs a:nth-child(2) {
  transition-delay: 0.3s, 0s, 0.3s;
}
.socialBtns .subs a:nth-child(3) {
  transition-delay: 0.4s, 0s, 0.4s;
}
.socialBtns .subs a:nth-child(4) {
  transition-delay: 0.5s, 0s, 0.5s;
}
.socialBtns .subs a:nth-child(5) {
  transition-delay: 0.6s, 0s, 0.6s;
}
.socialBtns .subs a:nth-child(6) {
  transition-delay: 0.7s, 0s, 0.7s;
}
.socialBtns .subs a:nth-child(7) {
  transition-delay: 0.8s, 0s, 0.8s;
}
.socialBtns .subs a:nth-child(8) {
  transition-delay: 0.9s, 0s, 0.9s;
}
.socialBtns .subs a:nth-child(9) {
  transition-delay: 1s, 0s, 1s;
}
.socialBtns .subs a:nth-child(10) {
  transition-delay: 1.1s, 0s, 1.1s;
}
.socialBtns .subs a:nth-child(11) {
  transition-delay: 1.2s, 0s, 1.2s;
}
.socialBtns .subs a:nth-child(12) {
  transition-delay: 1.3s, 0s, 1.3s;
}
.socialBtns .subs a:nth-child(13) {
  transition-delay: 1.4s, 0s, 1.4s;
}
.socialBtns .subs a:nth-child(14) {
  transition-delay: 1.5s, 0s, 1.5s;
}
.socialBtns .subs a:nth-child(15) {
  transition-delay: 1.6s, 0s, 1.6s;
}
.socialBtns .subs a:nth-child(16) {
  transition-delay: 1.7s, 0s, 1.7s;
}
.socialBtns .subs a:nth-child(17) {
  transition-delay: 1.8s, 0s, 1.8s;
}
.socialBtns .subs a:nth-child(18) {
  transition-delay: 1.9s, 0s, 1.9s;
}
.socialBtns .subs a:nth-child(19) {
  transition-delay: 2s, 0s, 2s;
}
.socialBtns .subs a:nth-child(20) {
  transition-delay: 2.1s, 0s, 2.1s;
}
.socialBtns .subs a:nth-child(21) {
  transition-delay: 2.2s, 0s, 2.2s;
}
.socialBtns .subs a:nth-child(22) {
  transition-delay: 2.3s, 0s, 2.3s;
}
.socialBtns .subs a:nth-child(23) {
  transition-delay: 2.4s, 0s, 2.4s;
}
.socialBtns .subs a:nth-child(24) {
  transition-delay: 2.5s, 0s, 2.5s;
}
.socialBtns .subs a:nth-child(25) {
  transition-delay: 2.6s, 0s, 2.6s;
}
.socialBtns .subs a:nth-child(26) {
  transition-delay: 2.7s, 0s, 2.7s;
}
.socialBtns .subs a:nth-child(27) {
  transition-delay: 2.8s, 0s, 2.8s;
}
.socialBtns .subs a:nth-child(28) {
  transition-delay: 2.9s, 0s, 2.9s;
}
.socialBtns .subs a:nth-child(29) {
  transition-delay: 3s, 0s, 3s;
}
.socialBtns .subs a:nth-child(30) {
  transition-delay: 3.1s, 0s, 3.1s;
}
.socialBtns .subs a:nth-child(31) {
  transition-delay: 3.2s, 0s, 3.2s;
}
.socialBtns .subs a:nth-child(32) {
  transition-delay: 3.3s, 0s, 3.3s;
}
.socialBtns .subs a:nth-child(33) {
  transition-delay: 3.4s, 0s, 3.4s;
}
.socialBtns .subs a:nth-child(34) {
  transition-delay: 3.5s, 0s, 3.5s;
}
.socialBtns .subs a:nth-child(35) {
  transition-delay: 3.6s, 0s, 3.6s;
}
.socialBtns .subs a:nth-child(36) {
  transition-delay: 3.7s, 0s, 3.7s;
}
.socialBtns .subs a:nth-child(37) {
  transition-delay: 3.8s, 0s, 3.8s;
}
.socialBtns .subs a:nth-child(38) {
  transition-delay: 3.9s, 0s, 3.9s;
}
.socialBtns .subs a:nth-child(39) {
  transition-delay: 4s, 0s, 4s;
}
.socialBtns .subs a:nth-child(40) {
  transition-delay: 4.1s, 0s, 4.1s;
}
.socialBtns .subs a:nth-child(41) {
  transition-delay: 4.2s, 0s, 4.2s;
}
.socialBtns .subs a:nth-child(42) {
  transition-delay: 4.3s, 0s, 4.3s;
}
.socialBtns .subs a:nth-child(43) {
  transition-delay: 4.4s, 0s, 4.4s;
}
.socialBtns .subs a:nth-child(44) {
  transition-delay: 4.5s, 0s, 4.5s;
}
.socialBtns .subs a:nth-child(45) {
  transition-delay: 4.6s, 0s, 4.6s;
}
.socialBtns .subs a:nth-child(46) {
  transition-delay: 4.7s, 0s, 4.7s;
}
.socialBtns .subs a:nth-child(47) {
  transition-delay: 4.8s, 0s, 4.8s;
}
.socialBtns .subs a:nth-child(48) {
  transition-delay: 4.9s, 0s, 4.9s;
}
.socialBtns .subs a:nth-child(49) {
  transition-delay: 5s, 0s, 5s;
}
.socialBtns .subs a:nth-child(50) {
  transition-delay: 5.1s, 0s, 5.1s;
}
.socialBtns .subs a:nth-child(51) {
  transition-delay: 5.2s, 0s, 5.2s;
}
.socialBtns .subs a:nth-child(52) {
  transition-delay: 5.3s, 0s, 5.3s;
}
.socialBtns .subs a:nth-child(53) {
  transition-delay: 5.4s, 0s, 5.4s;
}
.socialBtns .subs a:nth-child(54) {
  transition-delay: 5.5s, 0s, 5.5s;
}
.socialBtns .subs a:nth-child(55) {
  transition-delay: 5.6s, 0s, 5.6s;
}
.socialBtns .subs a:nth-child(56) {
  transition-delay: 5.7s, 0s, 5.7s;
}
.socialBtns .subs a:nth-child(57) {
  transition-delay: 5.8s, 0s, 5.8s;
}
.socialBtns .subs a:nth-child(58) {
  transition-delay: 5.9s, 0s, 5.9s;
}
.socialBtns .subs a:nth-child(59) {
  transition-delay: 6s, 0s, 6s;
}
.socialBtns .subs a:nth-child(60) {
  transition-delay: 6.1s, 0s, 6.1s;
}
.socialBtns .subs a:nth-child(61) {
  transition-delay: 6.2s, 0s, 6.2s;
}
.socialBtns .subs a:nth-child(62) {
  transition-delay: 6.3s, 0s, 6.3s;
}
.socialBtns .subs a:nth-child(63) {
  transition-delay: 6.4s, 0s, 6.4s;
}
.socialBtns .subs a:nth-child(64) {
  transition-delay: 6.5s, 0s, 6.5s;
}
.socialBtns .subs a:nth-child(65) {
  transition-delay: 6.6s, 0s, 6.6s;
}
.socialBtns .subs a:nth-child(66) {
  transition-delay: 6.7s, 0s, 6.7s;
}
.socialBtns .subs a:nth-child(67) {
  transition-delay: 6.8s, 0s, 6.8s;
}
.socialBtns .subs a:nth-child(68) {
  transition-delay: 6.9s, 0s, 6.9s;
}
.socialBtns .subs a:nth-child(69) {
  transition-delay: 7s, 0s, 7s;
}
.socialBtns .subs a:nth-child(70) {
  transition-delay: 7.1s, 0s, 7.1s;
}
.socialBtns .subs a:nth-child(71) {
  transition-delay: 7.2s, 0s, 7.2s;
}
.socialBtns .subs a:nth-child(72) {
  transition-delay: 7.3s, 0s, 7.3s;
}
.socialBtns .subs a:nth-child(73) {
  transition-delay: 7.4s, 0s, 7.4s;
}
.socialBtns .subs a:nth-child(74) {
  transition-delay: 7.5s, 0s, 7.5s;
}
.socialBtns .subs a:nth-child(75) {
  transition-delay: 7.6s, 0s, 7.6s;
}
.socialBtns .subs a:nth-child(76) {
  transition-delay: 7.7s, 0s, 7.7s;
}
.socialBtns .subs a:nth-child(77) {
  transition-delay: 7.8s, 0s, 7.8s;
}
.socialBtns .subs a:nth-child(78) {
  transition-delay: 7.9s, 0s, 7.9s;
}
.socialBtns .subs a:nth-child(79) {
  transition-delay: 8s, 0s, 8s;
}
.socialBtns .subs a:nth-child(80) {
  transition-delay: 8.1s, 0s, 8.1s;
}
.socialBtns .subs a:nth-child(81) {
  transition-delay: 8.2s, 0s, 8.2s;
}
.socialBtns .subs a:nth-child(82) {
  transition-delay: 8.3s, 0s, 8.3s;
}
.socialBtns .subs a:nth-child(83) {
  transition-delay: 8.4s, 0s, 8.4s;
}
.socialBtns .subs a:nth-child(84) {
  transition-delay: 8.5s, 0s, 8.5s;
}
.socialBtns .subs a:nth-child(85) {
  transition-delay: 8.6s, 0s, 8.6s;
}
.socialBtns .subs a:nth-child(86) {
  transition-delay: 8.7s, 0s, 8.7s;
}
.socialBtns .subs a:nth-child(87) {
  transition-delay: 8.8s, 0s, 8.8s;
}
.socialBtns .subs a:nth-child(88) {
  transition-delay: 8.9s, 0s, 8.9s;
}
.socialBtns .subs a:nth-child(89) {
  transition-delay: 9s, 0s, 9s;
}
.socialBtns .subs a:nth-child(90) {
  transition-delay: 9.1s, 0s, 9.1s;
}
.socialBtns .subs a:nth-child(91) {
  transition-delay: 9.2s, 0s, 9.2s;
}
.socialBtns .subs a:nth-child(92) {
  transition-delay: 9.3s, 0s, 9.3s;
}
.socialBtns .subs a:nth-child(93) {
  transition-delay: 9.4s, 0s, 9.4s;
}
.socialBtns .subs a:nth-child(94) {
  transition-delay: 9.5s, 0s, 9.5s;
}
.socialBtns .subs a:nth-child(95) {
  transition-delay: 9.6s, 0s, 9.6s;
}
.socialBtns .subs a:nth-child(96) {
  transition-delay: 9.7s, 0s, 9.7s;
}
.socialBtns .subs a:nth-child(97) {
  transition-delay: 9.8s, 0s, 9.8s;
}
.socialBtns .subs a:nth-child(98) {
  transition-delay: 9.9s, 0s, 9.9s;
}
.socialBtns .subs a:nth-child(99) {
  transition-delay: 10s, 0s, 10s;
}
.socialBtns .subs a:nth-child(100) {
  transition-delay: 10.1s, 0s, 10.1s;
}
.socialBtns:hover .subs a {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1843137255);
  opacity: 1;
  visibility: visible;
}
.socialBtns:hover .subs a:nth-child(1) {
  transform: translateX(0px) translateY(-70px);
}
.socialBtns:hover .subs a:nth-child(2) {
  transform: translateX(-45px) translateY(-47px);
}
.socialBtns:hover .subs a:nth-child(3) {
  transform: translateX(-60px) translateY(0px);
}
.socialBtns:hover .subs a:nth-child(4) {
  transform: translateX(-45px) translateY(47px);
}
.socialBtns:hover .subs a:nth-child(5) {
  transform: translateX(0) translateY(70px);
}

header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  transition: var(--transition);
  padding: 12px;
}
header .inner {
  width: min(100% - 8px, 1440px);
  margin: auto;
  display: flex;
  align-items: center;
  padding: 0px 24px;
  gap: 4px;
  border-radius: 100px;
  text-align: center;
  transition: var(--transition);
}
header .inner .navbar-brand {
  padding: 5px;
  margin-left: auto;
}
header .inner .navbar-brand img {
  height: 60px;
  min-width: 100px;
  max-width: 250px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
  padding-block: 6px;
}
header .inner .navbar {
  padding: 0;
}
header .inner .navbar .navbar-nav {
  flex: 1;
}
header .inner .navbar .navbar-nav .navLink {
  flex: 1;
  white-space: nowrap;
  padding: 8px 16px;
  color: var(--whiteColor);
}
header .inner .navbar .navbar-nav .navLink.active {
  background: var(--linearGradient);
  background-size: 400%;
  border-radius: 100px;
  animation: animateBg 5s linear infinite;
}
header .inner .navbar .logo {
  display: none;
  padding: 5px;
  margin-bottom: 20px;
}
header .inner .navbar .logo img {
  height: 30px;
  min-width: 120px;
  max-width: 250px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
}
@media screen and (max-width: 992px) {
  header .inner .navbar {
    order: 3;
    padding: 4px;
    border-radius: 8px;
  }
  header .inner .navbar .navbar-toggler {
    padding: 4px;
    position: relative;
    z-index: 3;
  }
  header .inner .navbar .navbar-nav .logo {
    display: block;
  }
  header .inner .navbar .navbar-nav {
    display: flex;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    gap: 8px;
    background-color: var(--darkColor);
    height: 100dvh;
    box-shadow: rgba(0, 0, 0, 0.26) -24px 0 28px -14px;
    width: min(55vw, 340px);
    max-width: 100%;
    text-align: start;
    padding: 24px 20px calc(24px + env(safe-area-inset-bottom));
    transform: translateX(110%);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    transition: var(--transition);
    z-index: 2;
  }
  header .inner .navbar .navbar-nav.show {
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
  }
  header .inner .navbar .navbar-nav .navLink {
    display: block;
    width: 100%;
    flex: unset;
    border-radius: 12px;
    padding: 10px 12px;
  }
}
header .inner .language {
  border-radius: 100px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .inner .language span {
  font-family: "fontBold";
  color: var(--whiteColor);
  padding-block: 6px;
}
header .inner .language:after {
  border-radius: 100px;
}
header.headerAnimate .inner {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(32, 32, 32, 0.87));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3), inset 0 0 18px rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.outlineGradient {
  position: relative;
  font-family: fontBold;
  font-weight: 500;
  z-index: 1;
  background: var(--linearGradient);
  background-size: 400%;
  animation: animateBg 5s linear infinite;
  color: var(--whiteColor);
  border-radius: 8px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  align-items: center;
  gap: 4px;
}
.outlineGradient::after {
  content: "";
  position: absolute;
  bottom: 50%;
  right: 50%;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  z-index: 1;
  transform: translate(50%, 50%);
  background-color: var(--darkColor);
  border-radius: 8px;
  transition: var(--transition);
}
.outlineGradient span {
  position: relative;
  z-index: 2;
  font-size: 16px;
  color: var(--whiteColor);
}
.outlineGradient:hover::after {
  opacity: 0;
}

.gradientText {
  background: var(--linearGradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: animateBg 5s linear infinite;
  background-size: 400%;
}

@keyframes animateBg {
  0% {
    background-position: center;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: center;
  }
}
.fav-logo {
  fill: var(--mainColor);
  animation: spinSlow 12s linear infinite;
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
  text-align: center;
  min-height: 80dvh;
  width: 100%;
}
.hero .heroView {
  position: relative;
  text-align: center;
  overflow: hidden;
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin: auto;
}
.hero .heroView * {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .heroView::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--darkColor);
  z-index: 1;
  opacity: 0.4;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero .text {
  padding: 48px 0;
  width: min(100% - 32px, 700px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-direction: column;
  margin: 0px auto;
  flex: 1;
  text-wrap: balance;
  position: relative;
  z-index: 1;
}
.hero .text .title {
  font-weight: bold;
  font-family: "fontBold", sans-serif !important;
  font-size: 60px;
  line-height: 65px;
  text-transform: uppercase;
  color: var(--mainColor);
}
.hero .text .des {
  font-size: 20px;
}

.breadcrumbWrap {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-top: 120px;
  padding-bottom: 24px;
  min-height: clamp(220px, 34vw, 400px);
}
.breadcrumbWrap::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.breadcrumbWrap .container {
  position: relative;
  z-index: 1;
}
.breadcrumbWrap .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.breadcrumbWrap .breadcrumb a {
  color: var(--lightGrayColor);
  font-size: 14px;
}
.breadcrumbWrap .breadcrumb a:hover {
  color: var(--mainColor);
}
.breadcrumbWrap .breadcrumb .divider {
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumbWrap .breadcrumb .current {
  color: var(--whiteColor);
  font-family: "fontBold", sans-serif;
  font-size: 14px;
}

.articlesBreadcrumbWrap {
  background: url(./../img/test.png) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: 100% 90%;
}

.podcastBreadcrumbWrap {
  background: url("./../img/podcast/podcast2.png") no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  background-position: 100% 100%;
}

.sessionsBreadcrumbWrap {
  background: url("./../img/sessions.jpeg") no-repeat;
  background-position-y: 50%;
  background-size: cover;
  background-attachment: fixed;
}

.ourArticlesSection {
  position: relative;
  padding: 22px 0 90px;
  overflow: hidden;
}
.ourArticlesSection::before, .ourArticlesSection::after {
  content: "";
  position: absolute;
  top: 0;
  width: clamp(38px, 7vw, 96px);
  height: 100%;
  z-index: 3;
  pointer-events: none;
}
.ourArticlesSection::before {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
}
.ourArticlesSection::after {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
}
.ourArticlesSection .articlesHeading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
  text-align: right;
}
.ourArticlesSection .articlesHeading h1 {
  font-family: "fontBold", sans-serif;
  font-size: clamp(34px, 4.5vw, 40px);
  line-height: 1.1;
  margin-bottom: 0;
  color: var(--whiteColor);
}
.ourArticlesSection .articlesHeading .articlesCategoryTabs {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.ourArticlesSection .articlesHeading .articlesCategoryTab {
  color: var(--whiteColor);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 14px;
  line-height: 1.2;
  transition: var(--transition);
}
.ourArticlesSection .articlesHeading .articlesCategoryTab:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.14);
}
.ourArticlesSection .articlesHeading .articlesCategoryTab.active {
  border-color: transparent;
  background: var(--mainColor);
  color: #0f1419;
  font-family: "fontBold", sans-serif;
}
.ourArticlesSection .articlesHeading p {
  color: var(--lightGrayColor);
  width: min(100%, 720px);
}
.ourArticlesSection .articlesCategoryPane {
  display: none;
}
.ourArticlesSection .articlesCategoryPane.active {
  display: block;
}
.ourArticlesSection .articlesPanel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: clamp(14px, 2vw, 24px);
  min-height: clamp(500px, 72vh, 760px);
  align-items: center;
}
.ourArticlesSection .articlesList {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 45vh;
  max-height: 45vh;
  overflow: auto;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42), inset 0 0 24px rgba(255, 255, 255, 0.14);
  scrollbar-width: thin;
  scrollbar-color: rgba(181, 174, 74, 0.85) rgba(255, 255, 255, 0.14);
}
.ourArticlesSection .articlesList::-webkit-scrollbar {
  width: 8px;
}
.ourArticlesSection .articlesList::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}
.ourArticlesSection .articlesList::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, rgba(181, 174, 74, 0.95), rgba(126, 163, 91, 0.95));
}
.ourArticlesSection .articlesList::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgb(212, 199, 95), rgb(138, 181, 99));
}
.ourArticlesSection .articlesList .articleTab {
  width: 100%;
  text-align: right;
  color: var(--whiteColor);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  line-height: 1.45;
  font-size: 15px;
  transition: var(--transition);
}
.ourArticlesSection .articlesList .articleTab:hover {
  border-color: var(--whiteColor);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}
.ourArticlesSection .articlesList .articleTab.active {
  border-color: #ffffff;
  background: var(--mainColor);
  box-shadow: 0 10px 24px rgba(43, 43, 43, 0.48);
}
.ourArticlesSection .articleViewer {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.ourArticlesSection .articleViewer .articleViewerHead {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.ourArticlesSection .articleViewer .articleViewerHead h2 {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 28px);
  color: var(--whiteColor);
  font-family: "fontBold", sans-serif;
}
.ourArticlesSection .articleViewer .articleViewerHead .downloadPdf {
  font-size: 13px;
  color: var(--whiteColor);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.08);
}
.ourArticlesSection .articleViewer .articleViewerHead .downloadPdf:hover {
  color: var(--darkColor);
  background: var(--mainColor);
  border-color: var(--mainColor);
}
.ourArticlesSection .articleViewer .pdfFrameWrap {
  flex: 1;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.34);
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.4);
}
.ourArticlesSection .articleViewer .pdfFrameWrap iframe {
  width: 100%;
  height: 100%;
  min-height: clamp(380px, 60vh, 670px);
  border: none;
  background: #f2f2f2;
}
@media (max-width: 991px) {
  .ourArticlesSection .articlesPanel {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .ourArticlesSection .articlesList {
    height: auto;
    max-height: clamp(220px, 32vh, 320px);
  }
}
@media (max-width: 767px) {
  .ourArticlesSection {
    padding-bottom: 70px;
  }
  .ourArticlesSection .articlesPanel {
    border-radius: 24px;
    padding: 12px;
    gap: 12px;
  }
  .ourArticlesSection .articlesHeading {
    margin-bottom: 16px;
    align-items: flex-start;
  }
  .ourArticlesSection .articlesHeading h1 {
    font-size: clamp(28px, 8vw, 34px);
  }
  .ourArticlesSection .articlesHeading .articlesCategoryTabs {
    width: 100%;
    border-radius: 18px;
  }
  .ourArticlesSection .articlesHeading .articlesCategoryTab {
    flex: 1 1 calc(50% - 5px);
    min-width: 140px;
    text-align: center;
  }
  .ourArticlesSection .articlesList {
    padding: 12px;
    border-radius: 16px;
  }
  .ourArticlesSection .articlesList .articleTab {
    font-size: 14px;
    padding: 11px 13px;
  }
  .ourArticlesSection .articleViewer .articleViewerHead {
    flex-direction: column;
    align-items: flex-start;
  }
  .ourArticlesSection .articleViewer .pdfFrameWrap iframe {
    min-height: 56vh;
  }
}
@media (max-width: 480px) {
  .ourArticlesSection .articlesList {
    max-height: 260px;
  }
}

.ourPodcastSection {
  padding: 60px 0 90px;
}
.ourPodcastSection .tharra-wrap .cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.ourPodcastSection .tharra-wrap .cards-grid .pod-card {
  position: relative;
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.ourPodcastSection .tharra-wrap .cards-grid .pod-card:hover {
  transform: translateY(-4px);
  border-color: rgba(181, 174, 74, 0.3333333333);
  box-shadow: 0 12px 40px rgba(181, 174, 74, 0.15);
}
.ourPodcastSection .tharra-wrap .cards-grid .pod-card:hover .card-actions {
  opacity: 1;
  transform: translateY(0);
}
.ourPodcastSection .tharra-wrap .cards-grid .pod-card:hover .card-thumb img {
  transform: scale(1.05);
}
.ourPodcastSection .tharra-wrap .cards-grid .pod-card .card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #2a2a2a;
}
.ourPodcastSection .tharra-wrap .cards-grid .pod-card .card-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.ourPodcastSection .tharra-wrap .cards-grid .pod-card .card-thumb .ep-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(181, 174, 74, 0.9);
  color: #191919;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.ourPodcastSection .tharra-wrap .cards-grid .pod-card .card-actions {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(25, 25, 25, 0.7);
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.ourPodcastSection .tharra-wrap .cards-grid .pod-card .card-actions .action-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  color: #fff;
}
.ourPodcastSection .tharra-wrap .cards-grid .pod-card .card-actions .action-btn svg,
.ourPodcastSection .tharra-wrap .cards-grid .pod-card .card-actions .action-btn img {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.ourPodcastSection .tharra-wrap .cards-grid .pod-card .card-actions .action-btn:hover {
  background: var(--mainColor);
  border-color: var(--mainColor);
  transform: scale(1.1);
}
.ourPodcastSection .tharra-wrap .cards-grid .pod-card .card-actions .action-btn.open-btn {
  background: var(--mainColor);
  border-color: var(--mainColor);
  color: #191919;
}
.ourPodcastSection .tharra-wrap .cards-grid .pod-card .card-actions .action-btn.open-btn:hover {
  background: #d4cc55;
}
.ourPodcastSection .tharra-wrap .cards-grid .pod-card .card-body {
  padding: 14px 16px 16px;
}
.ourPodcastSection .tharra-wrap .cards-grid .pod-card .card-body .card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.ourPodcastSection .tharra-wrap .cards-grid .pod-card .card-body .card-meta .avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(181, 174, 74, 0.2);
  border: 1.5px solid rgba(181, 174, 74, 0.3333333333);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #b5ae4a;
  flex-shrink: 0;
}
.ourPodcastSection .tharra-wrap .cards-grid .pod-card .card-body .card-meta .guest-name {
  font-size: 12px;
  color: #b5ae4a;
  font-weight: 500;
}
.ourPodcastSection .tharra-wrap .cards-grid .pod-card .card-body .card-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #555;
  flex-shrink: 0;
}
.ourPodcastSection .tharra-wrap .cards-grid .pod-card .card-body .card-meta .duration {
  font-size: 11px;
  color: #666;
  margin-right: auto;
}
.ourPodcastSection .tharra-wrap .cards-grid .pod-card .card-body .card-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ourPodcastSection .tharra-wrap .cards-grid .pod-card .card-body .card-desc {
  font-size: 12px;
  color: #777;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ourPodcastSection .tharra-wrap .cards-grid .pod-card .card-body .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #2a2a2a;
}
.ourPodcastSection .tharra-wrap .cards-grid .pod-card .card-body .card-footer .time {
  font-size: 12px;
  color: #666;
}
.ourPodcastSection .tharra-wrap .cards-grid .pod-card .card-body .card-footer .tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.ourPodcastSection .tharra-wrap .cards-grid .pod-card .card-body .card-footer .tags .tag {
  font-size: 10px;
  color: #888;
  background: #242424;
  border: 1px solid #333;
  padding: 2px 8px;
  border-radius: 999px;
}
.ourPodcastSection .tharra-wrap .cards-grid .pod-card .card-body .card-footer .play-mini {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(181, 174, 74, 0.1333333333);
  border: 1px solid rgba(181, 174, 74, 0.3333333333);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.ourPodcastSection .tharra-wrap .cards-grid .pod-card .card-body .card-footer .play-mini svg {
  width: 12px;
  height: 12px;
  fill: #b5ae4a;
  margin-right: -1px;
}
.ourPodcastSection .tharra-wrap .cards-grid .pod-card .card-body .card-footer .play-mini:hover {
  background: rgba(181, 174, 74, 0.2666666667);
}
.ourPodcastSection {
  /* ===== MODAL ===== */
}
.ourPodcastSection .podcast-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  pointer-events: none;
  transition: background 0.35s ease;
  padding: 1rem;
}
.ourPodcastSection .podcast-modal.active {
  pointer-events: all;
  background: rgba(0, 0, 0, 0.85);
}
.ourPodcastSection .podcast-modal.active .modal-box {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.ourPodcastSection .podcast-modal .modal-box {
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition: opacity 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ourPodcastSection .podcast-modal .modal-box .modal-hero {
  position: relative;
  aspect-ratio: 16/9;
  background: #222;
  border-radius: 20px 20px 0 0;
}
.ourPodcastSection .podcast-modal .modal-box .modal-hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ourPodcastSection .podcast-modal .modal-box .modal-hero .sessionImagesSlider {
  width: 100%;
  height: 100%;
  position: static;
}
.ourPodcastSection .podcast-modal .modal-box .modal-hero .sessionImagesSlider .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.ourPodcastSection .podcast-modal .modal-box .modal-hero .sessionImagesSlider .swiper-slide {
  width: 100%;
  height: 100%;
}
.ourPodcastSection .podcast-modal .modal-box .modal-hero .sessionImagesSlider .swiper-slide a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ourPodcastSection .podcast-modal .modal-box .modal-hero .sessionImagesSlider .swiper-slide a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.ourPodcastSection .podcast-modal .modal-box .modal-hero .sessionImagesSlider .swiper-slide a:hover img {
  transform: scale(1.05);
}
.ourPodcastSection .podcast-modal .modal-box .modal-hero .sessionImagesSlider .swiper-button-prev,
.ourPodcastSection .podcast-modal .modal-box .modal-hero .sessionImagesSlider .swiper-button-next {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(181, 174, 74, 0.8);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ourPodcastSection .podcast-modal .modal-box .modal-hero .sessionImagesSlider .swiper-button-prev::after,
.ourPodcastSection .podcast-modal .modal-box .modal-hero .sessionImagesSlider .swiper-button-next::after {
  font-size: 18px;
  color: #191919;
  font-weight: bold;
}
.ourPodcastSection .podcast-modal .modal-box .modal-hero .sessionImagesSlider .swiper-button-prev:hover,
.ourPodcastSection .podcast-modal .modal-box .modal-hero .sessionImagesSlider .swiper-button-next:hover {
  background: #b5ae4a;
  transform: translateY(-50%) scale(1.1);
}
.ourPodcastSection .podcast-modal .modal-box .modal-hero .sessionImagesSlider .swiper-button-prev:disabled,
.ourPodcastSection .podcast-modal .modal-box .modal-hero .sessionImagesSlider .swiper-button-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ourPodcastSection .podcast-modal .modal-box .modal-hero .sessionImagesSlider .swiper-button-prev {
  right: auto;
  left: 12px;
}
.ourPodcastSection .podcast-modal .modal-box .modal-hero .sessionImagesSlider .swiper-button-next {
  left: auto;
  right: 12px;
}
.ourPodcastSection .podcast-modal .modal-box .modal-hero .modal-close {
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 20;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--mainColor);
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}
.ourPodcastSection .podcast-modal .modal-box .modal-hero .modal-close svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
}
.ourPodcastSection .podcast-modal .modal-box .modal-hero .modal-close:hover {
  background: #d4cc55;
  transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  .ourPodcastSection .podcast-modal .modal-box .modal-hero .modal-close {
    top: 8px;
    left: 8px;
  }
}
.ourPodcastSection .podcast-modal .modal-box .modal-hero .modal-ep {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(181, 174, 74, 0.9);
  color: #191919;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  z-index: 11;
}
.ourPodcastSection .podcast-modal .modal-box .modal-hero .modal-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
.ourPodcastSection .podcast-modal .modal-box .modal-hero .modal-play-overlay .modal-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(181, 174, 74, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 0 30px rgba(181, 174, 74, 0.4);
}
.ourPodcastSection .podcast-modal .modal-box .modal-hero .modal-play-overlay .modal-play-btn svg,
.ourPodcastSection .podcast-modal .modal-box .modal-hero .modal-play-overlay .modal-play-btn img {
  width: 22px;
  height: 22px;
  fill: #191919;
  margin-right: -2px;
}
.ourPodcastSection .podcast-modal .modal-box .modal-hero .modal-play-overlay .modal-play-btn:hover {
  transform: scale(1.1);
  background: #b5ae4a;
}
.ourPodcastSection .podcast-modal .modal-box .modal-body {
  padding: 20px 22px 24px;
}
.ourPodcastSection .podcast-modal .modal-box .modal-body .modal-guest-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.ourPodcastSection .podcast-modal .modal-box .modal-body .modal-guest-row .modal-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(181, 174, 74, 0.1333333333);
  border: 2px solid rgba(181, 174, 74, 0.3333333333);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #b5ae4a;
  flex-shrink: 0;
}
.ourPodcastSection .podcast-modal .modal-box .modal-body .modal-guest-row .modal-guest-info .label {
  font-size: 11px;
  color: #666;
}
.ourPodcastSection .podcast-modal .modal-box .modal-body .modal-guest-row .modal-guest-info .name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.ourPodcastSection .podcast-modal .modal-box .modal-body .modal-guest-row .modal-duration {
  margin-right: auto;
  font-size: 12px;
  color: #666;
  background: #242424;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #333;
}
.ourPodcastSection .podcast-modal .modal-box .modal-body .modal-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 10px;
}
.ourPodcastSection .podcast-modal .modal-box .modal-body .modal-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.8;
  margin-bottom: 18px;
}
.ourPodcastSection .podcast-modal .modal-box .modal-body .modal-topics {
  margin-bottom: 20px;
}
.ourPodcastSection .podcast-modal .modal-box .modal-body .modal-topics .topics-label {
  font-size: 11px;
  color: #666;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ourPodcastSection .podcast-modal .modal-box .modal-body .modal-topics .topics-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ourPodcastSection .podcast-modal .modal-box .modal-body .modal-topics .topics-list .topic-tag {
  font-size: 12px;
  color: #b5ae4a;
  background: rgba(181, 174, 74, 0.0666666667);
  border: 1px solid rgba(181, 174, 74, 0.2);
  padding: 4px 12px;
  border-radius: 999px;
}
.ourPodcastSection .podcast-modal .modal-box .modal-body .modal-actions {
  display: flex;
  gap: 10px;
}
.ourPodcastSection .podcast-modal .modal-box .modal-body .modal-actions .modal-identity-btn {
  flex: 1;
  min-height: 44px;
  justify-content: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}
.ourPodcastSection .podcast-modal .modal-box .modal-body .modal-actions .modal-identity-btn span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-family: "Tajawal", sans-serif;
  font-weight: 700;
}
.ourPodcastSection .podcast-modal .modal-box .modal-body .modal-actions .modal-identity-btn svg,
.ourPodcastSection .podcast-modal .modal-box .modal-body .modal-actions .modal-identity-btn img {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.ourPodcastSection .podcast-modal .modal-box .modal-body .modal-actions .modal-identity-btn.modal-solid {
  color: #191919;
}
.ourPodcastSection .podcast-modal .modal-box .modal-body .modal-actions .modal-identity-btn.modal-solid::after {
  opacity: 0;
}
.ourPodcastSection .podcast-modal .modal-box .modal-body .modal-actions .modal-identity-btn.modal-outline {
  color: #fff;
}
.ourPodcastSection .podcast-modal .modal-box .modal-body .modal-actions .modal-identity-btn.modal-outline:hover::after {
  opacity: 1;
}
.ourPodcastSection .podcast-modal .modal-box .modal-body .modal-actions .btn-primary-gold {
  flex: 1;
  height: 44px;
  background: linear-gradient(135deg, #b5ae4a, #d4cc55);
  color: #191919;
  font-family: "Tajawal", sans-serif;
  font-size: 13px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
}
.ourPodcastSection .podcast-modal .modal-box .modal-body .modal-actions .btn-primary-gold svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.ourPodcastSection .podcast-modal .modal-box .modal-body .modal-actions .btn-primary-gold:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.ourPodcastSection .podcast-modal .modal-box .modal-body .modal-actions .btn-outline-gold {
  height: 44px;
  padding: 0 18px;
  background: transparent;
  color: #b5ae4a;
  font-family: "Tajawal", sans-serif;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(181, 174, 74, 0.3333333333);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, border-color 0.2s;
}
.ourPodcastSection .podcast-modal .modal-box .modal-body .modal-actions .btn-outline-gold svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.ourPodcastSection .podcast-modal .modal-box .modal-body .modal-actions .btn-outline-gold:hover {
  background: rgba(181, 174, 74, 0.0666666667);
  border-color: #b5ae4a;
}

.eventSection {
  padding: 64px 0;
  background-color: var(--darkColor);
}
.eventSection .title {
  font-weight: bold;
  color: var(--mainColor);
  text-transform: uppercase;
  font-family: fontBold;
  font-size: 40px;
  line-height: 40px;
}
.eventSection .sectionTitle {
  font-style: italic;
  font-weight: bold;
  color: var(--lightGrayColor);
  font-family: fontBold;
}
.eventSection .subTitle {
  color: var(--lightGrayColor);
}
.eventSection .row:nth-child(2n) {
  flex-direction: row-reverse;
}
.eventSection .info {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 14px;
}
@media (max-width: 768px) {
  .eventSection .info {
    padding: 48px 16px;
  }
}
.eventSection .info .des {
  color: var(--grayColor);
}
.eventSection .info ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.eventSection .info ul li {
  padding: 4px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eventSection .info ul li::before {
  content: "";
  background-image: url(../img/icons/check.svg);
  width: 16px;
  height: 16px;
  background-size: contain;
}
.eventSection .lazyImg {
  position: relative;
  height: 100%;
}
.eventSection .lazyImg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  border: 10px solid;
  border-image-slice: 1;
  border-image-source: var(--linearGradient);
  width: 100%;
  height: 90%;
  transform: translateY(-50%);
}
.eventSection .lazyImg .eventBadge {
  position: absolute;
  top: 20px;
  right: -24px;
  background: var(--mainColor);
  padding: 8px 20px;
  border-radius: 4px;
  border-bottom-right-radius: 0;
  color: var(--whiteColor);
  font-family: "fontBold";
  font-size: 14px;
  font-weight: bold;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(181, 174, 74, 0.3);
  white-space: nowrap;
  animation: animateBg 5s linear infinite;
  background-size: 400%;
}
.eventSection .lazyImg .eventBadge::before {
  content: "";
  position: absolute;
  height: 1.5rem;
  width: 1.5rem;
  right: 0;
  top: 100%;
  background: linear-gradient(135deg, rgba(181, 174, 74, 0.6) 0%, rgba(75, 88, 97, 0.6) 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.eventSection .lazyImg .lazyDiv {
  height: 100%;
  margin: auto;
  filter: grayscale(1);
  transition: var(--transition);
}
.eventSection .lazyImg .lazyDiv .simpleParallax {
  height: 100%;
}
.eventSection .lazyImg .lazyDiv img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  height: 85%;
  -o-object-position: top;
     object-position: top;
}
.eventSection .lazyImg .lazyDiv:hover {
  filter: grayscale(0);
}
.eventSection .statistic {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}
.eventSection .statistic .counterUp {
  font-weight: bold;
  font-size: 100px;
  background: rgba(167, 169, 172, 0.062745098);
  background-size: contain;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-stroke: 1px #a7a9ac;
  font-family: "Manrope Alt", Sans-serif;
}
@media (max-width: 768px) {
  .eventSection .statistic .counterUp {
    font-size: 70px;
  }
}
.eventSection .statistic h6 {
  font-weight: bold;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  max-height: 100px;
  text-align: center;
  transform: scaleX(-1) scaleY(-1);
}
.eventSection {
  /* Event Modal Animations */
}
@keyframes fadeIn {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(5px);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    backdrop-filter: blur(5px);
  }
  to {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
}
@keyframes boxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.eventSection {
  /* Event Modal Styles */
}
.eventSection .event-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.eventSection .event-modal-overlay.active {
  display: flex;
  animation: fadeIn 0.4s ease-out forwards;
}
.eventSection .event-modal-overlay.closing {
  animation: fadeOut 0.3s ease-in forwards;
}
.eventSection .event-modal-box {
  position: relative;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  padding: 40px;
  border-radius: 16px;
  overflow-y: auto;
  background: linear-gradient(180deg, rgb(0, 0, 0), rgba(36, 36, 36, 0.08));
  box-shadow: 0 1px 8px rgb(65, 65, 65), inset 0 0 18px rgba(68, 68, 68, 0.18);
  backdrop-filter: blur(14px);
  animation: boxFadeIn 0.5s ease-out;
}
.eventSection .event-modal-box .event-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b5ae4a;
  transition: all 0.3s ease;
}
.eventSection .event-modal-box .event-modal-close:hover {
  transform: rotate(90deg);
}
.eventSection .event-modal-box .event-modal-close svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
}
.eventSection .event-modal-header {
  text-align: center;
  margin-bottom: 30px;
}
.eventSection .event-modal-header .event-modal-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  animation: bounce 2s infinite;
}
.eventSection .event-modal-header h2 {
  position: relative;
  z-index: 2;
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 700;
  /* color: #b5ae4a; */
}
.eventSection .event-modal-header p {
  margin-bottom: 0;
  font-size: 14px;
  color: #808080;
}
.eventSection .event-modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.eventSection .form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
@media (max-width: 600px) {
  .eventSection .form-group-row {
    grid-template-columns: 1fr;
  }
  .eventSection .event-modal-box {
    padding: 25px;
  }
}
.eventSection .inputfield {
  position: relative;
  display: flex;
  flex-direction: column;
}
.eventSection .inputfield label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: capitalize;
}
.eventSection .inputfield input,
.eventSection .inputfield textarea,
.eventSection .inputfield select {
  width: 100%;
  padding: 12px 15px;
  border: 0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.09);
  color: #e0e0e0;
}
.eventSection .inputfield input::-moz-placeholder, .eventSection .inputfield textarea::-moz-placeholder, .eventSection .inputfield select::-moz-placeholder {
  color: #808080;
}
.eventSection .inputfield input::placeholder,
.eventSection .inputfield textarea::placeholder,
.eventSection .inputfield select::placeholder {
  color: #808080;
}
.eventSection .inputfield input:focus,
.eventSection .inputfield textarea:focus,
.eventSection .inputfield select:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 3px rgba(181, 174, 74, 0.15);
}
.eventSection .inputfield select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 40px;
  padding-left: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath fill='%23b5ae4a' d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 12px center;
}
.eventSection .inputfield textarea {
  resize: vertical;
  min-height: 100px;
}
.eventSection .select-field select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 40px;
  padding-left: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath fill='%23b5ae4a' d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 12px center;
  background-size: 14px;
}

/* Custom Select Dropdown */
.custom-select {
  position: relative;
}
.custom-select .custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 15px;
  border: 0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.09);
  color: #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.custom-select .custom-select-trigger:hover {
  background: rgba(255, 255, 255, 0.12);
}
.custom-select .custom-select-trigger.active {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 8px 8px 0 0;
  /* box-shadow: 0 0 0 3px rgba(181, 174, 74, 0.15); */
}
.custom-select .custom-select-trigger .arrow-icon {
  width: 14px;
  height: 8px;
  fill: none;
  stroke: #b5ae4a;
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform 0.3s ease;
}
.custom-select .custom-select-trigger .arrow-icon.open {
  transform: rotate(180deg);
}
.custom-select .custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(40, 40, 40, 0.95);
  border-radius: 0 0 8px 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.custom-select .custom-options.open {
  max-height: 200px;
  overflow-y: auto;
}
.custom-select .custom-options .custom-option {
  padding: 12px 15px;
  color: #e0e0e0;
  cursor: pointer;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}
.custom-select .custom-options .custom-option:hover {
  background: rgba(181, 174, 74, 0.15);
  color: #b5ae4a;
  border-left-color: #b5ae4a;
  padding-left: 18px;
}
.custom-select .custom-options .custom-option.selected {
  background: rgba(181, 174, 74, 0.2);
  color: #b5ae4a;
  border-left-color: #b5ae4a;
  font-weight: 500;
}

.downloadProfile {
  display: inline-flex;
  padding: 12px;
  padding-right: 52px;
  padding-left: 24px;
  height: 48px;
  border-radius: 100px;
  transition: var(--transition);
}
.downloadProfile::after {
  border-radius: 100px;
}
.downloadProfile {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  transition: var(--transition);
}
.downloadProfile .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding: 12px;
  background-color: var(--whiteColor);
  transition: var(--transition);
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  z-index: 4;
}
.downloadProfile .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transform: scaleX(-1);
}
.downloadProfile .text {
  color: var(--whiteColor);
  text-transform: capitalize;
}
.downloadProfile:hover {
  padding-left: 52px;
  padding-right: 24px;
  transition: var(--transition);
}
.downloadProfile:hover .icon {
  right: calc(100% - 44px);
}

.socialMedia {
  display: flex;
  justify-content: end;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: auto;
  padding: 8px;
}
.socialMedia a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--grayColor);
  color: var(--grayColor);
  border-radius: 100px;
  transition: var(--transition);
}
.socialMedia a img {
  transition: var(--transition);
  filter: contrast(0.4);
}
.socialMedia a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
  border: 1px solid var(--mainColor);
  transform: translateY(-4px);
  box-shadow: 0px 4px rgba(0, 0, 0, 0.1882352941);
}
.socialMedia a:hover img {
  filter: contrast(1) brightness(0) invert(1);
}

.vision {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--darkColor) 0%, rgba(75, 88, 97, 0.1) 100%);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .vision {
    padding: 60px 0;
  }
}
.vision::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(181, 174, 74, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}
.vision::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(75, 88, 97, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}
.vision .container {
  position: relative;
  z-index: 2;
}
.vision .group {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  transition: all var(--transition) ease-in-out;
  position: relative;
}
@media screen and (max-width: 768px) {
  .vision .group {
    padding: 28px;
    box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.1);
  }
}
.vision .group:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(181, 174, 74, 0.3);
  box-shadow: 0 12px 40px 0 rgba(181, 174, 74, 0.15);
  transform: translateY(-5px);
}
.vision .group:hover .groupIcon {
  transform: scale(1.1) rotate(5deg);
  color: var(--mainColor);
}
.vision .groupIcon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(181, 174, 74, 0.1) 0%, rgba(181, 174, 74, 0.05) 100%);
  border: 1px solid rgba(181, 174, 74, 0.2);
  border-radius: 16px;
  color: var(--mainColor);
  font-size: 28px;
  transition: all var(--transition);
}
.vision .groupIcon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.vision .groupIcon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}
.vision .title {
  font-weight: bold;
  font-family: "fontBold", sans-serif !important;
  font-size: 28px;
  line-height: 32px;
  background: linear-gradient(135deg, var(--mainColor) 0%, rgba(181, 174, 74, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}
.vision .des {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}
.vision .des:hover {
  color: rgba(255, 255, 255, 0.85);
}
.vision .aboutDharra {
  background: linear-gradient(135deg, rgba(181, 174, 74, 0.08) 0%, rgba(75, 88, 97, 0.08) 100%);
  border: 1px solid rgba(181, 174, 74, 0.2);
}
.vision .aboutDharra:hover {
  background: linear-gradient(135deg, rgba(181, 174, 74, 0.12) 0%, rgba(75, 88, 97, 0.12) 100%);
  border-color: rgba(181, 174, 74, 0.4);
}
.vision .aboutDharra .groupIcon {
  width: 80px;
  height: 80px;
  animation: spinSlow 12s linear infinite;
}
.vision .visionGroup:hover .groupIcon {
  background: linear-gradient(135deg, rgba(181, 174, 74, 0.15) 0%, rgba(181, 174, 74, 0.08) 100%);
  border-color: rgba(181, 174, 74, 0.4);
}
.vision .missionGroup:hover .groupIcon {
  background: linear-gradient(135deg, rgba(40, 40, 40, 0.15) 0%, rgba(181, 174, 74, 0.08) 100%);
  border-color: rgba(181, 174, 74, 0.4);
}

.aboutUs {
  position: relative;
  padding: 50px 0 110px;
}
.aboutUs .aboutTitle {
  margin-top: 16px;
  margin-bottom: 20px;
  font-family: "fontBold", sans-serif;
  font-size: 40px;
  line-height: 1.3;
  color: var(--mainColor);
}
.aboutUs .aboutTabs {
  --glider-x: 0px;
  --glider-w: 120px;
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  position: relative;
  list-style: none;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  padding: 4px;
  margin-bottom: 22px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  box-shadow: inset 1px 1px 4px rgba(255, 255, 255, 0.2), inset -1px -1px 6px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.16);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}
.aboutUs .aboutTabs::-webkit-scrollbar {
  display: none;
}
.aboutUs .aboutTabs::after {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: var(--glider-w);
  border-radius: 50px;
  transform: translateX(var(--glider-x));
  background: linear-gradient(135deg, rgba(181, 174, 74, 0.55) 0%, #b5ae4a 62%, #d8cf62 100%);
  box-shadow: 0 0 16px rgba(181, 174, 74, 0.45), 0 0 9px rgba(255, 239, 172, 0.28) inset;
  transition: transform 0.45s cubic-bezier(0.37, 1.95, 0.66, 0.95), width 0.3s ease;
  z-index: 1;
}
.aboutUs .aboutTabs .nav-item {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}
.aboutUs .aboutTabs .nav-link {
  border: 0;
  border-radius: 14px;
  padding: 11px 20px;
  min-width: 96px;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  font-size: 14px;
  font-family: "fontBold", sans-serif;
  letter-spacing: 0.2px;
  transition: color var(--transition);
}
.aboutUs .aboutTabs .nav-link:hover {
  color: #ffffff;
}
.aboutUs .aboutTabs .nav-link.active {
  color: #191919;
  background: transparent;
}
.aboutUs .aboutTabs .nav-link:focus-visible {
  box-shadow: none;
}
.aboutUs .aboutTabs .show > .nav-link {
  color: #191919;
  background: transparent;
}
.aboutUs .aboutTabContent h3 {
  font-family: "fontBold", sans-serif;
  font-size: clamp(22px, 2.3vw, 30px);
  margin-bottom: 12px;
}
.aboutUs .aboutTabContent p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.95;
}
.aboutUs .aboutGoals {
  display: grid;
  gap: 10px;
}
.aboutUs .aboutGoals li {
  display: flex;
  gap: 12px;
}
.aboutUs .aboutMedia {
  position: relative;
  height: clamp(320px, 38vw, 500px);
  border-radius: 24px;
}
.aboutUs .aboutMedia img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 991px) {
  .aboutUs .aboutUsPanel {
    border-radius: 22px;
  }
  .aboutUs .aboutTitle {
    font-size: clamp(28px, 7vw, 42px);
  }
  .aboutUs .aboutMedia {
    height: clamp(280px, 55vw, 420px);
  }
}
@media screen and (max-width: 575px) {
  .aboutUs {
    padding: 62px 0;
  }
  .aboutUs .aboutUsPanel {
    padding: 14px;
    border-radius: 18px;
  }
  .aboutUs .aboutTabs {
    width: 100%;
  }
  .aboutUs .aboutTabs .nav-item {
    flex: 1 1 auto;
  }
  .aboutUs .aboutTabs .nav-link {
    min-width: 0;
    padding: 10px 12px;
    font-size: 13px;
  }
  .aboutUs .aboutTabContent {
    border-radius: 16px;
    padding: 16px;
  }
  .aboutUs .aboutTabContent p {
    font-size: 14px;
  }
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
  margin: auto;
  position: relative;
  isolation: isolate;
}
.gallery::before, .gallery::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  z-index: 3;
  pointer-events: none;
  height: clamp(110px, 22vh, 260px);
}
.gallery::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.82) 30%, rgba(0, 0, 0, 0.52) 65%, rgba(0, 0, 0, 0) 100%);
}
.gallery::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.82) 30%, rgba(0, 0, 0, 0.52) 65%, rgba(0, 0, 0, 0) 100%);
}
.gallery__strip {
  min-height: 100vh;
}
.gallery__strip__wrapper {
  flex: 0 0 100%;
  justify-content: flex-end;
  background: black;
  border-right: 2px solid #333;
  position: relative;
}

@media (min-width: 500px) {
  .gallery__strip__wrapper {
    flex: 0 0 50%;
  }
}
@media (min-width: 950px) {
  .gallery {
    height: 100vh;
  }
  .gallery__strip.one {
    animation: 60s move-it ease alternate infinite 5s;
    transform: translateY(2%);
  }
  .gallery__strip.three {
    animation: 65s move-it ease alternate infinite 6s;
    transform: translateY(2%);
  }
  .gallery__strip.two {
    animation: 58s move-it-2 ease alternate infinite 5s;
    transform: translateY(-50%);
  }
  .gallery__strip.four {
    animation: 65s move-it-2 ease alternate infinite 5.5s;
    transform: translateY(-50%);
  }
  .gallery__strip:hover {
    animation-play-state: paused;
  }
  .gallery__strip__wrapper {
    flex: 0 0 25%;
  }
}
.photo {
  position: relative;
  text-align: right;
  padding-bottom: 3rem;
  transition: var(--transition);
}
.photo:hover {
  filter: grayscale(0);
}
.photo__image img {
  width: 90%;
  transform: translateX(-30%);
  transition: 1s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
}
.photo__name {
  text-transform: uppercase;
  font-size: 40px;
  letter-spacing: 2px;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--mainColor);
  margin-top: -35px;
  padding-right: 80px;
  transition: 0.4s ease-in-out 0.4s;
  position: relative;
  width: 100%;
  opacity: 0;
}
.photo:hover .photo__image img {
  transform: translateX(-5%);
}
.photo:hover .photo__name {
  color: var(--mainColor);
}

@keyframes move-it {
  0%, 90%, 100% {
    transform: translateY(2%);
  }
  45% {
    transform: translateY(-50%);
  }
}
@keyframes move-it-2 {
  0%, 90%, 100% {
    transform: translateY(-50%);
  }
  45% {
    transform: translateY(5%);
  }
}
.scrollDown {
  width: 25px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  position: relative;
  margin: 50px auto 0;
  transition: var(--transition);
  display: flex;
}
@media (max-width: 768px) {
  .scrollDown {
    margin: 30px auto 0;
  }
}
.scrollDown .mouse {
  width: 12px;
  height: 12px;
  background: var(--whiteColor);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDown linear 2s infinite;
  transition: var(--transition);
}

@keyframes scrollDown {
  0% {
    transform: translate(-50%, 0px);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, 16px);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 32px);
    opacity: 0;
  }
}
.swiperControl {
  position: relative;
  bottom: unset;
  right: unset;
  display: flex;
  gap: 24px;
  align-items: center;
}
.swiperControl .swiperBtns {
  display: flex;
  gap: 8px;
}
.swiperControl .swiperBtns .swiper-button-next,
.swiperControl .swiperBtns .swiper-button-prev {
  position: relative;
  left: unset;
  right: unset;
  top: unset;
  bottom: unset;
  margin: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mainColor);
  width: 40px;
  height: 40px;
  border: 1px solid var(--mainColor);
  border-radius: 100%;
  transition: var(--transition);
  opacity: 0.8;
}
.swiperControl .swiperBtns .swiper-button-next::after,
.swiperControl .swiperBtns .swiper-button-prev::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-image: url("../img/icons/left.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: var(--transition);
  filter: brightness(0) invert(1);
  transform: scaleX(-1);
}
@media (max-width: 768px) {
  .swiperControl .swiperBtns .swiper-button-next::after,
  .swiperControl .swiperBtns .swiper-button-prev::after {
    font-size: 24px;
  }
}
.swiperControl .swiperBtns .swiper-button-next:hover,
.swiperControl .swiperBtns .swiper-button-prev:hover {
  opacity: 1;
  background-color: var(--mainColor);
  color: var(--mainColor);
}
.swiperControl .swiperBtns .swiper-button-next:hover::after,
.swiperControl .swiperBtns .swiper-button-prev:hover::after {
  filter: brightness(0) invert(1);
}
.swiperControl .swiperBtns .swiper-button-next.swiper-button-disabled,
.swiperControl .swiperBtns .swiper-button-prev.swiper-button-disabled {
  opacity: 0.2;
}
.swiperControl .swiperBtns .swiper-button-next {
  left: unset;
}
.swiperControl .swiperBtns .swiper-button-next::after {
  transform: unset;
}
.swiperControl .swiper-pagination {
  --bulletAtomColor: var(--mainColor);
  position: relative;
  min-height: 16px;
  left: unset;
  right: unset;
  top: unset;
  bottom: unset;
  margin: unset;
  display: flex;
  justify-content: end;
  align-items: center;
}
.swiperControl .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 14px;
  height: 14px;
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--bulletAtomColor) 50%, transparent);
  opacity: 0.75;
  transition: var(--transition);
  border-radius: 50%;
}
.swiperControl .swiper-pagination .swiper-pagination-bullet::before, .swiperControl .swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: var(--transition);
}
.swiperControl .swiper-pagination .swiper-pagination-bullet::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--bulletAtomColor);
  box-shadow: 0 0 8px color-mix(in srgb, var(--bulletAtomColor) 65%, transparent);
}
.swiperControl .swiper-pagination .swiper-pagination-bullet::after {
  width: 11px;
  height: 5px;
  border: 1px solid color-mix(in srgb, var(--bulletAtomColor) 70%, transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(24deg);
}
.swiperControl .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.18);
  border-color: color-mix(in srgb, var(--bulletAtomColor) 85%, transparent);
  box-shadow: 0 0 14px color-mix(in srgb, var(--bulletAtomColor) 45%, transparent);
}
.swiperControl .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  width: 5px;
  height: 5px;
  box-shadow: 0 0 10px color-mix(in srgb, var(--bulletAtomColor) 85%, transparent);
}
.swiperControl .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  width: 13px;
  height: 6px;
  border-color: var(--bulletAtomColor);
  transform: translate(-50%, -50%) rotate(64deg) scaleX(1.12);
}

footer {
  background: url(./../img/shadow.png);
  background-position: bottom center;
  position: relative;
  z-index: 2;
  padding: 40px 0;
  color: var(--whiteColor);
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--mainColor20);
  z-index: -1;
}
footer .logo {
  width: 120px;
}
footer .logo img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
  max-height: 40px;
  filter: brightness(0) invert(1);
}
footer .title {
  font-weight: bold;
}
footer .part {
  display: flex;
  gap: 12px;
  align-items: center;
}
footer .part img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
  max-height: 40px;
  filter: brightness(0) invert(1);
}
footer .link {
  display: flex;
  align-items: center;
  gap: 8px;
}
footer .link path,
footer .link svg {
  fill: var(--whiteColor);
}
footer .link .icon {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid var(--whiteColor);
}
footer .link .icon svg {
  width: 16px;
  height: 16px;
}
footer .link a,
footer .link p {
  display: flex;
  flex-direction: column;
  gap: 0px;
  color: var(--whiteColor);
  transition: var(--transition);
  direction: ltr;
  cursor: pointer;
}
footer .link a span,
footer .link p span {
  color: var(--whiteColor);
}
footer .link:hover p {
  color: var(--goldColor);
}
footer .socialMedia a img {
  filter: brightness(0) invert(1) contrast(0.8);
}
footer .border-top {
  --bs-border-color: #ffffff30;
}
footer .footerSocial {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
footer .footerSocial a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
footer .footerSocial a img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}
footer .footerSocial a:hover {
  background: var(--mainColor);
  border-color: var(--mainColor);
  transform: translateY(-2px);
}

.clients {
  background: var(--darkColor);
  position: relative;
  z-index: 2;
  padding: 100px 0 60px;
  overflow: hidden;
}
.clients .partnersSlider {
  position: relative;
}
.clients .partnersSlider::before, .clients .partnersSlider::after {
  content: "";
  position: absolute;
  top: 0;
  width: clamp(50px, 8vw, 120px);
  height: 100%;
  pointer-events: none;
  z-index: 3;
}
.clients .partnersSlider::before {
  right: 0;
  background: linear-gradient(270deg, rgb(25, 25, 25) 0%, rgba(25, 25, 25, 0.92) 22%, rgba(25, 25, 25, 0.45) 58%, rgba(25, 25, 25, 0) 100%);
}
.clients .partnersSlider::after {
  left: 0;
  background: linear-gradient(90deg, rgb(25, 25, 25) 0%, rgba(25, 25, 25, 0.92) 22%, rgba(25, 25, 25, 0.45) 58%, rgba(25, 25, 25, 0) 100%);
}
@media (max-width: 767px) {
  .clients .partnersSlider::before, .clients .partnersSlider::after {
    width: clamp(34px, 10vw, 58px);
  }
}
.clients .sectionTitle {
  text-align: center;
  padding-bottom: 20px;
  width: min(100% - 40px, 800px);
  text-wrap: balance;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 767px) {
  .clients .sectionTitle {
    padding-bottom: 40px;
  }
}
.clients .sectionTitle .sub {
  font-weight: bold;
  color: var(--mainColor);
  text-transform: uppercase;
  font-family: fontBold;
  font-size: 40px;
  line-height: 40px;
}
.clients .sectionTitle .title {
  font-style: italic;
  font-weight: bold;
  color: var(--lightGrayColor);
  font-family: fontBold;
}
.clients .sectionTitle .hint {
  color: var(--lightGrayColor);
}
.clients .logo {
  padding: 10px;
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
.clients .logo img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}
.clients .logo:hover img {
  filter: none;
}
.clients .swiperControl {
  position: relative;
}
.clients .swiperControl .swiper-pagination {
  --bulletAtomColor: var(--whiteColor);
  justify-content: center;
}
.clients .swiperControl .swiper-pagination .swiper-pagination-bullet {
  border-color: rgba(255, 255, 255, 0.35);
}
.clients .inner {
  background-color: var(--mainColor);
  text-align: center;
  padding: 24px;
  height: 100%;
}
.clients .inner .subTitle {
  color: var(--whiteColor);
  font-weight: bold;
  font-family: "fontBold", sans-serif !important;
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 25px;
  }
  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
  }
  h5 {
    font-size: 16px;
  }
  h6 {
    font-size: 15px;
  }
  span,
  p,
  body {
    font-size: 14px;
  }
}
.serviceArea {
  background: linear-gradient(rgba(1, 89, 242, 0.768627451), rgba(1, 89, 242, 0.7960784314)), url("../img/services.jpg");
  background-size: 300%;
  animation: animateBg 80s linear infinite;
  padding: 80px 8px;
}
.serviceArea .serviceTop {
  text-align: center;
  padding-bottom: 55px;
  width: min(100% - 40px, 800px);
  text-wrap: balance;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 767px) {
  .serviceArea .serviceTop {
    padding-bottom: 40px;
  }
}
.serviceArea .serviceTop .secTitle {
  font-weight: bold;
  color: var(--whiteColor);
  text-transform: uppercase;
  font-family: fontBold;
  font-size: 40px;
  line-height: 40px;
}
.serviceArea .serviceTop .secSubTitle {
  font-style: italic;
  font-weight: bold;
  color: var(--lightGrayColor);
  font-family: fontBold;
}
.serviceArea .serviceTop .hint {
  color: var(--lightGrayColor);
}
.serviceArea .allServices {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.serviceArea .allServices img {
  transition: var(--transition);
}
.serviceArea .allServices .serviceItem {
  position: relative;
  flex: 1 32%;
  min-width: 300px;
  backdrop-filter: blur(12px);
  background-color: rgba(17, 25, 40, 0.21);
  padding: 40px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.serviceArea .allServices .serviceItem .serviceIcon {
  width: 64px;
  height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 12px;
}
.serviceArea .allServices .serviceItem {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.serviceArea .allServices .serviceItem .title {
  font-family: "fontBold";
  line-height: 1;
}
.serviceArea .allServices .serviceItem .subTitle {
  color: var(--lightGrayColor);
  font-size: 14px;
  line-height: 1.4;
}
.serviceArea .allServices .serviceItem .arrow {
  margin-top: 24px;
  align-self: flex-end;
  width: 20px;
  height: 20px;
}
.serviceArea .allServices .serviceItem .serviceList {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 40px;
  gap: 16px;
  border-radius: 24px;
  background-color: var(--whiteColor);
  align-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.serviceArea .allServices .serviceItem .serviceList span {
  min-width: calc(50% - 8px);
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--darkColor);
  opacity: 0;
  filter: brightness(0.8);
}
.serviceArea .allServices .serviceItem .serviceList span img {
  min-width: 16px;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  transform: scaleX(-1);
}
.serviceArea .allServices .serviceItem:hover .serviceList {
  animation: subMove 0.5s forwards;
}
@keyframes subMove {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}
.serviceArea .allServices .serviceItem:hover .serviceList span {
  animation: fade-in 0.5s ease-in-out forwards;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(1) {
  animation-delay: 0.15s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(2) {
  animation-delay: 0.3s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(3) {
  animation-delay: 0.45s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(4) {
  animation-delay: 0.6s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(5) {
  animation-delay: 0.75s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(6) {
  animation-delay: 0.9s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(7) {
  animation-delay: 1.05s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(8) {
  animation-delay: 1.2s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(9) {
  animation-delay: 1.35s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(10) {
  animation-delay: 1.5s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(11) {
  animation-delay: 1.65s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(12) {
  animation-delay: 1.8s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(13) {
  animation-delay: 1.95s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(14) {
  animation-delay: 2.1s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(15) {
  animation-delay: 2.25s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(16) {
  animation-delay: 2.4s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(17) {
  animation-delay: 2.55s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(18) {
  animation-delay: 2.7s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(19) {
  animation-delay: 2.85s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(20) {
  animation-delay: 3s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(21) {
  animation-delay: 3.15s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(22) {
  animation-delay: 3.3s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(23) {
  animation-delay: 3.45s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(24) {
  animation-delay: 3.6s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(25) {
  animation-delay: 3.75s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(26) {
  animation-delay: 3.9s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(27) {
  animation-delay: 4.05s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(28) {
  animation-delay: 4.2s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(29) {
  animation-delay: 4.35s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(30) {
  animation-delay: 4.5s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(31) {
  animation-delay: 4.65s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(32) {
  animation-delay: 4.8s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(33) {
  animation-delay: 4.95s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(34) {
  animation-delay: 5.1s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(35) {
  animation-delay: 5.25s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(36) {
  animation-delay: 5.4s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(37) {
  animation-delay: 5.55s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(38) {
  animation-delay: 5.7s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(39) {
  animation-delay: 5.85s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(40) {
  animation-delay: 6s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(41) {
  animation-delay: 6.15s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(42) {
  animation-delay: 6.3s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(43) {
  animation-delay: 6.45s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(44) {
  animation-delay: 6.6s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(45) {
  animation-delay: 6.75s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(46) {
  animation-delay: 6.9s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(47) {
  animation-delay: 7.05s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(48) {
  animation-delay: 7.2s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(49) {
  animation-delay: 7.35s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(50) {
  animation-delay: 7.5s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(51) {
  animation-delay: 7.65s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(52) {
  animation-delay: 7.8s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(53) {
  animation-delay: 7.95s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(54) {
  animation-delay: 8.1s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(55) {
  animation-delay: 8.25s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(56) {
  animation-delay: 8.4s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(57) {
  animation-delay: 8.55s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(58) {
  animation-delay: 8.7s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(59) {
  animation-delay: 8.85s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(60) {
  animation-delay: 9s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(61) {
  animation-delay: 9.15s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(62) {
  animation-delay: 9.3s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(63) {
  animation-delay: 9.45s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(64) {
  animation-delay: 9.6s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(65) {
  animation-delay: 9.75s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(66) {
  animation-delay: 9.9s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(67) {
  animation-delay: 10.05s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(68) {
  animation-delay: 10.2s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(69) {
  animation-delay: 10.35s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(70) {
  animation-delay: 10.5s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(71) {
  animation-delay: 10.65s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(72) {
  animation-delay: 10.8s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(73) {
  animation-delay: 10.95s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(74) {
  animation-delay: 11.1s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(75) {
  animation-delay: 11.25s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(76) {
  animation-delay: 11.4s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(77) {
  animation-delay: 11.55s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(78) {
  animation-delay: 11.7s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(79) {
  animation-delay: 11.85s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(80) {
  animation-delay: 12s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(81) {
  animation-delay: 12.15s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(82) {
  animation-delay: 12.3s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(83) {
  animation-delay: 12.45s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(84) {
  animation-delay: 12.6s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(85) {
  animation-delay: 12.75s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(86) {
  animation-delay: 12.9s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(87) {
  animation-delay: 13.05s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(88) {
  animation-delay: 13.2s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(89) {
  animation-delay: 13.35s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(90) {
  animation-delay: 13.5s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(91) {
  animation-delay: 13.65s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(92) {
  animation-delay: 13.8s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(93) {
  animation-delay: 13.95s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(94) {
  animation-delay: 14.1s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(95) {
  animation-delay: 14.25s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(96) {
  animation-delay: 14.4s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(97) {
  animation-delay: 14.55s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(98) {
  animation-delay: 14.7s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(99) {
  animation-delay: 14.85s;
}
.serviceArea .allServices .serviceItem:hover .serviceList span:nth-child(100) {
  animation-delay: 15s;
}
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.flipCard {
  height: 450px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  perspective: 1000px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.flipCard::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 90%;
  transform: translateY(-50%);
  padding: 2px; /* سمك البوردر */
  border-radius: 20px;
  background: var(--linearGradient);
  /* ده اللي بيخليها border مش background */
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.flipCard .cardFront {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 20px;
  display: flex;
  overflow: hidden;
  background-color: var(--darkColor);
  backface-visibility: hidden;
  transform: rotateY(0deg);
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.0509803922);
}
.flipCard .cardFront .img {
  width: 100%;
  height: 100%;
}
.flipCard .cardFront .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.flipCard .cardFront .cardLogo {
  width: 100%;
  max-height: 200px;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.flipCard .cardFront .content {
  background: rgba(15, 15, 16, 0.7333333333);
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
  padding: 24px;
}
.flipCard .cardFront .content .title {
  font-family: "fontBold";
  color: var(--whiteColor);
  text-transform: capitalize;
  font-size: 26px;
}
.flipCard .cardFront .content .location,
.flipCard .cardFront .content .date {
  color: var(--whiteColor);
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 8px;
}
.flipCard .cardFront .content .location img,
.flipCard .cardFront .content .date img {
  width: 14px;
  aspect-ratio: 1/1;
  filter: brightness(0) invert(1);
  -o-object-fit: contain;
     object-fit: contain;
}
.flipCard .cardBack {
  padding: 20px;
  position: absolute;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transform: rotateY(180deg);
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(180deg, rgba(143, 143, 143, 0.24), rgba(128, 128, 128, 0.08));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3), inset 0 0 18px rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}
.flipCard .cardBack .content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.flipCard .cardBack .content .favimg {
  height: 24px;
  -o-object-position: right;
     object-position: right;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(1);
}
.flipCard .cardBack .content .title {
  font-weight: bold;
  font-family: "fontBold";
  text-transform: capitalize;
  color: var(--mainColor);
}
.flipCard .cardBack .content .des {
  color: #777;
  font-size: 14px;
  flex: 1;
  overflow: hidden;
}
.flipCard .cardBack .content .outlineGradient {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  border-radius: 100px;
}
.flipCard .cardBack .content .outlineGradient::after {
  border-radius: 100px;
}
.flipCard .cardBack .content .outlineGradient img {
  height: 16px;
  margin-right: 4px;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1;
}
.flipCard .cardBack.tech .content .animatedLink {
  color: var(--mainColor);
}
.flipCard .cardBack.tech .content .animatedLink span::after {
  border-color: var(--mainColor);
}
.flipCard .cardBack.tech .content .animatedLink:hover {
  color: var(--darkColor);
}
.flipCard .cardBack.tech .content .animatedLink:hover span img {
  filter: brightness(0) invert(1);
}
.flipCard .cardBack.tech .content .animatedLink:hover span::after {
  background: var(--mainColor);
}
.flipCard:hover {
  z-index: 2;
}
.flipCard:hover .cardFront {
  transform: rotateY(-180deg);
}
.flipCard:hover .cardBack {
  transform: rotateY(0deg);
}

.ourWork {
  padding: 60px 12px;
  z-index: 1;
}
.ourWork .swiperControl {
  padding: 0;
}
.ourWork .swiper-wrapper {
  padding: 24px 0;
}
.ourWork .sectionTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center !important;
}
@media (max-width: 768px) {
  .ourWork .sectionTop {
    flex-direction: column;
  }
}
.ourWork .sectionTop .top {
  text-align: center;
  padding-bottom: 55px;
  width: min(100% - 40px, 800px);
  text-wrap: balance;
  display: flex;
  flex-direction: column;
  text-align: start;
  gap: 8px;
}
@media (max-width: 767px) {
  .ourWork .sectionTop .top {
    padding-bottom: 40px;
  }
}
.ourWork .sectionTop .top .secTitle {
  font-weight: bold;
  color: var(--whiteColor);
  text-transform: uppercase;
  font-family: fontBold;
  font-size: 30px;
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  .ourWork .sectionTop .top .secTitle {
    font-size: 24px;
    line-height: 24px;
  }
}
.ourWork .sectionTop .top .title-container {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ourWork .sectionTop .top .title-container .secSubTitle {
  font-style: italic;
  font-weight: bold;
  color: var(--lightGrayColor);
  font-family: fontBold;
}
.ourWork .sectionTop .top .title-container .fav-logo {
  width: 25px;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.ourWork .sectionTop .top .hint {
  color: var(--lightGrayColor);
}

.stats .container {
  background: url("../img/shadow.png");
  background-position: center;
  position: relative;
  z-index: 4;
  margin-top: -60px;
  padding: 40px;
  border-radius: 20px;
}
.stats .container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--linearGradient);
  animation: animateBg 5s linear infinite;
  background-size: 400%;
  z-index: -1;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .stats .container {
    margin-top: -30px;
  }
}
.stats .container .top {
  text-align: center;
  padding-bottom: 55px;
  width: min(100% - 40px, 800px);
  text-wrap: balance;
  display: flex;
  flex-direction: column;
  margin: auto;
  gap: 8px;
}
@media (max-width: 767px) {
  .stats .container .top {
    padding-bottom: 40px;
  }
}
.stats .container .top .secTitle {
  font-weight: bold;
  color: var(--whiteColor);
  text-transform: uppercase;
  font-family: fontBold;
  font-size: 30px;
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  .stats .container .top .secTitle {
    font-size: 24px;
    line-height: 24px;
  }
}
.stats .container .top .secSubTitle {
  font-style: italic;
  font-weight: bold;
  color: var(--lightGrayColor);
  font-family: fontBold;
}
.stats .container .top .hint {
  color: var(--lightGrayColor);
}
.stats .container .all {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.stats .container .all .statistic {
  flex: 1;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.0549019608);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.0549019608);
}
.stats .container .all .statistic .counterUp {
  font-family: "Manrope Alt", Sans-serif;
  font-weight: bold;
  background: rgba(167, 169, 172, 0.062745098);
  background-size: contain;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 2px #ffffff;
}
.stats .container .all .statistic h6 {
  font-family: "fontBold";
  text-transform: capitalize;
}

.careers {
  position: relative;
  background: url("../img/rm373batch15-element-04.jpg");
  animation: animateBg 80s linear infinite;
  background-size: 100%;
  background-position: center;
  padding: 80px 8px;
}
.careers::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--linearGradient);
  z-index: 0;
}
.careers .container {
  display: flex;
  align-items: center;
  gap: 16px;
}
.careers .container .row {
  position: relative;
  z-index: 1;
}
.careers .top {
  text-align: start;
  width: min(100% - 40px, 800px);
  text-wrap: balance;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  justify-content: center;
}
@media (max-width: 992px) {
  .careers .top {
    text-align: center;
    margin: auto;
  }
}
.careers .top .secTitle {
  font-weight: bold;
  color: var(--whiteColor);
  text-transform: uppercase;
  font-family: fontBold;
  font-size: 30px;
  line-height: 30px;
}
.careers .top .secSubTitle {
  font-style: italic;
  font-weight: bold;
  color: var(--lightGrayColor);
  font-family: fontBold;
}
.careers .top .hint {
  color: var(--lightGrayColor);
}
.careers form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: var(--whiteColor);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--BigShadow);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(36, 36, 36, 0.08));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3), inset 0 0 18px rgba(180, 180, 180, 0.18);
  backdrop-filter: blur(14px);
}
.careers form .hint {
  font-style: italic;
}
.careers form .form-select,
.careers form .form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
  min-height: 48px;
  border-radius: 8px;
  padding: 0.375rem 0.75rem;
  font-size: 12px;
  color: #bababa !important;
  font-weight: normal !important;
}
.careers form .form-select {
  padding-left: 40px;
  padding-right: 12px;
  color: #bababa;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5l6 6 6-6' stroke='%23bababa' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 12px center;
  background-size: 12px;
}
.careers form .outlineGradient {
  text-align: center;
  align-items: center;
  justify-content: center;
}
.careers form .outlineGradient::after {
  display: none;
}

.contact {
  padding: 80px 0;
}
.contact form {
  background: #000000;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.1019607843);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(36, 36, 36, 0.08));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3), inset 0 0 18px rgba(180, 180, 180, 0.18);
  backdrop-filter: blur(14px);
}
@media (max-width: 576px) {
  .contact form {
    padding: 32px 0;
  }
}
.contact form .form-group {
  display: flex;
  width: 100%;
}
@media (max-width: 768px) {
  .contact form .form-group {
    flex-direction: column;
    gap: 48px;
  }
}
.contact form .form-group .inputfield {
  width: 100%;
  padding: 0 16px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.contact form .form-group .inputfield label {
  position: absolute;
  font-size: 14px;
  color: var(--grayColor);
  right: 16px;
  transform: translateY(50%);
  top: 25%;
  font-weight: 500;
  transition: var(--transition);
  text-transform: capitalize;
}
.contact form .form-group .inputfield label i {
  margin-left: 4px;
}
.contact form .form-group .inputfield label {
  cursor: auto;
}
.contact form .form-group .inputfield label.message-label {
  top: 20%;
}
.contact form .form-group .inputfield label.h {
  top: -22px;
  color: var(--mainColor);
}
.contact form .form-group .inputfield input,
.contact form .form-group .inputfield textarea,
.contact form .form-group .inputfield select {
  width: 100%;
  height: 45px;
  border: none;
  outline: none;
  background: none;
  color: var(--grayColor);
}
.contact form .form-group .inputfield input:focus + span::after,
.contact form .form-group .inputfield textarea:focus + span::after,
.contact form .form-group .inputfield select:focus + span::after {
  width: calc(100% - 32px);
}
.contact form .form-group .inputfield select {
  color: var(--grayColor);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.contact form .form-group .inputfield.select-field label {
  pointer-events: none;
}
.contact form .form-group .inputfield.select-field .custom-select {
  width: 100%;
  position: relative;
}
.contact form .form-group .inputfield.select-field .custom-select .custom-select-trigger {
  width: 100%;
  height: 45px;
  padding: 0;
  border: none;
  background: none;
  outline: none;
  color: var(--grayColor);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0;
}
.contact form .form-group .inputfield.select-field .custom-select .custom-select-trigger span {
  flex: 1;
  text-align: right;
}
.contact form .form-group .inputfield.select-field .custom-select .custom-select-trigger .arrow-icon {
  width: 14px;
  height: 8px;
  fill: none;
  stroke: var(--grayColor);
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform 0.3s ease, stroke 0.3s ease;
  flex-shrink: 0;
}
.contact form .form-group .inputfield.select-field .custom-select .custom-select-trigger:focus {
  color: var(--grayColor);
}
.contact form .form-group .inputfield.select-field .custom-select .custom-select-trigger.active {
  background: none;
  border-radius: 0;
}
.contact form .form-group .inputfield.select-field .custom-select .custom-select-trigger.active .arrow-icon {
  stroke: var(--mainColor);
  transform: rotate(180deg);
}
.contact form .form-group .inputfield.select-field .custom-select .custom-select-trigger.active + .custom-options {
  max-height: 200px;
  overflow-y: auto;
}
.contact form .form-group .inputfield.select-field .custom-select .custom-options {
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  background: rgba(40, 40, 40, 0.95);
  border-radius: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
  padding: 0 16px;
  margin-top: 0;
}
.contact form .form-group .inputfield.select-field .custom-select .custom-options.open {
  max-height: 200px;
  overflow-y: auto;
}
.contact form .form-group .inputfield.select-field .custom-select .custom-options .custom-option {
  padding: 12px 0;
  color: var(--grayColor);
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-left: none;
}
.contact form .form-group .inputfield.select-field .custom-select .custom-options .custom-option:last-child {
  border-bottom: none;
}
.contact form .form-group .inputfield.select-field .custom-select .custom-options .custom-option:hover {
  background: none;
  color: var(--mainColor);
  padding-left: 0;
}
.contact form .form-group .inputfield.select-field .custom-select .custom-options .custom-option.selected {
  background: none;
  color: var(--mainColor);
  border-left-color: none;
  font-weight: 500;
}
.contact form .form-group .inputfield textarea {
  padding: 16px 0;
  height: 130px;
}
.contact form .form-group .inputfield .highlight {
  width: 100%;
  height: 1px;
  background: var(--grayColor);
}
.contact form .form-group .inputfield .highlight::after {
  content: "";
  width: 0;
  transition: var(--transition);
  right: 50%;
  height: 1px;
  background: var(--mainColor);
  position: absolute;
  transform: translate(50%);
}
.contact form .outlineGradient {
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  align-self: flex-end;
  margin-left: 16px;
}
.contact form .outlineGradient::after {
  background: #000000;
}
.contact .contact_info {
  width: 100%;
  height: 100%;
}
.contact .contact_info .top {
  text-align: start;
  padding-bottom: 30px;
  width: min(100% - 40px, 800px);
  text-wrap: balance;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 767px) {
  .contact .contact_info .top {
    padding-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .contact .contact_info .top {
    text-align: center;
  }
}
.contact .contact_info .top .secTitle {
  font-weight: bold;
  color: var(--whiteColor);
  text-transform: uppercase;
  font-family: fontBold;
  font-size: 30px;
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  .contact .contact_info .top .secTitle {
    font-size: 24px;
    line-height: 24px;
  }
}
.contact .contact_info .top .secSubTitle {
  font-style: italic;
  font-weight: bold;
  color: var(--lightGrayColor);
  font-family: fontBold;
}
.contact .contact_info .top .hint {
  color: var(--lightGrayColor);
}
.contact .contact_info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact .contact_info .field {
  width: 100%;
  display: flex;
  gap: 16px;
  align-items: center;
}
.contact .contact_info .field .icon {
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--mainColor);
  overflow: hidden;
  isolation: isolate;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact .contact_info .field .icon::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  z-index: 0;
  transition: var(--transition);
  background: var(--mainColor);
}
.contact .contact_info .field .icon path,
.contact .contact_info .field .icon svg {
  width: 20px;
  height: 20px;
  fill: var(--mainColor);
}
.contact .contact_info .field .text {
  display: flex;
  flex-direction: column;
}
.contact .contact_info .field .text h4 {
  margin-bottom: 4px;
  color: var(--mainColor);
  font-size: 13px;
  font-weight: bold;
}
.contact .contact_info .field .text a {
  color: var(--);
}
.contact .contact_info .field:hover .icon {
  border-color: transparent;
}
.contact .contact_info .field:hover .icon path,
.contact .contact_info .field:hover .icon svg {
  fill: var(--whiteColor);
  z-index: 2;
}
.contact .contact_info .field:hover .icon::after {
  opacity: 1;
}
.contact .contact_info .contactSocial {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.contact .contact_info .contactSocial h4 {
  margin: 0;
  color: var(--mainColor);
  font-size: 14px;
  font-weight: 700;
}
.contact .contact_info .contactSocial .icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.contact .contact_info .contactSocial .icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(181, 174, 74, 0.6);
  background: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.contact .contact_info .contactSocial .icons a img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact .contact_info .contactSocial .icons a:hover {
  background: var(--mainColor);
  border-color: var(--mainColor);
  transform: translateY(-2px);
}
.contact .contact_info .contactSocial .icons a:hover img {
  filter: brightness(0) invert(1);
}
@media (max-width: 992px) {
  .contact .contact_info .contactSocial {
    justify-content: center;
  }
}

.copywriting {
  display: flex;
  padding: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1882352941);
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.copywriting a {
  color: var(--whiteColor) !important;
  display: flex;
  align-items: center;
  gap: 4px;
}
.copywriting a span {
  text-transform: uppercase;
}
.copywriting img {
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}

.modal .modal-content {
  background: var(--mainColor);
  padding: 24px;
  border-radius: 16px;
  position: relative;
}
.modal .modal-content .btnClose {
  position: absolute;
  left: -12px;
  top: -12px;
  background: var(--mainColor);
  color: var(--whiteColor);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  outline: 2px solid var(--whiteColor);
  font-family: "fontBold";
  font-size: 16px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .modal .modal-content .btnClose {
    left: 0;
    top: 0;
  }
}
.modal .modal-content .workDetails {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}
.modal .modal-content .workDetails .title {
  font-family: "fontBold";
  color: var(--whiteColor);
  text-transform: capitalize;
  font-size: 22px;
  margin-bottom: 8px;
}
.modal .modal-content .workDetails .des {
  color: #d4d4d4;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.modal .modal-content .workDetails .location,
.modal .modal-content .workDetails .date {
  color: var(--whiteColor);
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 8px;
}
.modal .modal-content .workDetails .location img,
.modal .modal-content .workDetails .date img {
  width: 14px;
  aspect-ratio: 1/1;
  filter: brightness(0) invert(1);
  -o-object-fit: contain;
     object-fit: contain;
}
.modal .modal-content .workDetails .session-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.modal .modal-content .workDetails .session-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d4d4d4;
  font-size: 13px;
}
.modal .modal-content .workDetails .session-meta .meta-item img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1) opacity(0.7);
}
.modal .modal-content .workDetails .session-meta .meta-item strong {
  color: var(--mainColor);
  font-weight: 600;
}
.modal .modal-content .workDetails .session-topics {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal .modal-content .workDetails .session-topics h5 {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--mainColor);
  font-weight: 600;
  margin: 0;
}
.modal .modal-content .workDetails .session-topics .topics-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.modal .modal-content .workDetails .session-topics .topics-wrapper .topic-badge {
  display: inline-flex;
  padding: 4px 10px;
  background: rgba(181, 174, 74, 0.15);
  color: var(--mainColor);
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid rgba(181, 174, 74, 0.3);
  transition: all 0.2s ease;
}
.modal .modal-content .workDetails .session-topics .topics-wrapper .topic-badge:hover {
  background: rgba(181, 174, 74, 0.25);
  border-color: var(--mainColor);
}

.animate_lines,
.animate_chars,
.animate_chars {
  overflow-x: inherit;
}

/* ================================================
     Bootstrap Modal
  ================================================ */
#workDetails .modal-content {
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  border-radius: 20px;
  position: relative;
}
#workDetails {
  /* زر الإغلاق */
}
#workDetails .modal-close {
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 20;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--mainColor);
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}
#workDetails .modal-close svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
}
#workDetails .modal-close:hover {
  background: #d4cc55;
  transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  #workDetails .modal-close {
    top: 8px;
    left: 8px;
  }
}
#workDetails {
  /* ================================================
       Slider — thumbs
    ================================================ */
}
#workDetails .itemDetailsSlider {
  display: flex;
  gap: 10px;
  height: 100%;
  padding: 12px;
  box-sizing: border-box;
  /* الصورة الكبيرة — تأخذ باقي المساحة */
}
#workDetails .itemDetailsSlider .swiper.slider {
  flex: 5;
  min-width: 0;
  aspect-ratio: 3/2;
  max-height: 500px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
#workDetails .itemDetailsSlider .swiper.slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: zoom-in;
  border-radius: 12px;
}
#workDetails .itemDetailsSlider .swiper.slider .swiperControl {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
}
#workDetails .itemDetailsSlider .swiper.slider .swiperControl .swiperBtns .swiper-button-prev,
#workDetails .itemDetailsSlider .swiper.slider .swiperControl .swiperBtns .swiper-button-next {
  background-color: var(--mainColor);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
#workDetails .itemDetailsSlider .swiper.slider .swiperControl .swiperBtns .swiper-button-prev::after,
#workDetails .itemDetailsSlider .swiper.slider .swiperControl .swiperBtns .swiper-button-next::after {
  font-size: 14px;
  filter: brightness(0) invert(1);
}
#workDetails .itemDetailsSlider {
  /* التمبز — عمودية على اليسار */
}
#workDetails .itemDetailsSlider .swiper.thumbs {
  flex: 1;
  min-width: 0;
  max-height: 500px;
  box-sizing: border-box;
  overflow: hidden;
}
#workDetails .itemDetailsSlider .swiper.thumbs .swiper-wrapper {
  flex-direction: column;
}
#workDetails .itemDetailsSlider .swiper.thumbs .swiper-slide {
  width: 100% !important;
  max-height: 120px;
  aspect-ratio: 3/2;
  opacity: 0.5;
  filter: grayscale(1);
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  transition: opacity 0.2s, filter 0.2s;
  border: 2px solid transparent;
}
#workDetails .itemDetailsSlider .swiper.thumbs .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
#workDetails .itemDetailsSlider .swiper.thumbs .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  filter: none;
  border-color: var(--mainColor);
}
#workDetails .itemDetailsSlider {
  /* موبايل: thumbs تحت السلايدر أفقية */
}
@media screen and (max-width: 991px) {
  #workDetails .itemDetailsSlider {
    flex-direction: column;
  }
  #workDetails .itemDetailsSlider .swiper.slider {
    flex: unset;
    width: 100%;
    max-height: 260px;
  }
  #workDetails .itemDetailsSlider .swiper.thumbs {
    flex: unset;
    width: 100%;
    max-height: unset;
  }
  #workDetails .itemDetailsSlider .swiper.thumbs .swiper-wrapper {
    flex-direction: row;
  }
  #workDetails .itemDetailsSlider .swiper.thumbs .swiper-slide {
    width: 80px !important;
    max-height: 60px;
  }
}
#workDetails {
  /* ================================================
       Details col
    ================================================ */
}
#workDetails .workDetails {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}
#workDetails .workDetails .ep-badge {
  background: rgba(181, 174, 74, 0.9);
  color: #191919;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 999px;
  align-self: flex-start;
}
#workDetails .workDetails .title {
  font-family: "fontBold", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin: 0;
}
#workDetails .workDetails .des {
  font-size: 13px;
  color: #aaa;
  line-height: 1.8;
  margin: 0;
}
#workDetails .workDetails .modal-guest-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
#workDetails .workDetails .modal-guest-row .modal-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(181, 174, 74, 0.1333333333);
  border: 2px solid rgba(181, 174, 74, 0.3333333333);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #b5ae4a;
  flex-shrink: 0;
  overflow: hidden;
}
#workDetails .workDetails .modal-guest-row .modal-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#workDetails .workDetails .modal-guest-row .modal-guest-info .label {
  font-size: 11px;
  color: #666;
}
#workDetails .workDetails .modal-guest-row .modal-guest-info .name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
#workDetails .workDetails .modal-guest-row .modal-duration {
  margin-right: auto;
  font-size: 12px;
  color: #666;
  background: #242424;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #333;
}
#workDetails .workDetails .modal-topics .topics-label {
  font-size: 11px;
  color: #666;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
#workDetails .workDetails .modal-topics .topics-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#workDetails .workDetails .modal-topics .topics-list .topic-tag {
  font-size: 12px;
  color: #b5ae4a;
  background: rgba(181, 174, 74, 0.0666666667);
  border: 1px solid rgba(181, 174, 74, 0.2);
  padding: 4px 12px;
  border-radius: 999px;
  transition: background 0.2s, border-color 0.2s;
}
#workDetails .workDetails .modal-topics .topics-list .topic-tag:hover {
  background: rgba(181, 174, 74, 0.1333333333);
  border-color: var(--mainColor);
}
#workDetails .workDetails .modal-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}
#workDetails .workDetails .modal-actions .modal-identity-btn {
  flex: 1;
  min-height: 44px;
  justify-content: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}
#workDetails .workDetails .modal-actions .modal-identity-btn span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}
#workDetails .workDetails .modal-actions .modal-identity-btn svg,
#workDetails .workDetails .modal-actions .modal-identity-btn img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
#workDetails .workDetails .modal-actions .modal-identity-btn.modal-solid {
  color: #191919;
}
#workDetails .workDetails .modal-actions .modal-identity-btn.modal-solid::after {
  opacity: 0;
}
#workDetails .workDetails .modal-actions .modal-identity-btn.modal-outline {
  color: #fff;
  flex: unset;
  padding: 0 18px;
}/*# sourceMappingURL=styleAR.css.map */
