.ls-wide {
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}

.btn-primary-red {
    background: var(--new) !important;
}

.btn-primary-red:hover {
    background: black !important;
}

.progression-section .badge-orange {
    color: #FFF;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
}

@media (min-width:1200.5px) {
    .hero-section .image-wrapper {
        position: absolute;
        bottom: 0%;
        max-width: 34rem;
        right: 0;
    }
}

@media (min-width:991.5px) and (max-width:1200px) {
    .hero-section .image-wrapper {
        position: absolute;
        bottom: 0%;
        max-width: 33rem;
        right: 0;
    }
}

.visa-section-diff{
        background: #f6f6f6;
}
 .visa-section-diff .visa-container {
            border: 1px solid #eeeeee;
            border-radius: 2px; /* Sharp, professional corners */
            background-color: #fcfcfc;
        }

        .visa-section-diff .accent-line {
            width: 60px;
            height: 4px;
            background: #000000;
            margin: 1.5rem auto;
        }

        .visa-section-diff .question-card {
            background: white;
            border: 1px solid #e0e0e0;
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
        }

        .visa-section-diff .vs-badge {
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 2px;
            padding: 4px 12px;
            background: #f0f0f0;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .visa-section-diff .comparison-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #444;
        }

        .visa-section-diff .highlight-text {
            color: #000000;
            font-weight: 700;
        }

.curriculum-arc {
    background: #f3f3f3;
}

.curriculum-arc .custom-accordion .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid #d8d8d8;
}

.curriculum-arc .custom-accordion .accordion-button {
    background: transparent;
    box-shadow: none;
    padding: 28px 0;
    font-size: 35px;
    font-weight: 800;
    color: #000;
}

.curriculum-arc .custom-accordion .accordion-button:not(.collapsed) {
    color: #00b7d9;
    background: transparent;
}

.curriculum-arc .custom-accordion .accordion-button::after {
    filter: grayscale(100%);
}


.what-you-section .card-stack {
    border: none;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.what-you-section .card-stack:hover {
    transform: translateY(-5px);

}

.what-you-section .icon-container {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}


.motion-section {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.motion-section .highlight-box {
    background: rgba(56, 189, 248, 0.05);
    border-left: 4px solid #38bdf8;
    ;
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
}



.motion-section .step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}


        .who-this-is-for .feature-image-wrapper {
            border-radius: 24px;
            overflow: hidden;
            height: 100%;
        }

        .who-this-is-for .feature-image-wrapper img {
            width: 100%;
            height: 100% !important;
            object-fit: cover;
        }

        .who-this-is-for .persona-card {
            background: #ffffff;
            border: 1px solid #efefef;
            border-radius: 20px;
            padding: 20px;
            height: 100%;
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .who-this-is-for .persona-card:hover {
            transform: translateY(-8px);
            border-color: #000;
        }

        .who-this-is-for .icon-box {
            width: 50px;
            height: 50px;
            background: #f8f9fa;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .scroll-container {
    position: relative;
    cursor: grab;
    overflow: hidden
}

.testimonial-text p {
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.scroll-container:active {
    cursor: grabbing
}

.scroll-track {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2rem;
    animation: auto-scroll 60s linear infinite;
    margin-top: 20px
}

.scroll-container:hover .scroll-track {
    animation-play-state: paused
}

@keyframes auto-scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}