:where([class^="ri-"])::before {
  content: "\f3c2";
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}
.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(8px);
  z-index: 1000;
  transition: all 0.3s ease;
}
.sticky-nav .nav-link {
  color: #1f2937;
}
.sticky-nav .logo {
  color: #1f2937;
}
.hero-section {
  background-size: cover;
  background-position: center;
  transition: background-image 0.5s ease;
}
.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: zoomBackground 6s linear infinite;
  transition: all 0.5s ease;
}
@keyframes zoomBackground {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.3) 75%,
    rgba(0, 0, 0, 0.1) 100%
  );
  width: 300px;
  /* background: linear-gradient(
    180deg,
    rgba(7, 32, 60, 1) 0%,
    rgba(14, 46, 117, 1) 15%,
    rgba(31, 76, 239, 1) 100%
  ); */

  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
}
.nav-link {
  position: relative;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 10px;
  left: 0;
  background-color: rgb(34, 81, 255);
  transition: width 0.3s;
}
.nav-link:hover {
  color: rgb(34, 81, 255) !important;
}
.nav-link:hover::after {
  width: 100%;
}
.carousel-item {
  transition: opacity 0.5s ease;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.carousel-item.active {
  opacity: 1;
  position: relative;
}
input:focus {
  outline: none;
}
.highlighted-text {
  background: linear-gradient(to right, #00f, #00edff);
  background: linear-gradient(to right, #0e2e75, #1f4cef);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  background-size: 100% 100%;
  display: inline-block;
}

.contact-section {
  background-image: url("../images/contact_bg.jpg");
  background-size: cover;
  background-position: center;
}
.footer-section {
  /* background-image: url("../images/footer_bg.jpg"); */
  background-size: cover;
  background-position: center;
}
.footer-section .border-t p {
  font-size: 14px;
}

.logo,
.logo2 {
  max-height: 36px;
  transition: all 0.3s ease;
}
nav button.sticky-lang {
  color: #1f2937;
}
#hero-carousel h1 span {
  font-family: Georgia, "Times New Roman", Times, serif;
}
header:hover .tool-area {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
header:hover .tool-area a {
  color: #333;
}
header:hover nav .logo {
  display: block !important;
}
header:hover nav .logo2 {
  display: none !important;
}
.scrolldown {
  --color: white;
  --sizeX: 30px;
  --sizeY: 50px;
  position: relative;
  width: var(--sizeX);
  height: var(--sizeY);
  margin-left: var(sizeX / 2);
  border: calc(var(--sizeX) / 10) solid var(--color);
  border-radius: 50px;
  box-sizing: border-box;
  margin-bottom: 16px;
  cursor: pointer;
}
.scroll-wrap {
  position: absolute;
  bottom: 20px;
  right: 30px;
  z-index: 11;
}
.scroll-wrap a {
  cursor: pointer;
}
.scrolldown::before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: var(--color);
  border-radius: 100%;
  animation: scrolldown-anim 2s infinite;
  box-sizing: border-box;
  box-shadow: 0px -5px 3px 1px #2a547066;
}

@keyframes scrolldown-anim {
  0% {
    opacity: 0;
    height: 6px;
  }

  40% {
    opacity: 1;
    height: 10px;
  }

  80% {
    transform: translate(0, 20px);
    height: 10px;
    opacity: 0;
  }

  100% {
    height: 3px;
    opacity: 0;
  }
}

.scrolldown .chevrons {
  padding: 6px 0 0 0;
  margin-left: -3px;
  margin-top: 48px;
  width: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scrolldown .chevrondown {
  margin-top: -6px;
  position: relative;
  border: solid var(--color);
  border-width: 0 3px 3px 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
}

.scrolldown .chevrondown:nth-child(odd) {
  animation: pulse54012 500ms ease infinite alternate;
}

.scrolldown .chevrondown:nth-child(even) {
  animation: pulse54012 500ms ease infinite alternate 250ms;
}

@keyframes pulse54012 {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.5;
  }
}
html {
  scroll-behavior: smooth;
}

.scroll-link {
  cursor: pointer;
  display: block;
}

.scrolldown {
  transition: transform 0.3s ease;
}

.scroll-link:hover .scrolldown {
  transform: translateY(8px);
}
#news h2,
#careers h2 {
  position: relative;
  width: fit-content;
  font-family: Georgia, "Times New Roman", Times, serif;
}
#news h2::after,
#careers h2::after {
  content: "";
  width: 100%;
  height: 4px;
  background: rgb(34, 81, 255);
  position: absolute;
  bottom: 0;
  left: 0;
}
.bg-fixed-cover {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
#careers .sec-text,
#news .more {
  font-family: Georgia, "Times New Roman", Times, serif;
}

/* Mobile Style */
@media (max-width: 768px) {
  .tool-area {
    display: none;
  }

  header nav {
    padding: 0 8px;
  }

  #hero-carousel {
    padding: 0 8px;
    text-align: center;
  }

  #hero-carousel h1 span {
    font-size: 36px !important;
  }

  .progress-wrap {
    position: relative;
  }
  .progress-wrap > div {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }
}
