.quick-donaiton-container{
    margin: auto;
    border-radius: 25px;
    background-color: #D19F00;
    background-image: url("https://d3nywiem7cudxt.cloudfront.net/upload/images/default/yol.png");
    background-position: bottom center;
    background-repeat: no-repeat;
}
@media screen and (max-width: 725px) {
    .quick-donaiton-container {
        width: 90%;
    }
}
#mainTopIcons .topIconDiv{
    transition: all ease-in .4s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
}
#mainTopIcons .topIconDiv:hover{
    background-color: rgb(7, 27, 44);
}
#mainTopIcons .topIconDiv:hover img{
    filter: invert(1) brightness(2);
}

#mainProjects {
    width: 100%;
    height: 550px;
    background-color: rgba(7, 27, 44, 0.7);
    position: relative; /* Pseudo-element için referans noktası */
}

#mainProjects::before {
    content: ""; /* İçerik eklenmeli */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://d3nywiem7cudxt.cloudfront.net/upload/images/default/projectBanner.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1; /* Arkada kalmasını sağlamak için */
}
#mainStories .sliderBackground{
    min-height: 550px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#mainStories {
    position: relative;
}
.custom-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    z-index: 9999;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none; /* Slider içindeki tıklamalara engel olmasın */
}
.custom-nav button {
    background-color: #f6f6f6; /* Hafif saydam siyah */
    color: #333;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    pointer-events: all; /* Tıklanabilir hale getir */
    transition: 0.3s;
}

#mainStories .custom-nav button:hover {
    background-color: #f7f7f7;
}
.prevSlide {
    margin-left: 180px; /* Sol butonun kenardan uzaklığı */
    font-size: 30px;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nextSlide {
    margin-right: 180px; /* Sağ butonun kenardan uzaklığı */
    font-size: 30px;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.yn-bg-settings{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.cs-slider_for {
    position: relative; /* Bunu ekleyerek noktalara referans noktası oluşturuyoruz */
    z-index: 1;
}
.bg-gray.ynAnasliderBggray {
    position: relative; /* Noktaların slider'a göre hizalanması için */
    z-index: 1;
    min-height: 620px;
}
.youtube-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    background: #000;
    overflow: hidden;
}
.youtube-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.youtube-placeholder .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    border-radius: 50%;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}