@media only screen and (max-width: 600px) {
    .logo img {
        margin-left: -200px;
        padding: 11px 13px;
    }
}
@media only screen and (max-width: 520px) {
    .header-area-three {
        background-color: #fafafa;
        position: sticky;
        top: 0;
        z-index: 9999;
    }
}
/* Mobile view adjustments */
@media (max-width: 767px) {
  .top-header-right {
    display: none;
    text-align: center;
    margin-top: 10px;
  }

  .top-header-left {
    justify-content: space-between;
    width: 100%;
  }

  .search-header-position {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
  }

  .search-bar a {
    display: block;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 50%;
    color: #fa4032;
  }

  .search-bar a i {
    font-size: 24px;
  }

  .top-menu-wrapper {
    flex-direction: column;
  }

  .header-right-three {
    display: none;
  }

  .contact-section {
    margin: 5px 0;
  }

  .contact-section .info .title {
    font-size: 14px;
  }
}

/* Tablet view adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
  .top-header-right {
    display: block;
    text-align: center;
  }

  .top-header-left {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .top-menu-wrapper {
    flex-direction: column;
  }
}

/* Desktop view adjustments */
@media (min-width: 1025px) {
  .top-header-right {
    display: flex;
    gap: 20px;
    margin-left: 20px;
  }

  .top-header-left {
    justify-content: flex-start;
  }

  .header-right-three {
    display: flex;
    align-items: center;
  }

  .lang {
    background-color: black;
    padding: 7px 25px;
    border-radius: 9px;
    border: 1px solid #12151e;
  }

  .divider {
    background: linear-gradient(135deg, #017b65, #ff75, #f767, #017b6e);
    height: 1px;
    width: 30px;
  }
}