@import url('https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css');
/* commons  */
.swiper-wrapper {
    transition-timing-function: linear !important;
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
}

.swiper-free-mode>.swiper-wrapper {
    transition-timing-function: linear !important;
}

/* Hero Section | Section - 1  */
.hero-section {
    padding-block: 120px;

    .content {
        display: flex;
        justify-content: space-between;
        align-items: start;

        .right-side {
            max-width: 515px;
            width: 100%;

            .cta-secondary-container {
                margin-top: 24px;
            }
        }
    }

    .hero-swiper {
        width: 100%;
        height: auto;
        margin-top: 60px;

        .swiper {
            .swiper-wrapper {
                pointer-events: none;

                .swiper-slide {
                    border-radius: 12px;
                    overflow: hidden;
                    pointer-events: none;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }

                    /*&:nth-child(odd) {
                        height: 355px;
                    }

                    &:nth-child(even) {
                        height: 280px;
                    }*/
                }
            }
        }

    }

    @media screen and (max-width: 1024px) {
        & {
            padding-block: 60px;

            .content {
                flex-direction: column;

                .right-side {
                    .para-primary {
                        margin-top: 12px;
                    }

                    .cta-secondary-container {
                        margin-top: 32px;
                    }
                }
            }

            .hero-swiper {
                margin-top: 40px;

                .swiper {
                    .swiper-wrapper {
                        .swiper-slide {
    /* 
    &:nth-child(odd) {
        height: 235px;
    }

    &:nth-child(even) {
        height: 180px;
    }
    */
}
                    }
                }
            }
        }
    }
}

/* core beliefs | Section - 2  */
.pillars-container {
    background: var(--section-gradient);
    padding-bottom: var(--spacer-32);

    .pillars-main {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: center;
        gap: var(--spacer-60);
        margin-block: 120px;

        .content {
            max-width: 625px;
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            margin-inline: auto;

            .para-primary {
                margin-top: 8px;
            }
        }

        .pillars-cards {
            width: 100%;
            height: auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 24px;

            .card {
                position: relative;
                width: 100%;
                height: 330px;
                /* height: auto; */
                border: var(--border-light-blue);
                background: var(--bg-white);
                border-radius: 8px;
                padding: 32px 24px;
                overflow: hidden;
                z-index: 2;

                .card-top {
                    width: 100%;
                    height: auto;
                    display: flex;
                    justify-content: start;
                    align-items: center;
                    gap: 16px;
                    margin-top: 0;
                    opacity: 1;
                    transition: margin-top 500ms ease, opacity 500ms ease;

                    img {
                        width: 70px;
                        height: 70px;
                        object-fit: cover;
                    }
                }

                .para-primary {
                    margin-top: var(--spacer-120);
                    transition: margin-top 400ms linear;
                    color: #747474;
                }

                .gradient-bottom {
                    position: absolute;
                    width: 100%;
                    max-height: 85px;
                    height: 100%;
                    bottom: 0;
                    left: 0;
                    background: linear-gradient(0deg,
                            #fff 32.74%,
                            rgba(255, 255, 255, 0) 92.86%);
                    transition: background 300ms ease;
                }

                &:hover {
                    border: 1px solid transparent;
                    transition: all 0.2s ease-in-out;

                    .card-top {
                        margin-top: -45px;
                        opacity: 0;
                        transition: margin-top 500ms ease, opacity 500ms ease;
                    }

                    .para-primary {
                        margin-top: -35px;
                        transition: margin-top 400ms linear;
                    }

                    .gradient-bottom {
                        background: linear-gradient(0deg,
                                #fff 0%,
                                rgba(255, 255, 255, 0) 0%);
                        transition: background 300ms ease;
                    }

                    &::before {
                        position: absolute;
                        content: "";
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: linear-gradient(53deg,
                                #8fc3ff 21.4%,
                                #a984ff 43.99%,
                                #e6323a 78.36%);
                        mask: linear-gradient(#1e1e1e 0 0) content-box,
                            linear-gradient(#1e1e1e 0 0) padding-box;
                        mask-composite: exclude;
                        border-radius: 8px;
                        transition: background 2000ms ease-in-out, mask 2000ms ease-in-out;
                        padding: 1px;
                        z-index: -1;
                    }
                }
            }
        }
    }

    @media screen and (min-width: 601px) and (max-width: 1024px) {
        & {
            .pillars-main {
                .content {
                    max-width: 100%;
                }
            }
        }
    }

    @media screen and (max-width: 1024px) {
        & {
            background: none;
            padding-bottom: 0;

            .pillars-main {
                gap: 32px;
                margin-block: 60px;

                .content {
                    text-align: start;
                    align-items: start;

                    .eyebrow {
                        width: 100%;
                    }

                    h2 {
                        width: 100%;
                        text-align: start;
                    }
                }

                .pillars-cards {
                    display: none;
                }
            }
        }
    }
}

@media screen and (max-width: 1024px) {
    .mobile {
        height: 100%;
        /*margin-top: 32px;*/

        .pillarsSwiperMobile {
            width: 100%;
            height: 100%;
            padding: 0 24px;

            .swiper-wrapper {
                width: 100%;
                height: 100%;
            }

            .swiper-slide {
                position: relative;
                width: 100%;
                min-height: 100%;
                border: var(--border-light-blue);
                display: flex;
                flex-direction: column;
                justify-content: start;
                align-items: start;
                gap: 15px;
                border-radius: 8px;
                overflow: hidden;
                padding: 24px;
                z-index: 9;

                .card-top {
                    width: 100%;
                    height: auto;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;

                    img {
                        width: 60px;
                        height: 60px;
                    }
                }

                .para-primary {
                    text-overflow: ellipsis;
                    color: var(--text-grey4);
                    /* display: -webkit-box;
          overflow: hidden;
          -webkit-box-orient: vertical;
          -webkit-line-clamp: 10; */
                }
            }

            .swiper-pagination {
                position: relative !important;
                text-align: start !important;
                margin-top: 24px !important;
            }

            .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
                margin: 0;
                margin-right: 20px;
            }

            .swiper-pagination-bullet {
                position: relative;
                width: 25px !important;
                height: 3px !important;
                border-radius: 5px !important;
                text-align: left;
                /* margin-right: 20px; */
                background-color: var(--bg-light-blue) !important;
                transition: all 0.2s ease;
                opacity: 1 !important;

                i {
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    z-index: 1;
                    height: 3px !important;
                    border-radius: 5px !important;
                    background-color: var(--bg-light-blue) !important;
                }

                b {
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    z-index: 2;
                    height: 3px !important;
                    border-radius: 5px !important;
                    background-color: rgba(17, 17, 17, 1);
                }
            }

            .swiper-pagination-bullet-active {
                background-color: var(--bg-light-blue) !important;
                width: 68px !important;
                height: 3px !important;
                transition: all 0.2s ease;

                b {
                    animation-name: countingBar;
                    animation-duration: 5s;
                    animation-timing-function: ease-in;
                    animation-iteration-count: 1;
                    animation-direction: alternate;
                    animation-fill-mode: forwards;
                }
            }
        }
    }

    @keyframes countingBar {
        0% {
            width: 0;
        }

        100% {
            width: 100%;
        }
    }
}

/* What Drives Us | Section - 3  */
.drive-container {
    max-height: 450px;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: end;
    gap: 24px;
    margin-block: 120px;

    .left-container {
        max-width: 60%;
        width: 100%;
        height: -webkit-fill-available;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: stretch;
        flex: 1;

        .info-cards {
            /* margin-top: 96px; */
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: column;
            justify-content: end;
            align-items: start;
            gap: 24px;

            .card {
                width: 100%;
                height: auto;
                padding: 32px;
                border: var(--border-light-blue);
                border-radius: 20px;
                background: var(--section-gradient);
                text-align: start;

                p {
                    margin-top: 8px;
                }
            }
        }
    }

    .right-container {
        width: 40%;
        height: 450px;
        border-radius: 12px;
        flex-shrink: 0;
        overflow: hidden;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    @media screen and (max-width: 1024px) {
        & {
            max-height: 100%;
            flex-direction: column;
            margin-block: 60px;

            .left-container {
                max-width: 100%;
                gap: 32px;

                .info-cards {
                    gap: 16px;

                    .card {
                        padding: 16px;

                        h4 {
                            font-size: 18px;
                            font-weight: 400;
                        }
                    }
                }

                .right-container {
                    width: 100%;
                    height: 100%;

                    margin-top: 0;
                }
            }
        }
    }
}

/* Job listing | Section - 4  */
.listing-container {
    max-width: 1056px;
    /* width: 100%; */
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-block: 120px;

    .top-content {
        text-align: center;
    }

    .postings {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;

        .post {
            width: 100%;
            height: 100%;
            padding: 20px 24px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-bottom: var(--border-light-blue);
            border-radius: 8px;
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
            background: var(--bg-white);
            transition: background 0.2s ease;

            .content {
                width: 100%;
                height: auto;
                text-align: start;

                ul {
                    width: 100%;
                    height: auto;
                    display: flex;
                    justify-content: start;
                    align-items: start;
                    gap: 24px;
                    margin-top: 16px;

                    li {
                        list-style: none;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        gap: 4px;
                        color: var(--bg-grey5);
                    }
                }
            }

            a.linkedin-cta {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 8px;
                flex-shrink: 0;
                text-decoration: none;
                color: unset;

                img {
                    width: 24px;
                    height: 24px;
                    object-fit: cover;
                }

                p {
                    color: var(--text-black-primary);
                }
            }

            &:hover {
                background: #F4F9FF;
                transition: background 0.2s ease;
                border-bottom: 1px solid transparent;
                border-bottom-left-radius: 8px;
                border-bottom-right-radius: 8px;
            }
        }
    }

    .notfound-container {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: space-between;
        align-items: start;
        padding: 40px;
        border: var(--border-light-blue);
        background: var(--section-gradient);
        border-radius: 12px;

        h4 {
            max-width: 393px;
            width: 100%;
        }

        .right-content {
            max-width: 476px;
            width: 100%;
            height: auto;

            text-align: start;

            a {
                width: 100%;
                height: auto;
                text-decoration: none;
                display: flex;
                justify-content: start;
                align-items: center;
                gap: 4px;
                margin-top: 32px;
                color: var(--bg-black-primary);
            }
        }
    }

    .nopost-container {
        position: relative;
        width: 100%;
        max-width: 1160px;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        .gradient-bg {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.60) 0%, rgba(244, 249, 255, 0.60) 54.5%, rgba(255, 255, 255, 0.60) 100%);
            filter: blur(25px);
            z-index: -1;
        }

        .sub-heading-primary {
            margin-top: 40px;
        }

        .para-primary {
            margin-top: 8px;
        }

        a {
            width: 100%;
            height: auto;
            text-decoration: none;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4px;
            margin-top: 32px;
            color: var(--bg-black-primary);
        }
    }

    @media screen and (max-width: 1024px) {
        & {
            max-width: 100%;
            width: auto;
            align-items: start;
            gap: 32px;
            margin-block: 60px;
            margin-inline: 24px;

            .top-content {
                text-align: start;
            }

            .postings {
                gap: 16px;

                .post {
                    border: var(--border-light-blue);
                    background: var(--section-gradient);
                    padding: 16px;
                    align-items: end;
                    border-bottom-left-radius: 8px;
                    border-bottom-right-radius: 8px;

                    .content {
                        ul {
                            gap: 12px;
                            flex-direction: column;
                        }
                    }
                }
            }

            .notfound-container {
                flex-direction: column;
                padding: 32px 20px;

                h4 {
                    line-height: 24px;
                    font-weight: 400;
                }

                .para-primary {
                    margin-top: 8px;
                }
            }

            .nopost-container {
                margin-inline: auto;

                .brief-case {
                    width: 143px;
                    height: 105px;
                }

                .sub-heading-primary {
                    margin-top: 28px;
                }

                a {
                    margin-top: 24px;
                }
            }
        }
    }

    @media (min-width: 984px) and (max-width: 1070px) {
        .container {
            margin-inline: auto !important;
        }
    }
}

/* Why Work with is | Section - 5   */
.useCase {
    position: relative;
    width: auto;
    height: 1100px;
    display: flex;
    flex-direction: column;
    gap: var(--spacer-60);
    overflow: hidden;
    /* padding-block: var(--spacer-120); */

    .sectionTitle {
        margin-top: 150px;
        text-align: center;
        z-index: 1;

        .eyebrow {
            color: var(--text-grey2);
        }
    }

    .useCase-grid-contain {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    #useCase-grid {
        position: relative;
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 24px;
        overflow: hidden;
        height: 1212px;

        .grid1 {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: 0;
            overflow: auto;
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            grid-gap: 24px;

            .gridCard {
                width: 280px;
                height: 280px;
                opacity: 0.2;
                background: linear-gradient(180deg, #171719 27%, #222 100%);
                cursor: auto;
            }
        }

        .grid2 {
            position: absolute;
            top: 304px;
            left: 50%;
            transform: translateX(-50%);
            display: grid;
            grid-template-columns: repeat(9, 1fr);
            grid-gap: 24px;

            .gridCard {
                position: relative;
                min-width: 280px;
                z-index: 2;
                border: 0;
                mask: none;

                a {
                    text-decoration: none;
                    display: flex;
                    flex-direction: column;
                    gap: 8px;

                    .sub-heading-primary {
                        color: var(--text-white);
                    }
                }

                &:hover:not(.exclude) {
                    background: #222222;

                    .para-secondary {
                        color: var(--text-grey1);
                    }

                    &::before {
                        position: absolute;
                        content: "";
                        z-index: 2;
                        width: 100%;
                        height: 100%;
                        top: 0;
                        left: 0;
                        padding: 1px;
                        border-radius: 22px;
                        background: linear-gradient(53deg,
                                #8fc3ff 21.4%,
                                #a984ff 43.99%,
                                #e6323a 78.36%);
                        mask: linear-gradient(#222222 0 0) content-box,
                            linear-gradient(#222222 0 0) padding-box;
                        mask-composite: exclude;
                        transition: background 2000ms ease, mask 2000ms ease;
                    }
                }
            }
        }
    }

    .grid3 {
        position: absolute;
        left: 50%;
        bottom: 298px;
        transform: translateX(-50%);
        overflow: auto;
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        grid-gap: 24px;

        .gridCard {
            position: relative;
            min-width: 280px;
            height: 280px;
            z-index: 2;
            border: 0;
            mask: none;

            a {
                text-decoration: none;
                display: flex;
                flex-direction: column;
                gap: 8px;

                .sub-heading-primary {
                    color: var(--text-white);
                }
            }

            &:hover:not(.exclude) {
                background: #222222;

                .para-secondary {
                    color: var(--text-grey1);
                }

                &::before {
                    position: absolute;
                    content: "";
                    z-index: 2;
                    width: 100%;
                    height: 100%;
                    top: 0;
                    left: 0;
                    padding: 1px;
                    border-radius: 22px;
                    background: linear-gradient(53deg,
                            #8fc3ff 21.4%,
                            #a984ff 43.99%,
                            #e6323a 78.36%);
                    mask: linear-gradient(#1e1e1e 0 0) content-box,
                        linear-gradient(#1e1e1e 0 0) padding-box;
                    mask-composite: exclude;
                    transition: background 2000ms ease, mask 2000ms ease;
                }
            }
        }
    }

    .grid4 {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        display: grid;
        grid-template-columns: repeat(9, 1fr);
        grid-gap: 24px;

        .gridCard {
            width: 280px;
            height: 280px;
            background: linear-gradient(180deg, #222 0%, #171719 100%);
            opacity: 0.2;
            cursor: auto;
        }
    }

    .gridCard {
        width: 100%;
        min-width: 280px;
        height: auto;
        padding-block: 42px;
        padding-inline: 32px;
        border-radius: 20px;
        background: var(--bg-black-secondary);
        color: var(--text-white);
        display: flex;
        flex-direction: column;
        gap: 8px;
        justify-content: center;
        transition: background 200ms ease, mask 200ms ease;

        .para-secondary {
            color: #9e9e9e;
        }

        &:not(.exclude) {
            cursor: pointer;
        }
    }

    @media screen and (max-width: 1024px) {
        & {
            gap: var(--spacer-32);
            padding-block: var(--spacer-60);
            height: auto;
            overflow: auto;

            .sectionTitle {
                margin-top: 0;
                text-align: left;
            }
        }
    }
}

/* Snapshot | Section - 6  */
.snapshot-container {
    height: 1000px;
    position: relative;

    .content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;

        .para-primary {
            margin-top: 15px;
        }
    }

    .static-image {
        position: absolute;
        display: block;
        border-radius: 12px;
        overflow: hidden;
    }

    #rect-1 {
        width: 205px;
        height: 200px;
        left: 12%;
        top: 13%;
    }

    #rect-2 {
        width: 250px;
        height: 200px;        
        right: 41%;
        top: 11%;
    }

    #rect-3 {
        width: 240px;
        height: 170px;
        right: 12%;
        top: 17%;
    }

    #rect-4 {
        right: 3%;
        top: 40%;
        height: 230px;
    }

    #rect-5 {
        width: 270px;
        height: 210px;        
        top: 68%;
        right: 25%;
    }

    #rect-6 {
        width: 260px;
        height: 200px;
        top: 68%;
        left: 20%;
    }

    #rect-7 {
        width: 190px;
        height: 230px;
        top: 40%;
        left: 3%;
    }

    @media screen and (max-width: 1024px) {
        & {
            height: 100%;
            margin-top: 60px;

            .static-image {
                display: none;
            }

            .content {
                position: relative;
                top: unset;
                left: unset;
                transform: unset;
                text-align: start;
            }

        }
    }
}

.snapshot-mob-swipers {
    margin-top: 32px;

    .swiper {
        width: 100%;
        height: 100%;
    }

    .swiper-slide {
        overflow: hidden;
        border-radius: 8px;
        transition-timing-function: linear !important;

        img {
            display: block;
            width: 100%;
            height: 120px;
            object-fit: cover;
        }
    }

    .swiper-2 {
        margin-top: 16px;
    }
}

/* Innovation - Section - 7  */
.innovation-container {
    height: auto;
    margin-block: 60px;

    .desktop {
        display: none;
    }

    .mobile {
        display: flex;
    }

    /* Bento Grid Layout */
    .bento-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        height: 100%;
    }

    /* Card Base Styles */
    .card {
        width: 100%;
        height: 100%;
        background: var(--Gradient-White-Blue-Gradient, linear-gradient(180deg, #FFF 0%, #F5FAFF 100%));
        border-radius: 12px;
        padding: 20px;
        border: var(--border-light-blue);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: start;


        .card-top {

            .card-number {
                width: fit-content;
                font-size: 28px;
                font-style: normal;
                font-weight: 400;
                line-height: 36px;
                opacity: 0.5;
                background: linear-gradient(51deg, #8FC3FF 24.67%, #A984FF 46.6%, #E6323A 73.71%);
                background-clip: text;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

            .card-header {
                font-weight: 400;
                margin-top: 4px;
            }
        }

        .para-primary {
            margin-top: 16px;
            color: var(--text-grey5);
        }
    }

    /* Large Image Card */
    .card-image-container {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        min-height: 450px;
        flex-direction: column;
        justify-content: flex-end;

        .bg-image {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        &:hover .bg-image {
            transform: scale(1.05);
        }

        .gradient-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%);
        }

        .text-content {
            color: white;
            z-index: 1;
        }
    }

    .text-content {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    /* Responsive Breakpoints for Desktop */
    @media (min-width: 1024px) {
        & {
            margin-block: 120px;
        }

        .bento-grid {
            max-height: 652px;
            grid-template-columns: repeat(6, 1fr);
            grid-template-rows: repeat(2, 1fr);
        }

        .desktop {
            display: flex;
        }

        .mobile {
            display: none;
        }


        .card-image-container {
            grid-column: 1 / 3;
            grid-row: 1 / 3;

            .text-content {
                padding: 2rem;

                .title {
                    font-size: 2.25rem;
                }
            }
        }

        .card-01 {
            grid-column: 3 / 5;
            grid-row: 1 / 2;
        }

        .card-02 {
            grid-column: 5 / 7;
            grid-row: 1 / 2;
        }

        .card-03 {
            grid-column: 3 / 7;
            grid-row: 2 / 3;
        }

        .card {
            padding: 32px;

            .card-top {
                .card-number {
                    width: fit-content;
                    font-size: 44px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 54px;
                    opacity: 0.5;
                    background: linear-gradient(51deg, #8FC3FF 24.67%, #A984FF 46.6%, #E6323A 73.71%);
                    background-clip: text;
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                }

                .card-header {
                    margin-top: 8px;
                }
            }
        }
    }
}

/* Glimpse - Section - 8  */
.glimpse-container {
    margin-block: 120px;
    text-align: center;
    

    .h2pt {
        margin-block: 50px 30px;
        text-align: center;
    }

    iframe {
        width: 100%;
        max-width: 640px;
        aspect-ratio: 56.25;
    }

    .card {
        height: 100%;
        padding: 30px 20px;
        border: var(--border-light-blue);
        background: var(--Gradient-White-Blue-Gradient, linear-gradient(180deg, #FFF 0%, #F5FAFF 100%));
        border-radius: 12px;
        margin-top: 30px;
        display: flex;
        flex-direction: row;
        justify-content: start;
        align-items: center;
        text-align: start;
        gap: 25px;


        .author {
            width: 150px;
            display: flex;
            justify-content: center;
            flex-direction: column;
            text-align: center;
            align-items: center;
            gap: 8px;
            flex-shrink: 0; /* prevent image side from shrinking */
            margin-top: 0;

            img {
                width: 100px;
                height: 100px;
                border-radius: 10px;
            }

            .sub-heading-primary {
                font-size: 14px;
                white-space: nowrap; /* force single line */
            }

            .para-secondary {
                font-size: 12px;
                white-space: nowrap;
            }

            div {
                .para-secondary {
                    color: #5E5E5E;
                    margin-top: 4px;
                }
            }
        }

        .quote-text {
            flex: 1;
            text-align: left;
            display: flex;
            flex-direction: column;
            align-items: flex-start;

            img {
                width: 40px;
                margin-bottom: 10px;
            }
         
        }
    }

    
    .testimonial-section {
        display: flex;
        align-items: center; /* Vertically centers the quotes between the tall videos */
        /* gap: 10px; */
        padding: 50px 0;
        overflow-x: auto;
        position: relative;
        width: auto;

        .swiper-wrapper {           
            @media (min-width: 1024px) {
                justify-content: center;
            }
        }

    }

    


    .swiper-slide {
        width: auto;
    } 

    .testimonial-swiper {
        position: relative;
        padding-bottom: 60px; /* space for scrollbar */
        margin-bottom: 100px;
    }

    /* The Video Cards */
    .card-video {
        height: 400px;
        width: 280px; /* DON'T CHANGE */
        margin: 0px 10px;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        background: #000;        
        flex-shrink: 0;
    }

    .card-video iframe {
        width: 100%;
        height: 100%;
        max-width: 360px;
    }

    /* The Quote Cards */
    .card-quote {
        background: #010912;
        padding: 30px;
        border-radius: 12px;
        border: 1px solid #eef3f8;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    .card-quote img {
        width: 30px;
        margin-bottom: 15px;
    }

    .overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 20px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.2));
        color: #fff;

        h4 {
            margin: 0;
            font-size: 20px;
            line-height: 1.4;
        }

        p {
            margin: 0;
            font-size: 14px;
            line-height: 1.4;
        }
    }

    
    /* ================= SCROLLBAR ================= */

    .glimpse-swiper {
        position: relative;
        padding-bottom: 60px;

        .swiper-slide {

            .author {
                display: flex;
                justify-content: center;
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 8px;
               

                img {
                    width: 120px;
                    height: 120px;
                    margin: 0 auto;
                    display: block;
                }

                div {
                    .para-secondary {
                        color: #5E5E5E;
                        margin-top: 4px;
                    }
                }
            }
        }
    }

    .glimpse-swiper .swiper-wrapper {
        align-items: stretch;
    }

    /* .swiper-scrollbar {
        position: absolute !important;
        bottom: 0 !important;
        left: 50% !important;
        transform: translateX(-50%);
        height: 4px !important;
        background: #ddd;
        border-radius: 10px;
        width: 40%;
        max-width: 400px;
    }

    .swiper-scrollbar-drag {
        background: #111;
        border-radius: 10px;
    } */

    .glimpse-swiper .swiper-button-next,
    .glimpse-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
        background: #000;
        border-radius: 50%;
        color: #fff;
        top: auto;
        bottom: 0;
    }

    .glimpse-swiper .swiper-button-next::after,
    .glimpse-swiper .swiper-button-prev::after {
        font-size: 14px;
    }

    /* Center them together */
.glimpse-swiper .swiper-button-prev {
    left: calc(50% - 50px);
}

.glimpse-swiper .swiper-button-next {
    right: calc(50% - 50px);
}

    @media screen and (max-width: 1024px) {
        & {
            text-align: start;
            margin-block: 60px;
            margin-inline: 10px;

            .card {
                padding: 24px;
                margin-top: 32px;

                .quote-image {
                    width: 48px;
                    height: 40px;
                    margin-bottom: -15px;
                }

               
            }
        }
    }
}


@media (max-width: 768px) {

    .glimpse-container .card {
       /* flex-direction: column;*/
        gap: 20px;
        padding: 20px;
    }

    .glimpse-container .card .author {
        /*width: 100%;*/
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 12px;
        margin-top:0px !important;
    }

    .glimpse-container .card .author img {
        width: 70px;
        height: 70px;
    }

    .glimpse-container .quote-text {
        width: 100%;
    }
    .quote-text .para-primary{font-size:13px;}

}

.slide-tall{
    /* height:350px; */
    aspect-ratio: 4/5 ;
}

.slide-small{
    /* height:280px; */
    aspect-ratio: 30/28 ;
}

@media (max-width:1024px){

    .slide-tall{
        height:235px;
    }

    .slide-small{
        height:180px;
    }

}

#snapshotSwiper1,
#snapshotSwiper2 {
    pointer-events: none;
}

@media only screen and (max-width: 576px) {
.glimpse-container .card{flex-direction: column;}
}

@media screen and (min-width: 810px) and (max-width: 1080px) and (orientation: landscape) {
   .pillars-cards .card { height: 428px !important;}
   .innovation-container  .bento-grid {  max-height: 785px !important; }
}