﻿@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        transform: translateZ(0);
    }
}

.scrolling {
    position: fixed;
    width: 100%;
    top: 0;
    animation: fadeInDown 0.9s 1;
    backdrop-filter: blur(10px);
}
    .scrolling.bg-navbar {
        background: rgba(0, 0, 0, 0.5) !important
    }


/* Swiper mavi overlay sorununu çöz */
.swiper-slide img {
    pointer-events: none;
    user-select: none;
}

/* Pagination stilleri */
/*.swiper-pagination-bullet {
    background: #9ca3af;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #3b82f6;
    opacity: 1;
}*/
