.fls-header {
  margin: 24px auto;
  z-index: 999;
  background: transparent;
}

.fls-header-box {
  background-color: #1654c2;
  padding: 29px 32px;
  border-radius: 1rem;
}

.fls-header-logo {
  width: 130px;
  height: 50px;
}

.fls-header-menu {
  color: #ffffff;
  cursor: pointer;
  font-weight: 400;
  font-size: 19px;
  padding: 10px 16px;
}

.fls-header-menu:hover {
  border-radius: 8px;
  transition: all 0.3s;
  background: #144192;
  font-weight: 500;
  font-size: 18.8px;
  color: #ffffff !important;
}

.fls-header-menu img {
  width: 15px;
  opacity: 0.6;
  margin-top: 3px;
}

.fls-get-started-btn {
  padding: 10px 16px;
  border: 2px solid;
  border-image-source: none;
  border-image-source: linear-gradient(
    180deg,
    hsla(0, 0%, 100%, 0.12),
    hsla(0, 0%, 100%, 0)
  );
  border-radius: 8px;
  background-color: #fff;
  color: #333741 !important;
  font-weight: 500;
}

.fls-header-drp {
  background-color: #fff;
  left: 283%;
  transform: translate(-50%, -50%);
  padding: 32px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.24);
  z-index: 10;
  top: 337px;
  width: 1140px !important;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

@keyframes dropAnimate {
  0% {
    opacity: 0.3;
    scale: 1.01;
  }
  80% {
    opacity: 1;
    scale: 1dropAnimate;
  }
}

.fls-header-drp-arabic{
    left: -270%;
}

.fls-dropdown-title {
  color: #1654c2;
  font-size: 20px;
  font-weight: 600;
  margin-left: 9px;
}

.fls-dropdown-box {
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s;
}

.fls-dropdown-box:hover {
  background: #e5eeff;
}
.fls-dropdown-box img {
  width: 30px;
  height: 44px;
}

.fls-dropdown-list .head {
  color: #101828;
  font-size: 16px;
  font-weight: 500;
}

.fls-dropdown-list .content {
  color: #475467;
  font-size: 11px;
}

.fls-header-btm {
  padding: 28px 32px;
  background-color: #e5eeff;
  border-radius: 8px;
}

.fls-header-btm img {
  width: 26px;
  height: 30px;
}
.fls-header-item {
  position: relative;
}

.fls-header-item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0%;
  width: 100%;
  height: 20px;
}

.fls-header-drp {
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.fls-header-item:hover .fls-header-drp {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.fls-nav-icon {
  background-color: #ffffff;
  border-radius: 8px;
}

/* Mobile Menu Overlay */
.fls-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background-color: #1654c2;
  color: #fff;
  z-index: 9999;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 48px 20px 20px;
  box-shadow: -4px 0 8px rgba(0, 0, 0, 0.2);
}

.fls-mobile-menu.open {
  right: 0;
}

.fls-mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}

.fls-mobile-menu-header .fls-header-logo {
  width: 120px;
  height: auto;
}

.fls-mobile-menu-close {
  font-size: 32px;
}

.fls-mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 550px;
  overflow-x: scroll;
}

.fls-mobile-menu-list a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s;
}

.fls-mobile-menu-list a:hover {
  color: #f3f3f3;
}

.fls-mobile-get-btn {
  font-size: 13px;
}
/* Mobile button only */
@media (min-width: 992px) {
  .fls-mobile-menu,
  .fls-nav-icon {
    display: none !important;
  }
}

/* Media Query */
@media (min-width: 360px) and (max-width: 575px) {
  .container {
    width: 100% !important;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
}

@media (min-width: 768px) and (max-width: 991px) {
}

@media (min-width: 992px) and (max-width: 1199px) {
  .fls-header-logo {
    width: 100px;
    height: 40px;
  }
  .fls-header-menu {
    font-size: 18px;
    padding: 10px 16px;
  }

  .fls-header-menu:hover {
    font-size: 17.6px;
  }

  .fls-get-started-btn {
    padding: 9px 14px;
    font-size: 13px;
  }
  .fls-header-drp {
    left: 235%;
    transform: translate(-50%, -57%);
    top: 387px;
    width: 932px !important;
  }
  .fls-dropdown-list .content {
    color: #475467;
    font-size: 11px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .fls-header-drp {
    left: 255%;
    width: 1112px !important;
  }
}

@media (max-width: 1440px) {
}
