/* ============================================================
   ABOUT PAGE HERO
   ============================================================ */
.kn-about-hero {
    background:
        radial-gradient(circle at top left, rgba(0, 180, 216, 0.22) 0, transparent 40%),
        radial-gradient(circle at center right, rgba(56, 189, 248, 0.18) 0, transparent 40%),
        linear-gradient(135deg, #091f33 0%, #0c2d4a 50%, #071726 100%);
    padding: 100px 0 80px;
    min-height: calc(100vh - var(--navbar-height) - var(--announcement-h));
    display: flex;
    align-items: center;
}

/* Image collage */
.about-hero-collage {
    position: relative;
    width: 100%;
    max-width: 540px;
    height: 420px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-dots {
    position: absolute;
    top: 0;
    left: 8%;
    width: 72px;
    height: 48px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.55) 2px, transparent 2px);
    background-size: 12px 12px;
    z-index: 1;
}

.about-hero-frame {
    position: absolute;
    border: 2px solid;
    border-radius: 4px;
    z-index: 0;
    pointer-events: none;
}

.about-hero-frame--purple {
    width: 90px;
    height: 200px;
    border-color: #c026d3;
    bottom: 60px;
    left: 0;
}

.about-hero-frame--yellow {
    width: 70px;
    height: 160px;
    border-color: #facc15;
    top: 40px;
    right: -10px;
}

.about-hero-img {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.about-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-hero-img--1 {
    top: 30px;
    left: 12%;
    width: 38%;
    height: 52%;
    border-radius: 40px 8px 8px 8px;
    z-index: 3;
}

.about-hero-img--2 {
    top: 0;
    right: 8%;
    width: 48%;
    height: 62%;
    border-radius: 8px 40px 8px 8px;
    z-index: 2;
}

.about-hero-img--3 {
    bottom: 0;
    left: 18%;
    width: 72%;
    height: 38%;
    border-radius: 8px 8px 8px 40px;
    z-index: 4;
}

@media (max-width: 991.98px) {
    .kn-about-hero {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .about-hero-collage {
        max-width: 460px;
        height: 360px;
        margin-top: 20px;
    }
}

@media (max-width: 575.98px) {
    .about-hero-collage {
        max-width: 100%;
        height: 300px;
    }

    .about-hero-frame--purple {
        width: 60px;
        height: 140px;
        bottom: 40px;
    }

    .about-hero-frame--yellow {
        width: 50px;
        height: 120px;
        right: 0;
    }

    .about-hero-dots {
        width: 48px;
        height: 36px;
    }
}

/* ============================================================
   ABOUT PAGE — LEADERSHIP
   ============================================================ */
.kn-about-leadership {
    padding: 100px 0;
    background: #ffffff;
}

.leadership-heading {
    max-width: 760px;
    margin: 0 auto 58px;
    text-align: center;
}

.leadership-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #0caf4c;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.leadership-heading h2 {
    margin: 0 0 14px;
    color: #0c1445;
    font-size: clamp(2.15rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
}

.leadership-heading p {
    margin: 0;
    color: #52607a;
    font-size: 1.02rem;
    line-height: 1.7;
}

.leadership-card {
    max-width: 345px;
    margin: 0 auto;
    text-align: center;
}

.leadership-photo {
    position: relative;
    width: min(100%, 336px);
    aspect-ratio: 1;
    margin: 0 auto 26px;
    overflow: visible;
    border-radius: 50% 0 50% 50%;
}

.leadership-photo--blue { background: #2767ae; }
.leadership-photo--gold { background: #f8ad09; }
.leadership-photo--lilac { background: #b7a9f7; }

.leadership-photo img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: inherit;
    object-fit: cover;
    object-position: center top;
    mix-blend-mode: normal;
}

.leadership-linkedin {
    position: absolute;
    right: 13%;
    bottom: 2px;
    width: 42px;
    height: 42px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0a66c2;
    color: #ffffff;
    font-size: 1.15rem;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.leadership-linkedin:hover {
    background: #004182;
    color: #ffffff;
    transform: translateY(-3px);
}

.leadership-card h3 {
    margin: 0 0 13px;
    color: #0c1445;
    font-size: 1.2rem;
    font-weight: 800;
}

.leadership-card p {
    max-width: 330px;
    min-height: 82px;
    margin: 0 auto 20px;
    color: #33415c;
    font-size: 0.98rem;
    line-height: 1.55;
}

.leadership-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 2px solid #0caf4c;
    color: #0c1445;
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
}

.leadership-read-more:hover { color: #0caf4c; }

@media (max-width: 767.98px) {
    .kn-about-leadership { padding: 70px 0; }
    .leadership-heading { margin-bottom: 42px; }
    .leadership-card p { min-height: 0; }
}

/* ============================================================
   ABOUT PAGE — COMPANY UPDATES
   ============================================================ */
.kn-about-updates {
    padding: 92px 0;
    overflow: hidden;
    background: #270b78;
}

.updates-title {
    margin: 0 0 58px;
    color: #ffffff;
    font-size: clamp(2.15rem, 4vw, 3.25rem);
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
}

.updates-list {
    overflow: hidden;
    background: #cc209c;
}

.updates-item {
    min-height: 101px;
    padding: 24px 26px 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid rgba(55, 8, 86, 0.48);
    color: #ffffff;
    font-size: clamp(1rem, 1.55vw, 1.22rem);
    font-weight: 600;
    line-height: 1.42;
    text-decoration: none;
    transition: background 0.25s ease, padding 0.25s ease;
}

.updates-item:last-child { border-bottom: 0; }

.updates-item:hover {
    padding-left: 40px;
    background: #ad167f;
    color: #ffffff;
}

.updates-item i {
    flex: 0 0 auto;
    font-size: 1.8rem;
}

.updates-see-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding: 14px 30px;
    border-radius: 5px;
    background: #ffffff;
    color: #0c1445;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.updates-see-all:hover {
    background: #f1ecff;
    color: #0c1445;
    transform: translateY(-2px);
}

.updates-image-frame {
    position: relative;
    width: min(100%, 385px);
    margin: 0 auto;
    padding: 28px 0 0 28px;
}

.updates-image-frame::before {
    content: '';
    position: absolute;
    inset: 0 0 28px 0;
    border: 2px solid rgba(255, 255, 255, 0.85);
}

.updates-image-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 455px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.updates-dot-grid {
    position: absolute;
    z-index: 2;
    top: -38px;
    right: 25px;
    width: 95px;
    height: 34px;
    background-image: radial-gradient(circle, #ffffff 2px, transparent 2.5px);
    background-size: 12px 12px;
}

@media (max-width: 991.98px) {
    .updates-image-frame { margin-top: 6px; }
}

@media (max-width: 767.98px) {
    .kn-about-updates { padding: 70px 0; }
    .updates-title { margin-bottom: 40px; }
    .updates-item { min-height: 88px; padding: 20px; }
    .updates-image-frame { margin-top: 12px; }
}

@media (max-width: 575.98px) {
    .updates-item { font-size: 0.98rem; gap: 14px; }
    .updates-item i { font-size: 1.35rem; }
    .updates-image-frame { padding: 20px 0 0 20px; }
    .updates-image-frame::before { inset: 0 0 20px 0; }
    .updates-image-frame img { height: 370px; }
}

/* ============================================================
   ABOUT PAGE — EXPLORE
   ============================================================ */
.kn-about-explore {
    padding: 100px 0;
    background: #ffffff;
}

.explore-heading {
    margin-bottom: 52px;
    text-align: center;
}

.explore-heading span {
    display: inline-block;
    margin-bottom: 9px;
    color: #0caf4c;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.explore-heading h2 {
    margin: 0;
    color: #0c1445;
    font-size: clamp(2.15rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
}

.explore-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid #eef0f4;
    border-radius: 7px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.explore-card:hover {
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.13);
    transform: translateY(-5px);
}

.explore-card > img {
    width: 100%;
    height: 238px;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.explore-card:hover > img { transform: scale(1.04); }

.explore-card-body {
    min-height: 232px;
    padding: 24px 24px 20px;
    display: flex;
    flex-direction: column;
}

.explore-card h3 {
    margin: 0 0 10px;
    color: #0c1445;
    font-size: 1.45rem;
    font-weight: 800;
}

.explore-card p {
    margin: 0;
    color: #283753;
    font-size: 1rem;
    line-height: 1.58;
}

.explore-card-link {
    display: inline-flex;
    align-items: center;
    align-self: flex-end;
    gap: 8px;
    margin-top: auto;
    padding-bottom: 8px;
    border-bottom: 2px solid #0caf4c;
    color: #0c1445;
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
}

.explore-card-link:hover { color: #0caf4c; }

@media (max-width: 767.98px) {
    .kn-about-explore { padding: 70px 0; }
    .explore-heading { margin-bottom: 38px; }
    .explore-card-body { min-height: 215px; }
}

/* ============================================================
   ABOUT PAGE — PLATFORM SLIDER
   ============================================================ */
.kn-about-platforms {
    padding: 92px 0 88px;
    overflow: hidden;
    background: #ffffff;
    border-top: 1px solid #edf0f4;
}

.platforms-heading {
    margin-bottom: 46px;
    text-align: center;
}

.platforms-heading span {
    display: inline-block;
    margin-bottom: 9px;
    color: #0caf4c;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.platforms-heading h2 {
    margin: 0;
    color: #0c1445;
    font-size: clamp(2.15rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
}

.platforms-marquee {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.platforms-track {
    width: max-content;
    display: flex;
    align-items: stretch;
    animation: platforms-scroll 28s linear infinite;
}

.platforms-marquee:hover .platforms-track { animation-play-state: paused; }

.platform-item {
    width: 205px;
    min-height: 132px;
    margin: 0 14px;
    padding: 20px 16px;
    border: 1px solid #e7ebf0;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: #ffffff;
    box-shadow: 0 5px 18px rgba(15, 23, 42, 0.06);
}

.platform-item img {
    width: 61px;
    height: 61px;
    object-fit: contain;
}

.platform-item span {
    color: #182544;
    font-size: 0.98rem;
    font-weight: 800;
    white-space: nowrap;
}

@keyframes platforms-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .platforms-track { animation-play-state: paused; }
}

@media (max-width: 767.98px) {
    .kn-about-platforms { padding: 70px 0; }
    .platforms-heading { margin-bottom: 36px; }
    .platform-item { width: 175px; min-height: 120px; }
}

/* ============================================================
   ABOUT PAGE — WHO WE ARE
   ============================================================ */
.kn-who-we-are {
    padding: 90px 0;
    background: var(--kn-white);
}

.who-we-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #0c1445;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 28px;
}

.who-we-text {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.85;
    margin-bottom: 28px;
}

.who-we-services-heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.who-we-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
}

.who-we-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.98rem;
    font-weight: 500;
    color: #374151;
}

.who-we-check-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--kn-accent);
    color: var(--kn-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

.who-we-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    border: 1px dashed rgba(91, 33, 182, 0.15);
}

.who-we-stat {
    min-width: 0;
    min-height: 132px;
    padding: 24px;
    text-align: center;
    border-right: 1px dashed rgba(91, 33, 182, 0.15);
    border-bottom: 1px dashed rgba(91, 33, 182, 0.15);
    transition: background var(--transition-fast);
}

.who-we-stat:nth-child(3n) {
    border-right: none;
}

.who-we-stat:nth-child(n+7) {
    border-bottom: none;
}

.who-we-stat:hover {
    background: var(--kn-bg-light);
}

.who-we-stat-number {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #0c1445;
    line-height: 1.1;
    margin-bottom: 8px;
}

.who-we-stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

@media (max-width: 1199.98px) {
    .kn-who-we-are {
        padding: 70px 0;
    }

    .kn-who-we-are .row > .col-lg-6 {
        width: 100%;
    }

    .who-we-stats-grid {
        margin-top: 10px;
    }

    .who-we-stat {
        padding: 20px 6px;
        min-height: 100px;
    }

    .who-we-stat-number {
        font-size: 1.25rem;
        margin-bottom: 5px;
    }

    .who-we-stat-label {
        font-size: 0.64rem;
        line-height: 1.25;
        letter-spacing: -0.01em;
    }
}

@media (max-width: 575.98px) {
    .who-we-checklist {
        grid-template-columns: 1fr;
    }

    .who-we-stat {
        padding: 16px 3px;
    }
}

/* ============================================================
   ABOUT PAGE — SOLUTIONS ACCORDION
   ============================================================ */
.kn-about-accordion {
    padding: 92px 0 100px;
    background: #21b49d;
    color: #ffffff;
    overflow: hidden;
}

.accordion-section-intro {
    max-width: 850px;
    margin: 0 auto 48px;
    text-align: center;
}

.accordion-shell {
    max-width: 540px;
    margin: 0 auto;
}

.accordion-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.12;
    color: #ffffff;
    margin-bottom: 14px;
}

.accordion-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.96);
    margin: 0 auto;
    max-width: 760px;
}

.accordion-list {
    display: grid;
    gap: 24px;
}

.accordion-entry {
    overflow: hidden;
    border-radius: 14px;
}

.accordion-item {
    width: 100%;
    border: 0;
    border-radius: 14px;
    background: #ffffff;
    color: #101b35;
    padding: 24px 70px 24px 24px;
    text-align: left;
    font-size: 1.28rem;
    font-weight: 800;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(6, 70, 63, 0.15);
}

.accordion-item::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #102b59;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 800;
}

.accordion-item.active {
    background: #ffffff;
    color: #101b35;
    box-shadow: 0 16px 36px rgba(6, 70, 63, 0.16);
}

.accordion-item.active::after {
    content: "–";
    background: #102b59;
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.35s ease;
    opacity: 0;
    color: #253553;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    padding: 0 24px 0;
    background: #ffffff;
    border-radius: 0 0 14px 14px;
}

.accordion-item.active + .accordion-panel {
    max-height: 360px;
    opacity: 1;
    padding-top: 24px;
    padding-bottom: 24px;
}

.accordion-learn-more {
    display: table;
    margin-top: 22px;
    padding: 10px 24px;
    border-radius: 5px;
    background: #0caf4c;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.accordion-learn-more:hover {
    background: #07913d;
    color: #ffffff;
}

.accordion-image-shell {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    position: relative;
}

.accordion-image-circle {
    width: min(100%, 430px);
    max-width: 430px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #cbf5f4;
    box-shadow: 0 30px 70px rgba(6, 70, 63, 0.16);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 68px;
}

.accordion-image-circle::before {
    display: none;
}

.accordion-image {
    width: 100%;
    max-width: 280px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.accordion-orbit {
    position: absolute;
    width: 420px;
    height: 132px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
}

.accordion-orbit--one { transform: rotate(43deg); }
.accordion-orbit--two { transform: rotate(-36deg); }

.accordion-dot-grid {
    position: absolute;
    left: 8%;
    bottom: 8%;
    z-index: 2;
    width: 72px;
    height: 34px;
    background-image: radial-gradient(circle, #ffffff 2px, transparent 2.5px);
    background-size: 12px 12px;
}

@media (max-width: 991.98px) {
    .kn-about-accordion {
        padding: 70px 0;
    }

    .accordion-shell {
        max-width: 620px;
    }

    .accordion-title {
        font-size: clamp(1.9rem, 5vw, 2.8rem);
    }

    .accordion-image-circle {
        max-width: 460px;
    }
}

@media (max-width: 767.98px) {
    .kn-about-accordion {
        padding: 60px 0;
    }

    .accordion-image-circle {
        margin-top: 32px;
    }

    .accordion-item {
        padding: 20px 60px 20px 20px;
    }

    .accordion-panel { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 991.98px) {
    .kn-about-accordion {
        padding: 70px 0;
    }

    .accordion-title {
        font-size: clamp(1.9rem, 5vw, 2.8rem);
    }

    .accordion-image-circle {
        max-width: 420px;
    }
}

@media (max-width: 767.98px) {
    .kn-about-accordion {
        padding: 60px 0;
    }

    .accordion-image-circle {
        margin-top: 32px;
    }

    .accordion-item {
        padding: 20px 60px 20px 20px;
    }
}

/* ============================================================
   ABOUT PAGE — MISSION & VISION
   ============================================================ */
.kn-mission-vision {
    padding: 90px 0;
    background: #1e3a8a;
    overflow: hidden;
}

.mv-card {
    position: relative;
    background: var(--kn-white);
    border-radius: 40px 40px 0 40px;
    padding: 36px 36px 40px;
    height: 100%;
}

.mv-card::before {
    content: '';
    position: absolute;
    inset: 24px -26px -34px 24px;
    border: 2px solid #16161538;
    border-radius: 40px 40px 0 40px;
    z-index: 0;
    pointer-events: none;
}

.mv-card-header,
.mv-divider,
.mv-card-text {
    position: relative;
    z-index: 1;
}

.mv-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.mv-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kn-white);
    font-size: 1.25rem;
}

.mv-icon--mission {
    background: #f97316;
}

.mv-icon--vision {
    background: #6d28d9;
}

.mv-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0c1445;
    margin: 0;
    letter-spacing: -0.01em;
}

.mv-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 0 0 24px;
    opacity: 1;
}

.mv-card-text {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.85;
    margin: 0;
}

@media (max-width: 767.98px) {
    .kn-mission-vision {
        padding: 70px 0;
    }

    .mv-card {
        padding: 28px 24px 32px;
        border-radius: 32px 32px 0 32px;
    }

    .mv-card::before {
        inset: 12px 10px 12px 12px;
        border-radius: 32px 32px 0 32px;
    }

    .mv-card-header {
        gap: 12px;
        margin-bottom: 16px;
    }

    .mv-icon {
        width: 46px;
        height: 46px;
        font-size: 1.05rem;
    }

    .mv-card-title {
        font-size: 1.3rem;
    }

    .mv-card-text {
        font-size: 0.98rem;
        line-height: 1.7;
    }
}

/* ============================================================
   ABOUT PAGE — TESTIMONIAL SLIDER
   ============================================================ */
.kn-about-testimonial {
    padding: 100px 0;
    background: #f0f2f5;
}

.about-testi-stage {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.about-testi-track {
    display: flex;
    width: 100%;
    transition: transform 0.7s ease;
}

.about-testi-slide {
    width: 100%;
    flex-shrink: 0;
    display: grid;
    grid-template-columns: 58% 42%;
    align-items: end;
    gap: 0;
    animation: about-testi-fade 0.55s ease;
}

.about-testi-slide.active {
    /* active state remains for semantics and potential styling */
}

@keyframes about-testi-fade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Photo column */
.about-testi-photo-col {
    position: relative;
    z-index: 1;
}

.about-testi-photo-wrap {
    overflow: hidden;
    line-height: 0;
}

.about-testi-photo {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Yellow nav buttons */
.about-testi-nav {
    display: flex;
    justify-content: flex-end;
    gap: 0;
    margin-top: 16px;
    padding-right: 8px;
}

.about-testi-btn {
    width: 52px;
    height: 52px;
    border: none;
    background: #facc15;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.2s ease;
}

.about-testi-btn:hover {
    background: #eab308;
    transform: scale(1.05);
}

.about-testi-btn + .about-testi-btn {
    margin-left: 4px;
}

/* Content column — card overlaps photo */
.about-testi-content-col {
    position: relative;
    z-index: 2;
    margin-left: -120px;
    margin-bottom: 60px;
    padding-top: 20px;
}

.about-testi-glassdoor {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-left: 8px;
}

.about-testi-gd-logo {
    font-size: 1.15rem;
    font-weight: 900;
    color: #0caa41;
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.about-testi-gd-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.about-testi-gd-stars {
    color: #f97316;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.about-testi-gd-stars .far {
    color: #d1d5db;
}

.about-testi-gd-score {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}

/* White testimonial card */
.about-testi-card {
    position: relative;
    background: #ffffff;
    padding: 36px 40px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.about-testi-quote {
    position: absolute;
    top: -10px;
    right: 28px;
    font-size: 5.5rem;
    font-weight: 900;
    color: #0c1445;
    line-height: 1;
    font-family: Georgia, 'Times New Roman', serif;
    pointer-events: none;
    user-select: none;
}

.about-testi-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0c1445;
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}

.about-testi-role {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0 0 14px;
    font-weight: 400;
}

.about-testi-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.about-testi-text {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.85;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 991.98px) {
    .about-testi-slide.active {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-testi-photo {
        height: 400px;
    }

    .about-testi-content-col {
        margin-left: 0;
        margin-top: -60px;
        margin-bottom: 0;
        padding: 0 16px;
    }

    .about-testi-nav {
        position: absolute;
        bottom: 0;
        right: 16px;
        margin-top: 0;
        z-index: 3;
    }

    .about-testi-photo-col {
        padding-bottom: 70px;
    }
}

@media (max-width: 575.98px) {
    .kn-about-testimonial {
        padding: 70px 0;
    }

    .about-testi-photo {
        height: 340px;
    }

    .about-testi-card {
        padding: 28px 24px 32px;
    }

    .about-testi-quote {
        font-size: 4rem;
        right: 16px;
    }

    .about-testi-text {
        font-size: 0.98rem;
    }

    .about-testi-btn {
        width: 46px;
        height: 46px;
    }
}
