        body {
            margin: 0;
            padding: 0;
            overflow: hidden;
        }

        .container-fluid {
            position: relative;
            height: 100vh;
            display: flex;
            flex-wrap: wrap;
        }
        /* Kayan Bar Tasarımı */
        .top-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 60px;
            overflow: hidden;
            background-color: rgb(29 47 84 / 54%); /* Şeffaf arka plan */
            font-size: 20px;
            font-weight: bold;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        /* Yazılar için stil */
        .top-bar span {
            position: absolute;
            white-space: nowrap;
            opacity: 0; /* Varsayılan olarak görünmez */
            transform: translateX(100%); /* Sağdan başlat */
            transition: all 1s ease-in-out;
        }

        .top-bar span.active {
            opacity: 1;
            transform: translateX(0); /* Ortada durur */
        }

        .top-bar span.exit {
            opacity: 0;
            transform: translateX(-100%); /* Soldan çıkar */
        }

        .logo-section {
            background-color: #f4f4f4;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50%;
            position: absolute;
            height: 100%;
            left: 0;
            flex-direction: column;
        }

        .content-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 0;
            width: 50%;
            height: 100%;
            position: absolute;
            right: 0;
        }

        .content-box {
            position: relative;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            border: none;
            cursor: pointer;
            width: 100%;
            padding-top: 100%; /* Kare şekli oluşturur */
            transition: transform 0.3s ease;
        }

        .content-box img {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: translate(-50%, -50%);
            transition: transform 0.3s ease;
        }

        .content-box:hover img {
            transform: translate(-50%, -50%) scale(1.1); /* Resmin büyümesi */
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 1; /* Her zaman görünür */
            transition: opacity 0.3s ease-in-out;
        }

        .overlay h4 {
            margin: 0;
            font-size: 24px;
            position: relative;
        }

        .overlay i {
            font-size: 32px;
            margin-top: 8px;
        }

        .details-section {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #fff;
            display: none;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            text-align: center;
            padding: 20px;
        }

        .details-section.active {
            display: flex;
        }

        .details-section h1 {
            margin-bottom: 20px;
        }

        .close-btn {
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
        }

        /* Mobil ekranlar için medya sorgusu */
        @media (max-width: 768px) {
            .container-fluid {
                flex-direction: column; /* Esnek düzeni dikey yapıyoruz */
            }

            /* Logo ve içerik alanını dikey olarak hizalayacağız */
            .logo-section, .content-section {
                width: 100%;
                height: auto; /* Yükseklik ayarı yapılacak */
                padding-top: 20%;
            }

            /* Karelerin altına kayması için içerik kutularını %100 genişlikte yapıyoruz */
            .content-section {
                display: flex; /* Flex kullanarak sıralanmasını sağlıyoruz */
                flex-wrap: wrap;
                padding-top: 70%;
                justify-content: center;
            }

            .content-box {
                width: 45%; /* Daha geniş alan kullanabilmesi için %45 genişlik */
                padding-top: 45%; /* Kare formu korur */
            }

            .overlay h4 {
                font-size: 20px;
            }

            .overlay i {
                font-size: 28px;
            }

            /* Mobil görünümde Kanban butonunu gizle */
            .logo-section .btn-primary {
                display: none !important;
            }
            .logo-section .text-muted {
                display: none !important;
            }
        }

        /* Sosyal medya logoları */
        .social-icons {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap; /* Dikeyde de sıralanmasını sağlıyor */
            gap: 15px; /* İkonlar arasında boşluk */
        }

        .social-icons a {
            margin: 0 10px;
            font-size: 24px;
            color: #333;
            transition: color 0.3s ease;
        }

        .social-icons a:hover {
            color: #007bff;
        }

        /* Mobil ekranlarda daha uygun bir görünüm */
        @media (max-width: 768px) {
            .social-icons a {
                margin: 0 12px; /* Mobilde daha geniş aralık */
                z-index: 2;
            }
        }

        /* Kanban logo stili */
        .kanban-logo {
            width: 24px;
            height: 24px;
            margin-left: 8px;
            vertical-align: middle;
            object-fit: contain;
        }

        .logo-section .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 20px;
        }