body{
    background-color: #f8f7f7;
    font-family: "system-ui";
}

.nav-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 4px;
    padding: 0px 16px;
    border-radius: 8px;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .nav-container {
        justify-content: center;
        gap: 20px;

    }
}

.middle-nav span{
    font-family: "system-ui";
    font-size: 20px;
    font-weight: 600;
}

.image-container{
    display:flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 50%;
    height: 90px;
    width: 90px;
}

.search-bar button, input {
    font: 1em Hind, sans-serif;
    line-height: 1.5em;
}
.search-bar input {
    color: #171717;
    border: none;
}
.search-bar {
    display: flex;
    min-width: 300px;
}

.search-bar input,
.search-btn,
.search-btn:before,
.search-btn:after {
    transition: all 0.25s ease-out;
}
.search-bar input,
.search-btn {
    width: 3em;
    height: 3em;
}
.search-bar input:invalid:not(:focus),
.search-btn {
    cursor: pointer;
}
.search-bar,
.search-bar input:focus,
.search-bar input:valid  {
    width: 100%;
}
.search-bar input:focus,
.search-bar input:not(:focus) + .search-btn:focus {
    outline: transparent;
}
.search-bar {
    margin: auto;
    justify-content: center;
    max-width: 30em;
}
.search-bar input {
    background: transparent;
    border-radius: 1.5em;
    box-shadow: 0 0 0 0.4em #171717 inset;
    padding: 0.75em;
    transform: translate(0.5em,0.5em) scale(0.5);
    transform-origin: 100% 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.search-bar input::-webkit-search-decoration {
    -webkit-appearance: none;
}
.search-bar input:focus,
.search-bar input:valid {
    background: #fff;
    border-radius: 0.375em 0 0 0.375em;
    box-shadow: 0 0 0 0.1em #d9d9d9 inset;
    transform: scale(1);
}
.search-btn {
    background: #171717;
    border-radius: 0 0.75em 0.75em 0 / 0 1.5em 1.5em 0;
    padding: 0.75em;
    position: relative;
    transform: translate(0.25em,0.25em) rotate(45deg) scale(0.25,0.125);
    transform-origin: 0 50%;
}
.search-btn:before,
.search-btn:after {
    content: "";
    display: block;
    opacity: 0;
    position: absolute;
}
.search-btn:before {
    border-radius: 50%;
    box-shadow: 0 0 0 0.2em #f1f1f1 inset;
    top: 0.75em;
    left: 0.75em;
    width: 1.2em;
    height: 1.2em;
}
.search-btn:after {
    background: #f1f1f1;
    border-radius: 0 0.25em 0.25em 0;
    top: 51%;
    left: 51%;
    width: 0.75em;
    height: 0.25em;
    transform: translate(0.2em,0) rotate(45deg);
    transform-origin: 0 50%;
}
.search-btn span {
    display: inline-block;
    overflow: hidden;
    width: 1px;
    height: 1px;
}

/* Active state */
.search-bar input:focus + .search-btn,
.search-bar input:valid + .search-btn {
    background: #2762f3;
    border-radius: 0 0.375em 0.375em 0;
    transform: scale(1);
}
.search-bar input:focus + .search-btn:before,
.search-bar input:focus + .search-btn:after,
.search-bar input:valid + .search-btn:before,
.search-bar input:valid + .search-btn:after {
    opacity: 1;
}
.search-bar input:focus + .search-btn:hover,
.search-bar input:valid + .search-btn:hover,
.search-bar input:valid:not(:focus) + .search-btn:focus {
    background: #0c48db;
}
.search-bar input:focus + .search-btn:active,
.search-bar input:valid + .search-btn:active {
    transform: translateY(1px);
}

@media screen and (prefers-color-scheme: dark) {
    body, input {
        color: #f1f1f1;
    }
    body {
        background: #171717;
    }
    .search-bar input {
        box-shadow: 0 0 0 0.4em #f1f1f1 inset;
    }
    .search-bar input:focus,
    .search-bar input:valid {
        background: #3d3d3d;
        box-shadow: 0 0 0 0.1em #3d3d3d inset;
    }
    .search-btn {
        background: #f1f1f1;
    }
}

.divider-gold{
    height: 2px;
    background-color: gold;
    margin: 60px 10%;
}

.card{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}
.image-c{
    border-radius: 20px;
    margin-top: 10px;
    display: inline-block;
    overflow: hidden;
}
.image-c img{
    width: 200px;
    height: 200px;
    object-fit: contain;
    display: block;
    transition: transform .4s;
}

.image-c img:hover{
    transform: scale(1.2);
    transform-origin: 50% 50%;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-gap: 20px;
    padding: 20px;
}

@media (max-width: 600px) {
    .grid-container {
        display: flex;
        flex-direction: column;
    }
}
.grid-item {
    background-color: white;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px;
    transition: all .3s ease-in-out;
    padding-bottom: 20px;
}



.grid-item:hover {
    box-shadow: rgba(0, 0, 0, 0.22) 0px 19px 43px;
    transform: translate3d(0px, -1px, 0px);
}



.emertim{
    font-size: 22px;
    font-weight: 650;
    text-decoration: none;
    white-space: nowrap;
}

.bussines_desc{

    font-size: 20px;
    font-weight: 550;
}

.footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 80px;
    border-top: 2px solid black;

    width: 100%;
}

.rights{
    font-size: 20px;
    font-weight: 550;
}

.info{
    display: flex;
    align-items: center;
    gap: 20px;
}

.info span{
    font-size: 18px;
    font-weight: 500;
    padding: 8px;
    border: 1px solid #f8f7f7;
}

.info span:hover{
    background-color: white;
    border-radius: 20px;
    border: 1px solid black;
    cursor: pointer;
}

.notranslated {
    unicode-bidi: plaintext;
}

.skiptranslate > iframe {
    z-index: -10;
    visibility: hidden !important;
}

.goog-te-gadget {
    font-size: 0 !important;
}

.goog-te-gadget span {
    display: none !important;
}

.goog-te-banner-frame .skiptranslate {
    display: none !important;
}

.language-selector-ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    margin-top: 0.9rem;
}

.language-selector-ul .language-selector-item {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.language-selector-ul .nav-link {
    padding: 0;
    font-weight: bold;
    margin-right: 10px;
}