.apps-promotion-slider {
    position: relative;
    width: 82rem;
    height: 37rem;
    aspect-ratio: 2/1;
    overflow: hidden;
    margin: 40px auto;
    color: #1a1a1a;

    /* Triple border for web (desktop) slider */
    border-radius: 1.5rem;
    border: 2px solid transparent; /* inner ring - green */
    box-shadow:
        0 0 0 4px white,   /* middle ring - blue */
        0 0 0 6px rgba(241, 210, 58, 0.486);   /* outer ring - yellow */
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    padding: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border-radius: 1.5rem;
}

.slide-content {
    flex: 1;
    color: rgb(0, 0, 0);
    max-width: 70%;
}

.slide-content .slide-title {
    color: #1A1A1A;
    font-family: Manrope;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    /* 3.25rem */
    letter-spacing: -0.025rem;
    margin-bottom: 20px;
}

.slide-content .slide-title span {
    font-family: Manrope;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    /* 3.25rem */
    letter-spacing: -0.025rem;

    background: linear-gradient(to left, #048638 0%, #006390 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-content .app-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.app-logo img {
    width: 4rem;
    height: 4rem;
}

.app-logo .logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.app-logo .logo-brand {
    color: #000;
    font-family: Manrope;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.015rem;
}

.app-logo .logo-course {
    color: #757575;
    font-family: Manrope;
    font-size: 1.16669rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.qr-section {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 30px 0;
}



.qr-code img {
    width: 12.375rem;
    height: 12.375rem;
    aspect-ratio: 1/1;
}

.qr-info h3 {
    color: var(--Neutral-Black, #1A1A1A);

    /* Heading H8- 16px/SemiBold */
    font-family: Inter;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.25rem;
    /* 125% */
    letter-spacing: -0.01rem;
}

.qr-info .scan-text {
    color: var(--Neutral-Black, #1A1A1A);
    font-family: Inter;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.25rem;
    /* 125% */
    letter-spacing: -0.01rem;
    margin-bottom: 15px;

    display: flex;
    align-items: center;
}

.qr-info .scan-text .arrow-icon {
    margin-right: 8px;
    width: 3.125rem;
    height: auto;
    display: inline-block;
}

.qr-info .scan-text span {
    color: var(--Pine-Green, #008578);
    font-family: Inter;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.25rem;
    /* 125% */
    margin-left: 3px;
    letter-spacing: -0.01rem;
}

.features-list b {
    display: contents;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;

}

.features-list div {
    display: flex;
    align-items: center;
    gap: 10px;
}


.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: var(--Neutral-Black, #1A1A1A);
    font-family: Inter;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.01125rem;
}



.slide-image {
    flex: 1;
    text-align: right;
    max-width: 400px;
}

.slide-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 20px;
    background: rgba(110, 110, 110, 0.274);
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: rgb(2, 2, 2);
}

/* Web and Mobile Slide Visibility */
.showInWeb {
    display: block;
}

.showInMob {
    display: none;
}

@media (max-width: 768px) {
    .showInWeb {
        display: none;
    }

    .showInMob {
        display: block;
    }
}

/* Responsive Design */
@media (max-width: 768px) {

    .apps-promotion-slider {
        width: 90vw;
        border-radius: 0.35775rem;
        background: linear-gradient(246deg, rgb(4 134 56 / 10%) 0%, rgba(255, 255, 255, 0) 22%, rgba(255, 255, 255, 0) 37%, rgb(255 235 132 / 48%) 100%);
        border-radius: 1.5rem;
        
        /* Triple border for mobile slider */
        border: 1px solid transparent; /* inner ring - green */
        box-shadow:
            0 0 0 2px white,   /* middle ring - blue - smaller for mobile */
            0 0 0 3px rgba(241, 210, 58, 0.486);   /* outer ring - yellow - smaller for mobile */

        margin: 1rem auto;
    }

    .carousel-slide {
        background-image: none;
        padding: 1rem;
    }

    .carousel-slide.showInMob .slide-title {
        background: radial-gradient(50% 50% at 50% 50%, #048638 0%, #006390 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-align: center;
        font-family: Inter;
        font-size: 1.09925rem;
        font-style: normal;
        font-weight: 700;
        line-height: 140%;
        /* 1.539rem */
        letter-spacing: -0.011rem;
    }

    .carousel-slide.showInMob .features-list li {
        font-size: 0.75rem;
    }

    .carousel-slide.showInMob .mobile-mockup {
        width: 30vw;
        max-width: 10rem;
        margin: 0 auto;
        height: auto;
        display: block;
    }

    .slide-content {
        width: 100%;
    }

    .mobile-gradient-decoration {
        position: absolute;
        top: 0;
        right: 0;
        width: 150px;
        height: 150px;
        border-radius: 9.57219rem;
        background: rgba(6, 255, 102, 0.06);
        filter: blur(47.70164108276367px);
        z-index: 0;
    }

    .carousel-slide.showInMob .mobile-gradient-decoration {
        position: absolute;
        top: 0;
        right: 0;
        width: 150px;
        height: 150px;
        border-radius: 9.57219rem;
        background: rgba(6, 255, 102, 0.06);
        filter: blur(47.70164108276367px);
        z-index: 0;
    }

    .app-logo img {
        width: 2rem;
        height: 2rem;
    }

    .app-logo .logo-brand {
        font-size: 0.82563rem;

    }

    .app-logo .logo-course {
        font-size: 0.64213rem;

    }

    .slide-content {
        max-width: 100%;
    }


    .features-list div {
        margin-bottom: 1rem;
    }

    .features-list div img {
        width: 0.64213rem;
        height: 0.64213rem;
        aspect-ratio: 10.27/10.27;
    }

    .features-list li {
        margin-bottom: 0;
    }

    .qr-info .scan-text span {
        font-size: 0.64213rem;
    }

    .qr-info .scan-text {
        font-size: 0.64213rem;
        margin: .5rem auto;
        text-align: center;
    }

    .yellowBtnSlider {
        width: 100%;
        color: var(--Neutral-Black, #1A1A1A);
        text-align: center;
        font-family: Inter;
        font-size: 0.73388rem;
        font-style: normal;
        font-weight: 700;
        line-height: 0.91731rem;
        /* 125% */
        letter-spacing: -0.00369rem;

        margin-top: 1.5rem;
    }
}