    .sticky-header {
        background-color: #fff;
        padding: 1% 10%;
        position: fixed;
        top: -100px;
        left: 0;
        width: 100%;
        height: 10%;
        z-index: 999;
        transform: translateY(-100%); /* Varsayılan olarak gizli */
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }
    .sticky-header.visible {
        top: -7px;
        transform: translateY(0);
    }

    .sticky-header-flex{
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: center;
        height: 100%;
    }
    
    .sticky-header-flex{
        width: 100%;
        display: flex;
        padding: 0;
    }

    .menu-icon-flex{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    
    .menu-icon-sticky {
        display: none;
        font-size: 1.8rem; /* Buton boyutunu ayarla */
        color: #fd8914; /* Buton rengi */
        cursor: pointer;
        z-index: 10;
        
    }

    .logo-flex{
        display: flex;
        justify-content: flex-start;
        width: auto;
    }

    .logo-sticky{
        margin-top: 50px;
        width: 50%;
        height: auto;
        z-index: 1001;
        background-color: #fff;
        border-radius: 80px;
        padding: 5px;
    }
    .nav-sticky{
        z-index: 10;
    }

    .nav-sticky a{
        color:#fd8914;
        text-decoration: none;
        margin-left: 20px;
        font-size: 1rem;
        font-weight: bold;
        transition: color 0.3s;
        z-index: 1000;
    }

    .nav-sticky .lang{
        margin-left: 30px;
    }

    .nav-sticky .lang a{
        margin: 0;
    }

    @media (max-width:768px){

        .sticky-header {
            padding: 2% 10%;
            height: 10%;
        }
        .nav-sticky{
            display: none;
        }
        
        .menu-icon-sticky {
            display: block;
        }
        
        .sticky-header.visible {
            transform: translateY(-3px);
        }

        .logo-flex{
            justify-content: flex-end;
            padding-left: 30%;
        }
        .logo-sticky{
            width: 85%;
        }

    }
