    .swiper-slide {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 10px;
    }

    .project-item {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    .fixed-img {
        width: 100%;
        max-width: 450px;
        height: 300px; /* تكبير الصورة */
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .fixed-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .project-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 85%; /* جعل الصندوق أصغر من الصورة */
        z-index: 2;
        position: relative;
        background: rgba(255, 255, 255, 0.9); /* لجعل الدف غير بارز بشكل زائد */
        margin-top: -40px; /* رفع الدف قليلاً فوق */
        padding: 20px;
        border-radius: 10px;
    }

    .project-content-inner a {
        font-size: 18px;
        font-weight: bold;
        text-align: center;
        display: block;
        padding: 10px;
        line-height: 1.5;
        white-space: normal;
    }

    .project-content .btn {
        display: block;
        width: 70%;
        text-align: center;
        margin: 10px auto;
        font-size: 16px;
    }

    @media (max-width: 768px) {
        .swiper-slide {
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .fixed-img {
            width: 100%;
            max-width: 350px;
            height: 220px;
        }

        .project-content {
            width: 90%;
            margin-top: -30px;
        }
    }
