/* =========================================================
   ALJ ABOUT COMPANY SECTION
   ========================================================= */

.alj-about-section {
    position: relative;
    padding-block: clamp(4rem, 6vw, 5.5rem);
    background: radial-gradient(circle at 0% 0%, #f5f0ff 0, #f7f5ff 38%, #f9fafb 100%);
}

/* Dark mode background */
[data-bs-theme="dark"] .alj-about-section {
    background: radial-gradient(circle at 0% 0%, #1d2844 0, #111827 45%, #020617 100%);
}

/* Intro side */
.alj-about-intro {
    position: sticky;
    top: 7rem;
}

.alj-about-title {
    font-size: 30px;
    line-height: 1.5;
    color: #111827;
}

/* Quote block */
.alj-about-quote {
    border-radius: 20px;
    padding: 1.1rem 1.3rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.alj-about-quote-text {
    font-size: 0.95rem;
    color: #4b5563;
}

.alj-about-quote-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4C2770;
}

/* Dark quote */
[data-bs-theme="dark"] .alj-about-quote {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(148, 163, 184, 0.5);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

[data-bs-theme="dark"] .alj-about-quote-text {
    color: rgba(249, 250, 251, 0.85);
}

[data-bs-theme="dark"] .alj-about-quote-author {
    color: #48BCCC;
}

/* Right card with text */
.alj-about-card {
    position: relative;
    padding: clamp(2rem, 3vw, 2.7rem);
    border-radius: 32px;
    background-color: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow:
        0 28px 60px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    max-width: 52rem;
    margin-inline-start: auto;
}

/* Decorative gradient strip on the side */
.alj-about-card::before {
    content: "";
    position: absolute;
    inset-block: 2.5rem;
    inset-inline-end: -4px;
    width: 6px;
    border-radius: 999px;
    /* background: linear-gradient(180deg, #4C2770 0%, #7E5BA2 50%, #48BCCC 100%); */
    opacity: 0.9;
}

/* Dark mode card */
[data-bs-theme="dark"] .alj-about-card {
    background: radial-gradient(circle at 0% 0%, #0b1220 0, #020617 70%);
    border-color: rgba(148, 163, 184, 0.55);
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(15, 23, 42, 0.9);
}

/* Paragraphs */
.alj-about-paragraph {
    font-size: 1.02rem;
    line-height: 2;
    color: #111827;
    margin-bottom: 1.6rem;
}

/* Slight highlight on first paragraph */
.alj-about-paragraph:first-of-type {
    position: relative;
    padding-top: 0.4rem;
}

/* Dark text */
[data-bs-theme="dark"] .alj-about-title {
    color: #f9fafb;
}

[data-bs-theme="dark"] .alj-about-paragraph {
    color: rgba(249, 250, 251, 0.9);
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
    .alj-about-intro {
        position: static;
        text-align: center;
    }

    .alj-about-card {
        margin-inline: auto;
    }

    .alj-about-card::before {
        inset-inline-start: 50%;
        inset-inline-end: auto;
        width: 70%;
        height: 4px;
        inset-block: auto;
        bottom: -6px;
        border-radius: 999px;
    }
}





/* =========================================================
   CEO LETTER SECTION – DIFFERENT LOOK FROM "ABOUT" SECTION
   ========================================================= */

.alj-ceo-letter {
    position: relative;
    isolation: isolate;
    /* background:
        radial-gradient(circle at 0% 100%, rgba(126, 91, 162, 0.08), transparent 60%),
        radial-gradient(circle at 100% 0%, rgba(72, 188, 204, 0.12), transparent 60%),
        #F9FAFB; */
}

/* Dark mode background */
[data-bs-theme="dark"] .alj-ceo-letter {
    background:
        radial-gradient(circle at 0% 100%, rgba(126, 91, 162, 0.25), transparent 55%),
        radial-gradient(circle at 100% 0%, rgba(72, 188, 204, 0.35), transparent 55%),
        #020617;
}

/* Main shell (like envelope) */
.alj-ceo-letter-shell {
    display: grid;
    grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
    gap: 1.75rem;
    align-items: stretch;
}

/* ========== Sidebar ========== */

.alj-ceo-letter-sidebar {
    border-radius: 24px;
    background: linear-gradient(180deg, #5a2f8f 0%, #3f2667 100%);
    color: #fff;
    position: relative;
}

.alj-ceo-sidebar-inner {
    padding: 1.9rem 1.8rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.75rem;
    /* background: linear-gradient(180deg, #5a2f8f 0%, #3f2667 100%); */
}

.alj-ceo-quote-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    background: rgba(15, 23, 42, 0.15);
}

.alj-ceo-sidebar-label {
    font-size: 0.9rem;
    opacity: 0.9;
    color: white;
}

.alj-ceo-sidebar-name {
    font-weight: 700;
    font-size: 1rem;
     color: white;
}

.alj-ceo-sidebar-note {
    font-size: 0.86rem;
    opacity: 0.9;
     color: white;
}

/* ===== Shell Layout ===== */
.alj-ceo-letter-shell {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    align-items: stretch;
}

/* ===== Sidebar ===== */
.alj-ceo-letter-sidebar {
    display: flex;
    flex-direction: column;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, #4C2770, #3B1C57);
    box-shadow: 0 18px 45px rgba(0,0,0,.25);
}

/* Image */
.alj-ceo-image-wrapper {
    padding: 1.2rem;
}



.pq-inner-bg {
    fill: rgba(255,255,255,0.08);
}

/* Sidebar content */
.alj-ceo-sidebar-inner {
    padding: 1.8rem 1.6rem 2rem;
    color: #fff;
    text-align: center;
}

.alj-ceo-quote-icon {
    margin-bottom: 1rem;
}

.alj-ceo-sidebar-label {
    font-size: 0.85rem;
    opacity: 0.85;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.alj-ceo-sidebar-name {
    font-size: 1.1rem;
    font-weight: 700;
}

.alj-ceo-sidebar-note {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ===== Letter Body ===== */
.alj-ceo-letter-body {
    position: relative;
    border-radius: 28px;
    background: linear-gradient(135deg, #FFFFFF, #F3F4F6);
    border: 1px solid rgba(148, 163, 184, 0.55);
    box-shadow:
        0 26px 60px rgba(15, 23, 42, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.6);
    padding: clamp(1.8rem, 2.5vw, 2.4rem);
}

.alj-ceo-letter-body::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(76,39,112,.65), rgba(72,188,204,.7));
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: .35;
    pointer-events: none;
}

/* Header */
.alj-ceo-letter-title {
    font-size: clamp(1.4rem, 2.1vw, 1.8rem);
    font-weight: 800;
    color: #111827;
}

.alj-ceo-letter-author {
    font-size: .9rem;
    font-weight: 600;
    color: #4C2770;
}

/* Body */
.alj-ceo-letter-content {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.alj-ceo-paragraph {
    font-size: 1.02rem;
    line-height: 2.05;
    color: #111827;
}

/* .alj-ceo-paragraph--intro::first-letter {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    margin-left: .25rem;
    color: #4C2770;
    float: right;
}

[dir="ltr"] .alj-ceo-paragraph--intro::first-letter {
    float: left;
} */

.alj-ceo-paragraph-signoff {
    font-weight: 600;
    color: #4C2770;
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
    .alj-ceo-letter-shell {
        grid-template-columns: 1fr;
    }

    .alj-ceo-letter-sidebar {
        order: 1;
    }

    .alj-ceo-letter-body {
        order: 2;
    }
}
