/*==== Mobile Project Slider for Style-7 ====*/

@media (max-width: 767px) {
    .project-section.style-7 .row.gx-0 {
        overflow: hidden;
        margin: 0;
    }

    .project-section.style-7 .row.gx-0 .col-lg-3 {
        width: 100%;
        flex-shrink: 0;
    }

    /* Swiper container styling */
    .project-section.style-7 .row.gx-0.project-swiper {
        display: flex;
        transition: transform 0.3s ease;
    }

    /* Swiper wrapper */
    .project-section.style-7 .project-swiper .swiper-wrapper {
        display: flex;
    }

    /* Project boxes in mobile */
    .project-section.style-7 .project-swiper .project-box-five {
        min-height: 500px;
    }

    /* Swiper pagination */
    .project-section.style-7 .project-pagination {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .project-section.style-7 .project-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
        outline: none;
    }

    .project-section.style-7 .project-pagination .swiper-pagination-bullet-active {
        background: var(--theme-color, #C9302C);
        width: 24px;
        border-radius: 4px;
    }

    /* Touch hint for users */
    .project-section.style-7 .project-swiper::before {
        content: "Swipe to explore →";
        position: absolute;
        bottom: 10px;
        right: 20px;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.6);
        z-index: 10;
        animation: fadeOut 3s ease-in-out;
        pointer-events: none;
    }

    @keyframes fadeOut {
        0%, 70% { opacity: 1; }
        100% { opacity: 0; }
    }
}

@media (min-width: 768px) {
    .project-section.style-7 .project-pagination {
        display: none;
    }

    .project-section.style-7 .project-swiper::before {
        display: none;
    }
}