/* ===============================
   Language Header Top Bar
================================ */

.lng_header {
  width: 100%;
  background: #2d1a00;
  z-index: 999;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  gap: 20px;
}

/* ===============================
   Email & Phone Section
================================ */

.email_phone {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.email_phone a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: 0.3s ease;
}

.email_phone a:hover {
  color: goldenrod;
}

.email_phone i {
  font-size: 14px;
}

/* ===============================
   Language Section
================================ */

.language-switcher {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: nowrap;
}

.language-option img {
  width: 20px !important;
}

.language-option {
  cursor: pointer;
  color: var(--black);
  font-size: 12px;
  padding: 4px 5px;
  border-radius: 5px;
  white-space: nowrap;
  transition: all 0.3s ease;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
}

.language-option:hover {
  background: #fff;
  color: #000;
  transform: translateY(-1px);
}

.language-option.active {
  border: 1px solid goldenrod;
}

/* ===============================
   Sticky Header Adjustment
================================ */

.header.scrolled {
  position: sticky;
  /* top: 45px; */
  top: 0;
  left: 0;
  z-index: 998;
}

/* ===============================
   Tablet View
================================ */

@media (max-width: 991px) {
  .lng_header {
    padding: 8px 15px;
    gap: 10px;
  }

  .email_phone {
    gap: 12px;
  }

  .email_phone a {
    font-size: 13px;
  }

  .language-option {
    font-size: 13px;
    padding: 4px 8px;
  }

  .header.scrolled {
    /* top: 55px; */
    top: 0;
  }
}

/* ===============================
   Mobile View
================================ */

@media (max-width: 767px) {
  .lng_header {
    flex-direction: column;
    align-items: stretch;
    padding: 8px 10px;
    gap: 8px;
  }

  /* Email phone row */

  .email_phone {
    width: 100%;
    justify-content: center;
    gap: 15px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .email_phone::-webkit-scrollbar {
    display: none;
  }

  .email_phone a {
    font-size: 12px;
    flex-shrink: 0;
  }

  /* Language row */

  /* .language-switcher {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 8px;
    scrollbar-width: none;
  } */

  .language-switcher::-webkit-scrollbar {
    display: none;
  }

  .language-option {
    flex: 0 0 auto;
    font-size: 13px;
    padding: 5px 10px;
  }

  .header.scrolled {
    /* top: 95px; */
    top: 0;
  }
}

/* ===============================
        Small Mobile
        ================================ */

@media (max-width: 480px) {
  .lng_header {
    padding: 7px 8px;
  }

  .email_phone {
    flex-direction: column;
    gap: 3px;
  }

  .email_phone a {
    font-size: 12px;
  }

  .language-option {
    font-size: 12px;
    padding: 5px 8px;
  }

  .header.scrolled {
    /* top: 90px; */
    top: 0;
  }
}

/* CUSTOM DROPDOWN */
.custom-dropdown {
  position: relative;
  width: 220px;
  font-family: Arial, sans-serif;
}

.dropdown-selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.dropdown-selected img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.dropdown-selected span {
  flex: 1;
}

.arrow {
  transition: 0.3s;
}

.custom-dropdown.active .arrow {
  transform: rotate(180deg);
}

.dropdown-options {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 999;
  overflow: hidden;
}

.custom-dropdown.active .dropdown-options {
  display: block;
}

.dropdown-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: 0.2s;
}

.dropdown-option:hover {
  background: #f3f3f3;
}

.dropdown-option.active {
  background: var(--primary-color);
  color: #fff;
}

.dropdown-option img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

/* CUSTOM DROPDOWN END */

@media (max-width: 991px) {
  .header .header-ct-right .language-switcher {
    display: none;
  }
}

@media (max-width: 991px) {
  .slider-default .box-title {
    margin-bottom: 0 !important;
  }
}

.mobile-menu .language-switcher {
  justify-content: start;
  padding-top: 25px;
}


.footer-logo{
  background-color: #fff3e3;
}

.icon-list::before{
  color: #000 !important;
}