/* Scroll ilerleme çubuğu */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, #00bcd4, #7c4dff);
    z-index: 9999;
    transition: width 0.15s ease-out;
}
/* Scrollbar  */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Scroll arka planı */
::-webkit-scrollbar-track {
    background: #e0f7fa; /* açık turkuaz */
    border-radius: 10px;
}

/* Scroll*/
::-webkit-scrollbar-thumb {
    background-color: #0077b6; /* turkuaz */
    border-radius: 10px;
    border: 2px solid #e0f7fa;
}


    ::-webkit-scrollbar-thumb:hover {
        background-color: #0097a7; /* biraz daha koyu turkuaz */
    }

/* Arka plan ve resimler */
#bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('/images/bg_pic.webp') center/cover no-repeat;
    z-index: -2;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}
.content-image img {
    max-width: 70%;
    height: 380px;
    object-fit: cover;
    border-radius: 10px;
}
@media (max-width: 768px) {

    .content-image img {
        height: 200px; 
        max-width: 500px;
    }


}