/* Mobile App Mockup Carousel Styles */
.mobile-app-section {
    background-color: #030303;
    padding: 100px 0;
    overflow: hidden;
}

.mobile-app-title-wrap {
    margin-bottom: 60px;
}

.phone-carousel {
    padding: 50px 0;
}

.iphone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
    border-radius: 40px;
    background: #111;
    border: 8px solid #222;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.iphone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #000;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 10;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fff;
}

.iphone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide {
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0.4;
    transform: scale(0.85);
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1.1);
    z-index: 2;
}

.swiper-slide-active .iphone-mockup {
    box-shadow: 0 30px 60px rgba(14, 167, 209, 0.3);
    border-color: #0ea7d1;
}

.mobile-app-content {
    margin-top: 40px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.swiper-slide-active .mobile-app-content {
    opacity: 1;
}

.app-name {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.app-category {
    font-size: 14px;
    color: #0ea7d1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Custom Navigation */
.mobile-app-pagination {
    margin-top: 50px !important;
    position: relative !important;
}

.mobile-app-pagination .swiper-pagination-bullet {
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0 6px !important;
    opacity: 0.3;
}

.mobile-app-pagination .swiper-pagination-bullet-active {
    background: #0ea7d1;
    opacity: 1;
}