/* Apps Section Styling */
.app-card {
    transition: all 0.3s ease;
}

.app-card .app-card-inner {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-card:last-child .app-card-inner {
    border-bottom: none;
}

.app-card.active .app-card-inner {
    background: #30C3B5 !important;
    border-radius: 12px;
    border-color: transparent !important;
    transform: scale(1.02);
    box-shadow: 0 15px 30px -10px rgba(48, 195, 181, 0.4);
}

.app-card.active .app-card-inner h3,
.app-card.active .app-card-inner i {
    color: white !important;
}

.app-card.active .app-card-inner .icon-box {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

.phone-mockup-wrapper .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(48, 195, 181, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(48, 195, 181, 0.3);
    color: #30C3B5;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    cursor: pointer;
    transition: all 0.3s ease;
}

.phone-mockup-wrapper .nav-btn:hover {
    background: #30C3B5;
    color: white;
}

.phone-mockup-wrapper .nav-btn.prev {
    left: -50px;
}

.phone-mockup-wrapper .nav-btn.next {
    right: -50px;
}

.phone-frame {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.phone-frame:hover {
    transform: scale(1.02);
}