.elementor-256 .elementor-element.elementor-element-496fece{--display:flex;}.elementor-256 .elementor-element.elementor-element-fbc8fa7{--display:flex;}/* Start custom CSS for html, class: .elementor-element-9ad6793 *//* =========================================================
   AI SHIKATAHU - ABOUT PAGE
   Scoped CSS: Does not affect other website pages
   ========================================================= */

.aish-about-page {
    --aish-bg: #050807;
    --aish-bg-2: #08110d;
    --aish-card: #0b1511;
    --aish-card-2: #0e1c16;
    --aish-green: #39ff88;
    --aish-green-2: #19d66b;
    --aish-white: #f4fff8;
    --aish-text: #c2d0c8;
    --aish-muted: #7f9388;
    --aish-border: rgba(57, 255, 136, 0.14);

    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(57, 255, 136, 0.09),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 30%,
            rgba(0, 255, 153, 0.06),
            transparent 28%
        ),
        var(--aish-bg);

    color: var(--aish-white);
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    overflow: hidden;
    line-height: 1.6;
}


/* GLOBAL */

.aish-about-page *,
.aish-about-page *::before,
.aish-about-page *::after {
    box-sizing: border-box;
}

.aish-about-page a {
    text-decoration: none;
}

.aish-about-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* HERO */

.aish-about-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            rgba(5, 8, 7, 0.1),
            var(--aish-bg)
        );
}

.aish-about-hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(57, 255, 136, 0.13),
            transparent 68%
        );

    right: -150px;
    top: -120px;

    animation: aishFloat 8s ease-in-out infinite;
}

.aish-about-hero::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(57, 255, 136, 0.12);
    border-radius: 50%;

    right: 5%;
    top: 18%;

    animation: aishRotate 25s linear infinite;
}

.aish-about-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.aish-glow-one {
    background: rgba(57, 255, 136, 0.13);
    left: -70px;
    bottom: 40px;
}

.aish-glow-two {
    background: rgba(0, 255, 170, 0.08);
    right: 30%;
    top: 10%;
}

.aish-about-hero .aish-about-container {
    position: relative;
    z-index: 3;
}

.aish-about-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 9px 15px;
    border: 1px solid var(--aish-border);
    border-radius: 100px;

    background: rgba(57, 255, 136, 0.055);
    color: #bdfed5;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    backdrop-filter: blur(12px);
}

.aish-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--aish-green);

    box-shadow:
        0 0 10px var(--aish-green),
        0 0 22px rgba(57, 255, 136, 0.6);

    animation: aishPulse 2s infinite;
}

.aish-about-hero h1 {
    max-width: 850px;
    margin: 28px 0 22px;

    font-size: clamp(48px, 7vw, 88px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 850;
}

.aish-about-hero h1 span {
    display: block;
    color: var(--aish-green);

    text-shadow:
        0 0 25px rgba(57, 255, 136, 0.18);
}

.aish-about-intro {
    max-width: 720px;
    margin: 0;

    color: var(--aish-text);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.8;
}


/* BUTTONS */

.aish-about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.aish-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 52px;
    padding: 0 22px;

    border-radius: 12px;

    font-size: 14px;
    font-weight: 750;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.aish-btn:hover {
    transform: translateY(-3px);
}

.aish-btn-primary {
    color: #031008;
    background: var(--aish-green);

    box-shadow:
        0 10px 35px rgba(57, 255, 136, 0.16);
}

.aish-btn-primary:hover {
    box-shadow:
        0 15px 45px rgba(57, 255, 136, 0.28);
}

.aish-btn-secondary {
    color: var(--aish-white);
    border: 1px solid var(--aish-border);
    background: rgba(255, 255, 255, 0.025);
}

.aish-btn-secondary:hover {
    border-color: rgba(57, 255, 136, 0.4);
    background: rgba(57, 255, 136, 0.06);
}

.aish-btn span {
    font-size: 18px;
}


/* SECTION */

.aish-section {
    padding: 110px 0;
}

.aish-section-heading {
    max-width: 820px;
    margin-bottom: 55px;
}

.aish-section-heading.center {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.aish-section-heading > span,
.aish-transparency-card span,
.aish-cta-inner > span,
.aish-small-label {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--aish-green);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.aish-section-heading h2 {
    margin: 0 0 18px;

    font-size: clamp(35px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.aish-section-heading h2 strong {
    color: var(--aish-green);
}

.aish-section-heading p {
    margin: 0;
    color: var(--aish-text);
    font-size: 17px;
}


/* MISSION */

.aish-mission {
    background: var(--aish-bg-2);
}

.aish-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.aish-mission-card {
    position: relative;

    min-height: 280px;
    padding: 30px;

    border: 1px solid var(--aish-border);
    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(57, 255, 136, 0.055),
            rgba(255, 255, 255, 0.012)
        );

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.aish-mission-card:hover {
    transform: translateY(-8px);
    border-color: rgba(57, 255, 136, 0.38);
}

.aish-card-number {
    margin-bottom: 50px;

    color: var(--aish-green);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.aish-mission-card h3 {
    margin: 0 0 12px;
    font-size: 25px;
}

.aish-mission-card p {
    margin: 0;
    color: var(--aish-muted);
}


/* RESOURCE CARDS */

.aish-provide {
    background: var(--aish-bg);
}

.aish-resource-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.aish-resource-card {
    position: relative;

    display: flex;
    gap: 22px;

    padding: 28px;

    border: 1px solid var(--aish-border);
    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.025),
            rgba(57,255,136,0.025)
        );

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.aish-resource-card:hover {
    transform: translateY(-7px);

    border-color: rgba(57, 255, 136, 0.38);

    background:
        linear-gradient(
            145deg,
            rgba(57,255,136,0.07),
            rgba(255,255,255,0.025)
        );
}

.aish-resource-icon {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(57, 255, 136, 0.08);
    border: 1px solid rgba(57, 255, 136, 0.16);

    color: var(--aish-green);

    font-size: 24px;
}

.aish-resource-content h3 {
    margin: 0 0 8px;
    font-size: 23px;
}

.aish-resource-content p {
    margin: 0 0 17px;
    color: var(--aish-muted);
}

.aish-resource-link {
    color: var(--aish-green);
    font-size: 13px;
    font-weight: 750;
}


/* CATEGORIES */

.aish-categories {
    background: var(--aish-bg-2);
}

.aish-category-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.aish-category {
    padding: 25px;

    border: 1px solid rgba(57,255,136,0.1);
    border-radius: 16px;

    background: rgba(255,255,255,0.018);

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.aish-category:hover {
    transform: translateY(-5px);
    background: rgba(57,255,136,0.045);
}

.aish-category > span {
    color: var(--aish-green);
    font-size: 11px;
    font-weight: 800;
}

.aish-category h3 {
    margin: 18px 0 7px;
    font-size: 18px;
}

.aish-category p {
    margin: 0;
    color: var(--aish-muted);
    font-size: 13px;
}


/* AUDIENCE */

.aish-audience {
    background: var(--aish-bg);
}

.aish-audience-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.aish-audience-content h2 {
    margin: 0 0 22px;

    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.aish-audience-content h2 strong {
    color: var(--aish-green);
}

.aish-audience-content p {
    color: var(--aish-text);
    margin: 0 0 17px;
}

.aish-audience-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.aish-user-item {
    padding: 23px;

    border: 1px solid var(--aish-border);
    border-radius: 15px;

    background: rgba(255,255,255,0.018);
}

.aish-user-item span {
    display: block;
    margin-bottom: 12px;

    color: var(--aish-green);

    font-size: 11px;
    font-weight: 800;
}

.aish-user-item strong {
    display: block;
    margin-bottom: 5px;
}

.aish-user-item small {
    color: var(--aish-muted);
    font-size: 12px;
}


/* TRANSPARENCY */

.aish-transparency {
    padding-top: 30px;
    background: var(--aish-bg);
}

.aish-transparency-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 28px;

    padding: 42px;

    border: 1px solid rgba(57,255,136,0.2);
    border-radius: 24px;

    background:
        radial-gradient(
            circle at 0% 50%,
            rgba(57,255,136,0.08),
            transparent 40%
        ),
        rgba(57,255,136,0.025);
}

.aish-transparency-icon {
    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: var(--aish-green);
    color: #031008;

    font-size: 28px;
    font-weight: 900;

    box-shadow:
        0 0 35px rgba(57,255,136,0.15);
}

.aish-transparency-card h2 {
    margin: 0 0 15px;

    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
}

.aish-transparency-card h2 strong {
    color: var(--aish-green);
}

.aish-transparency-card p {
    max-width: 850px;
    margin: 0 0 12px;

    color: var(--aish-text);
}


/* FINAL CTA */

.aish-final-cta {
    position: relative;

    padding: 110px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 100%,
            rgba(57,255,136,0.12),
            transparent 48%
        ),
        var(--aish-bg-2);
}

.aish-cta-inner {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.aish-cta-inner h2 {
    margin: 0 0 18px;

    font-size: clamp(40px, 6vw, 68px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.aish-cta-inner h2 strong {
    color: var(--aish-green);
}

.aish-cta-inner p {
    max-width: 650px;
    margin: 0 auto;

    color: var(--aish-text);
    font-size: 17px;
}


/* ANIMATIONS */

@keyframes aishFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(25px);
    }
}

@keyframes aishRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes aishPulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.75);
    }
}


/* TABLET */

@media (max-width: 900px) {

    .aish-about-hero {
        min-height: 600px;
    }

    .aish-mission-grid {
        grid-template-columns: 1fr;
    }

    .aish-category-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .aish-audience-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}


/* MOBILE */

@media (max-width: 680px) {

    .aish-about-container {
        width: min(100% - 28px, 1180px);
    }

    .aish-section {
        padding: 75px 0;
    }

    .aish-about-hero {
        min-height: 600px;
        padding: 80px 0;
    }

    .aish-about-hero h1 {
        font-size: clamp(44px, 14vw, 64px);
        margin-top: 22px;
    }

    .aish-about-intro {
        font-size: 16px;
    }

    .aish-about-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .aish-btn {
        width: 100%;
    }

    .aish-resource-grid {
        grid-template-columns: 1fr;
    }

    .aish-resource-card {
        padding: 22px;
    }

    .aish-category-list {
        grid-template-columns: 1fr;
    }

    .aish-audience-box {
        grid-template-columns: 1fr;
    }

    .aish-transparency-card {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .aish-transparency-icon {
        width: 56px;
        height: 56px;
    }

    .aish-section-heading h2 {
        font-size: 38px;
    }

}


/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {

    .aish-about-page *,
    .aish-about-page *::before,
    .aish-about-page *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

}/* End custom CSS */