
/* ---------- TEAM SECTION (eyebrow + big heading + borderless values) ---------- */
.about-us-page .au-team-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary-purple);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.about-us-page .au-team-eyebrow .bi {
    color: var(--primary-blue);
    font-size: .82rem;
}

.about-us-page .au-team-title {
    font-size: clamp(1.9rem, 3.6vw, 2.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--text-main);
}



/* Borderless value items separated by a thin top divider line */
.about-us-page .au-value-grid {
    margin-top: 14px;
}

.about-us-page .au-value-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 22px 0 2px;
    background: transparent;
    border: none;
    border-top: 1px solid #ececf2;
    border-radius: 0;
}

.about-us-page .au-value-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.about-us-page .au-value-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    background: rgba(119, 78, 255, .1);
    color: var(--primary-blue);
}

.about-us-page .au-value-title {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--text-main);
    margin: 0;
}

.about-us-page .au-value-text {
    font-size: .92rem;
    line-height: 1.65;
    color: var(--text-body);
    margin: 0;
}

/* ---------- IMAGE FRAME ---------- */
.about-us-page .au-img-frame {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 26px 60px rgba(78, 49, 173, .14);
}

.about-us-page .au-img-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: linear-gradient(135deg, #774eff 0%, #4f46e5 100%);
    color: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 12px 26px rgba(79, 70, 229, .35);
}

.about-us-page .au-img-badge .yr {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.about-us-page .au-img-badge .lbl {
    font-size: .72rem;
    font-weight: 600;
    opacity: .85;
    line-height: 1.25;
}

/* ---------- CLOSING CTA BAND ---------- */
.about-us-page .au-cta-section {
    padding: 64px 0;
    background: #fff;
}

.about-us-page .au-cta {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 52px 56px;
    background:
        radial-gradient(620px 320px at 100% 0%, rgba(255, 255, 255, .18), transparent 60%),
        linear-gradient(120deg, #5b3fd6 0%, #4f46e5 55%, #6342ff 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    box-shadow: 0 30px 60px rgba(79, 70, 229, .28);
}

.about-us-page .au-cta::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -90px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    pointer-events: none;
}

.about-us-page .au-cta-title {
    color: #fff;
    font-weight: 800;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    line-height: 1.2;
    margin-bottom: 8px;
}

.about-us-page .au-cta-sub {
    color: rgba(255, 255, 255, .9);
    font-size: 1.02rem;
    margin: 0;
    max-width: 560px;
}

.about-us-page .au-cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.about-us-page .btn-au-light {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    color: var(--primary-purple);
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 14px !important;
    border: none;
    transition: transform .25s ease, box-shadow .25s ease;
}

.about-us-page .btn-au-light:hover {
    color: var(--primary-purple);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, .18);
}

.about-us-page .btn-au-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: #fff;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 14px !important;
    border: 1.5px solid rgba(255, 255, 255, .6);
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.about-us-page .btn-au-outline-light:hover {
    color: #fff;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
}

/* ---------- ILLUSTRATION (transparent PNGs) ---------- */
.about-us-page .au-illustration {
    filter: drop-shadow(0 22px 42px rgba(78, 49, 173, .16));
    transition: transform .35s ease;
}

.about-us-page .au-illustration:hover {
    transform: translateY(-6px);
}

/* ---------- FEATURE CHECKLIST ---------- */
.about-us-page .au-checklist {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.about-us-page .au-check-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.about-us-page .au-check-ic {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 182, 122, .12);
    color: var(--success-green);
    font-size: .85rem;
    margin-top: 2px;
}

.about-us-page .au-check-item span {
    font-size: .98rem;
    color: var(--text-body);
    line-height: 1.55;
}

.about-us-page .au-check-item b {
    color: var(--text-main);
    font-weight: 700;
}

/* ---------- PRICE HIGHLIGHT PILL ---------- */
.about-us-page .au-price-pill {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-top: 26px;
    padding: 13px 22px 13px 14px;
    border-radius: 16px;
    background: var(--bg-badge-india);
    border: 1px solid var(--border-indigo);
    box-shadow: 0 10px 26px rgba(78, 49, 173, .08);
}

.about-us-page .au-price-pill .pp-ic {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #774eff, #4f46e5);
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-us-page .au-price-pill .pp-amt {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.05;
}

.about-us-page .au-price-pill .pp-amt small {
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-body);
}

.about-us-page .au-price-pill .pp-lbl {
    font-size: .82rem;
    color: var(--text-body);
    font-weight: 600;
}

/* ---------- FLOATING STAT CHIP (on illustration) ---------- */
.about-us-page .au-float-wrap {
    position: relative;
    display: inline-block;
}

.about-us-page .au-float-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--border-indigo);
    border-radius: 14px;
    padding: 11px 15px;
    box-shadow: 0 16px 34px rgba(78, 49, 173, .16);
}

.about-us-page .au-float-chip .fc-ic {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(119, 78, 255, .1);
    color: var(--primary-blue);
    font-size: 1.05rem;
    flex-shrink: 0;
}

.about-us-page .au-float-chip .fc-num {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.about-us-page .au-float-chip .fc-lbl {
    font-size: .72rem;
    color: var(--text-body);
    font-weight: 600;
}

.about-us-page .au-float-chip.fc-tr {
    top: 14px;
    right: -8px;
}

.about-us-page .au-float-chip.fc-bl {
    bottom: 18px;
    left: -8px;
}

/* ---------- PRESS MARQUEE ---------- */
.about-us-page .au-press-section {
    overflow: hidden;
}

.about-us-page .au-press-marquee {
    position: relative;
    margin-top: 46px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.about-us-page .au-press-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 80px;
    animation: auPressMarquee 32s linear infinite;
    will-change: transform;
}

.about-us-page .au-press-marquee:hover .au-press-track {
    animation-play-state: paused;
}

.about-us-page .au-press-logo {
    font-family: "Sora", "DM Sans", sans-serif;
    font-weight: 800;
    font-size: 27px;
    color: #b9b6c9;
    white-space: nowrap;
    line-height: 1;
}

@keyframes auPressMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 575.98px) {
    .about-us-page .au-float-chip {
        padding: 8px 11px;
    }

    .about-us-page .au-float-chip.fc-tr {
        right: 4px;
    }

    .about-us-page .au-float-chip.fc-bl {
        left: 4px;
    }

    .about-us-page .au-press-marquee {
        margin-top: 34px;
    }

    .about-us-page .au-press-track {
        gap: 44px;
        animation-duration: 24s;
    }

    .about-us-page .au-press-logo {
        font-size: 22px;
    }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991.98px) {
    .about-us-page .au-cta {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 42px 28px;
    }

    .about-us-page .au-cta-actions {
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-us-page .au-press-track {
        animation: none;
    }

    .about-us-page .au-press-marquee {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .about-us-page .au-press-marquee::-webkit-scrollbar {
        display: none;
    }
}
