.logo{
    margin-right: 42px;
    width: 62%;
    margin-top: 1%;
}
.secondlogo{
    width: 62%;
    margin-top: 1%;
    margin-left: 62%;
}

.logo-mob{
    width:50%
}

.right-menu-margin-left{
    margin-left: -43%;
}

.menu-margin-right{
    margin-left: 17% !important;
}


.header-menu-bar{
    padding: 10px;
}



.language-selector {
    position: relative;
    margin-left: 50%;
}

.language-selector > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px !important;
}

.language-dropdown {
    position: absolute;
    right: 0;
    top: 100%;
    min-width: 100px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 5px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
}

.language-dropdown li a {
    display: block;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

.language-dropdown li a:hover {
    background: #f5f5f5;
}

/* RTL support for Arabic */
.language-dropdown li a[data-lang="ar"] {
    direction: rtl;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Adjust existing menu for language selector */
.header-menu-right ul {
    display: flex;
    align-items: center;
}

.logo-footer{
    width: 50%;
}
.half-screen{
    height: 50vh;
}
.map-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
  }

  .map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }


  .zoom-img {
    transition: transform 0.3s ease;
}

.zoom-img:hover {
    transform: scale(1.1);
}
.icon svg path:nth-of-type(2) {
    fill: #000000;
    transition: fill 0.3s ease;
  }

  .icon:hover svg path:nth-of-type(2) {
    fill: #ffffff;
  }

  #suggestions-list {
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    list-style: none;
    padding: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    z-index: 999;
}

#suggestions-list li {
    padding: 8px;
    cursor: pointer;
}

#suggestions-list li:hover {
    background-color: #f0f0f0;
}

.sidebar-search {
    position: relative;
}