/* ============================================================
   LIVING WISDOM WORD MINISTRY
   ABOUT US PAGE
   About / Mission / Vision / Aims & Objects
============================================================ */


/* ============================================================
   ROOT VARIABLES
============================================================ */

:root {
    --lwwm-blue: #00A2D3;
    --lwwm-blue-dark: #007FA6;
    --lwwm-blue-deep: #006987;

    --lwwm-gold: #E2B547;
    --lwwm-gold-light: #F1D27C;

    --lwwm-dark: #17242D;
    --lwwm-text: #64717A;

    --lwwm-light: #F5FBFD;
    --lwwm-border: #DCEFF5;
}


/* ============================================================
   COMMON SECTION LABEL
============================================================ */

.lwwm-section-label {
    display: flex;
    align-items: center;

    gap: 11px;

    margin-bottom: 16px;

    color: var(--lwwm-blue);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;

    text-transform: uppercase;
}


.lwwm-section-label::before {
    content: "";

    display: inline-block;

    width: 34px;
    height: 2px;

    background: var(--lwwm-gold);
}


.lwwm-section-label.justify-content-center::after {
    content: "";

    display: inline-block;

    width: 34px;
    height: 2px;

    background: var(--lwwm-gold);
}


/* ============================================================
   COMMON TITLE DIVIDER
============================================================ */

.lwwm-title-divider {
    display: flex;
    align-items: center;

    gap: 10px;

    width: 190px;

    margin: 22px 0 26px;
}


.lwwm-title-divider::before,
.lwwm-title-divider::after {
    content: "";

    flex: 1;

    height: 2px;

    background: var(--lwwm-gold);
}


.lwwm-title-divider i {
    color: var(--lwwm-blue);

    font-size: 17px;
}


/* ============================================================
   1. ABOUT INTRO / OUR STORY
============================================================ */

.about-intro-section {
    position: relative;

    overflow: hidden;

    padding: 105px 0 115px;

    background:
        radial-gradient(
            circle at 5% 10%,
            rgba(0, 162, 211, .07),
            transparent 30%
        ),
        radial-gradient(
            circle at 95% 90%,
            rgba(226, 181, 71, .05),
            transparent 25%
        ),
        #FFFFFF;
}


/* ============================================================
   ABOUT INTRO CONTENT
============================================================ */

.about-intro-content {
    padding-right: 15px;
}


.about-intro-title {
    margin: 0;

    color: var(--lwwm-dark);

    font-size: 46px;
    line-height: 1.13;

    font-weight: 800;
}


.about-intro-title span {
    display: block;

    color: var(--lwwm-blue);
}


.about-intro-content p {
    margin-bottom: 16px;

    color: var(--lwwm-text);

    font-size: 15.5px;
    line-height: 1.85;
}


.about-intro-content p strong {
    color: var(--lwwm-blue-dark);

    font-weight: 750;
}


.about-intro-lead {
    color: #344852 !important;

    font-size: 19px !important;
    line-height: 1.75 !important;

    font-weight: 500;
}


/* ============================================================
   SCRIPTURE BLOCK
============================================================ */

.about-scripture {
    position: relative;

    margin: 28px 0;

    padding: 24px 25px 22px 65px;

    background:
        linear-gradient(
            135deg,
            #F3FAFC,
            #F8FCFD
        );

    border-left:
        4px solid
        var(--lwwm-gold);

    border-radius: 10px;
}


.about-scripture > i {
    position: absolute;

    top: 21px;
    left: 22px;

    color: var(--lwwm-blue);

    font-size: 28px;
}


.about-scripture p {
    margin-bottom: 7px;

    color: #344852;

    font-style: italic;
    font-weight: 500;
}


.about-scripture cite {
    color: var(--lwwm-blue);

    font-size: 12px;
    font-style: normal;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* ============================================================
   ABOUT INVITATION CALLOUT
============================================================ */

.about-callout {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-top: 28px;

    padding: 20px;

    color: #FFFFFF;

    background:
        linear-gradient(
            135deg,
            var(--lwwm-blue-dark),
            var(--lwwm-blue)
        );

    border-radius: 13px;

    box-shadow:
        0 15px 35px
        rgba(0, 162, 211, .18);
}


.about-callout-icon {
    width: 52px;
    height: 52px;

    min-width: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--lwwm-gold-light);

    background:
        rgba(255, 255, 255, .13);

    border-radius: 50%;

    font-size: 21px;
}


.about-callout small {
    display: block;

    margin-bottom: 3px;

    color: var(--lwwm-gold-light);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


.about-callout strong {
    display: block;

    color: #FFFFFF;

    font-size: 14px;
    line-height: 1.5;
}


/* ============================================================
   ABOUT IMAGE AREA
============================================================ */

.about-intro-image-area {
    position: relative;

    padding: 25px 20px 70px 55px;
}


.about-intro-image {
    position: relative;

    z-index: 3;

    overflow: hidden;

    border-radius:
        80px 18px 80px 18px;

    box-shadow:
        0 30px 70px
        rgba(22, 55, 72, .18);
}


.about-intro-image img {
    display: block;

    width: 100%;
    min-height: 650px;

    object-fit: cover;

    transition:
        transform .7s ease;
}


.about-intro-image:hover img {
    transform: scale(1.04);
}


/* Decorative outline */

.about-image-shape {
    position: absolute;

    z-index: 1;

    right: 48px;
    bottom: 20px;

    width: 78%;
    height: 78%;

    border:
        4px solid
        var(--lwwm-blue);

    border-radius:
        75px 18px 75px 18px;
}


/* ============================================================
   YEAR BADGE
============================================================ */

.about-year-badge {
    position: absolute;

    z-index: 6;

    top: 0;
    left: 0;

    width: 125px;
    height: 125px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    color: #FFFFFF;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #EDC85F,
            #C7982B
        );

    border:
        7px solid
        #FFFFFF;

    border-radius: 50%;

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, .15);
}


.about-year-badge small {
    display: block;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.about-year-badge strong {
    display: block;

    margin-top: 3px;

    font-size: 29px;
    line-height: 1;

    font-weight: 900;
}


/* ============================================================
   ONE MILLION SOULS CARD
============================================================ */

.about-souls-card {
    position: absolute;

    z-index: 6;

    right: 0;
    bottom: 83px;

    width: 330px;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 20px 22px;

    background: #FFFFFF;

    border:
        1px solid
        var(--lwwm-border);

    border-radius: 14px;

    box-shadow:
        0 20px 45px
        rgba(22, 55, 72, .17);
}


.about-souls-icon {
    width: 53px;
    height: 53px;

    min-width: 53px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #FFFFFF;

    background: var(--lwwm-blue);

    border-radius: 50%;

    font-size: 21px;
}


.about-souls-card strong {
    display: block;

    margin-bottom: 3px;

    color: var(--lwwm-dark);

    font-size: 15px;
}


.about-souls-card span {
    display: block;

    color: var(--lwwm-text);

    font-size: 11px;
    line-height: 1.4;
}


/* ============================================================
   2. MISSION & VISION
============================================================ */

.about-purpose-section {
    position: relative;

    overflow: hidden;

    padding: 100px 0;

    background:
        linear-gradient(
            135deg,
            #EAF7FB 0%,
            #F3FBFD 48%,
            #E4F4F9 100%
        );
}


/* Blue decorative circle */

.about-purpose-section::before {
    content: "";

    position: absolute;

    top: -170px;
    right: -145px;

    width: 400px;
    height: 400px;

    background:
        rgba(0, 162, 211, .08);

    border-radius: 50%;
}


/* Gold decorative circle */

.about-purpose-section::after {
    content: "";

    position: absolute;

    left: -130px;
    bottom: -180px;

    width: 340px;
    height: 340px;

    background:
        rgba(226, 181, 71, .07);

    border-radius: 50%;
}


.about-purpose-section .container {
    position: relative;

    z-index: 2;
}


/* ============================================================
   MISSION / VISION MAIN HEADING
============================================================ */

.about-page-heading {
    max-width: 800px;

    margin: 0 auto 55px;

    text-align: center;
}


.about-page-heading .lwwm-section-label {
    justify-content: center;
}


.about-page-heading h1 {
    margin-bottom: 16px;

    color: var(--lwwm-dark);

    font-size: 46px;
    line-height: 1.15;

    font-weight: 800;
}


.about-page-heading h1 span {
    color: var(--lwwm-blue);
}


.about-page-heading > p {
    max-width: 720px;

    margin:
        0 auto;

    color: #5F6F77;

    font-size: 16px;
    line-height: 1.8;
}


/* ============================================================
   MISSION / VISION CARDS
============================================================ */

.about-purpose-card {
    position: relative;

    overflow: hidden;

    padding: 42px;

    border-radius: 22px;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.about-purpose-card:hover {
    transform:
        translateY(-7px);
}


/* Mission */

.mission-card {
    background: #FFFFFF;

    border:
        1px solid
        rgba(0, 162, 211, .16);

    border-top:
        5px solid
        var(--lwwm-blue);

    box-shadow:
        0 22px 55px
        rgba(24, 50, 64, .09);
}


.mission-card:hover {
    box-shadow:
        0 32px 70px
        rgba(24, 50, 64, .14);
}


/* Vision */

.vision-card {
    color: #FFFFFF;

    background:
        linear-gradient(
            145deg,
            #006987 0%,
            #008DB8 48%,
            #00A2D3 100%
        );

    box-shadow:
        0 24px 60px
        rgba(0, 126, 164, .22);
}


.vision-card::after {
    content: "";

    position: absolute;

    top: -90px;
    right: -90px;

    width: 220px;
    height: 220px;

    background:
        rgba(255,255,255,.06);

    border-radius: 50%;
}


.vision-card:hover {
    box-shadow:
        0 34px 75px
        rgba(0, 126, 164, .28);
}


/* ============================================================
   PURPOSE CARD HEADING
============================================================ */

.purpose-heading {
    position: relative;

    z-index: 2;

    display: flex;
    align-items: center;

    gap: 17px;

    margin-bottom: 25px;
}


.purpose-icon {
    width: 65px;
    height: 65px;

    min-width: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--lwwm-blue);

    background:
        rgba(0, 162, 211, .10);

    border-radius: 50%;

    font-size: 27px;
}


.vision-icon {
    color:
        var(--lwwm-gold-light);

    background:
        rgba(255, 255, 255, .15);
}


.purpose-heading small {
    display: block;

    margin-bottom: 3px;

    color: #A07826;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.purpose-heading h2 {
    margin: 0;

    color: var(--lwwm-dark);

    font-size: 30px;

    font-weight: 800;
}


.vision-card .purpose-heading small {
    color:
        var(--lwwm-gold-light);
}


.vision-card .purpose-heading h2 {
    color: #FFFFFF;
}


/* ============================================================
   PURPOSE CARD TEXT
============================================================ */

.about-purpose-card p {
    position: relative;

    z-index: 2;

    color: var(--lwwm-text);

    font-size: 15px;
    line-height: 1.85;
}


.vision-card p {
    color:
        rgba(255,255,255,.89);
}


.vision-card strong {
    color:
        var(--lwwm-gold-light);
}


/* ============================================================
   MISSION HIGHLIGHT
============================================================ */

.purpose-highlight {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    margin: 24px 0;

    padding: 17px 18px;

    color: #3D5661;

    background:
        linear-gradient(
            135deg,
            #F2FAFC,
            #F8FCFD
        );

    border-left:
        4px solid
        var(--lwwm-gold);

    border-radius: 8px;

    font-weight: 600;
}


.purpose-highlight i {
    margin-top: 3px;

    color:
        var(--lwwm-blue);
}


/* ============================================================
   MISSION ITEMS
============================================================ */

.mission-items > div {
    display: flex;
    align-items: flex-start;

    gap: 11px;

    padding: 10px 0;

    color: #53646C;

    border-bottom:
        1px solid
        #EEF2F4;

    font-size: 14px;
}


.mission-items > div:last-child {
    border-bottom: 0;
}


.mission-items i {
    margin-top: 3px;

    color:
        var(--lwwm-blue);
}


/* ============================================================
   VISION PILLS
============================================================ */

.vision-pills {
    position: relative;

    z-index: 2;

    display: flex;
    flex-wrap: wrap;

    gap: 9px;

    margin-top: 28px;
}


.vision-pills span {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding: 9px 14px;

    color: #FFFFFF;

    background:
        rgba(255,255,255,.11);

    border:
        1px solid
        rgba(255,255,255,.18);

    border-radius: 30px;

    font-size: 12px;
    font-weight: 600;
}


.vision-pills i {
    color:
        var(--lwwm-gold-light);
}


/* ============================================================
   3. AIMS & OBJECTS
============================================================ */

.about-aims-section {
    position: relative;

    overflow: hidden;

    padding: 100px 0;

    background:
        linear-gradient(
            180deg,
            #FFFFFF 0%,
            #F8FAFB 100%
        );
}


/* Top accent */

.about-aims-section::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--lwwm-blue),
            var(--lwwm-gold),
            var(--lwwm-blue),
            transparent
        );
}


/* ============================================================
   AIMS HEADER
============================================================ */

.aims-heading {
    max-width: 800px;

    margin:
        0 auto 55px;

    text-align: center;
}


.aims-heading .lwwm-section-label {
    justify-content: center;
}


.aims-heading h2 {
    margin-bottom: 16px;

    color:
        var(--lwwm-dark);

    font-size: 42px;
    line-height: 1.15;

    font-weight: 800;
}


.aims-heading h2 span {
    color:
        var(--lwwm-blue);
}


.aims-heading p {
    max-width: 720px;

    margin:
        0 auto;

    color:
        var(--lwwm-text);

    font-size: 16px;
    line-height: 1.8;
}


/* ============================================================
   AIM CARDS
============================================================ */

.aim-card {
    position: relative;

    overflow: hidden;

    padding: 35px 30px;

    background:
        #FFFFFF;

    border:
        1px solid
        var(--lwwm-border);

    border-radius: 18px;

    box-shadow:
        0 15px 40px
        rgba(23, 55, 71, .06);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}


.aim-card:hover {
    transform:
        translateY(-8px);

    border-color:
        var(--lwwm-blue);

    box-shadow:
        0 25px 55px
        rgba(0, 162, 211, .13);
}


/* Large faint number */

.aim-number {
    position: absolute;

    top: 15px;
    right: 20px;

    color:
        rgba(0, 162, 211, .07);

    font-size: 55px;
    line-height: 1;

    font-weight: 900;
}


/* Icon */

.aim-icon {
    position: relative;

    z-index: 2;

    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    color: #FFFFFF;

    background:
        linear-gradient(
            135deg,
            var(--lwwm-blue),
            var(--lwwm-blue-dark)
        );

    border-radius: 16px;

    font-size: 25px;

    box-shadow:
        0 12px 25px
        rgba(0, 162, 211, .20);

    transition:
        transform .35s ease,
        background .35s ease;
}


.aim-card:hover .aim-icon {
    background:
        linear-gradient(
            135deg,
            var(--lwwm-gold),
            #C59625
        );

    transform:
        rotate(-4deg)
        scale(1.05);
}


/* Text */

.aim-card h4 {
    position: relative;

    z-index: 2;

    margin-bottom: 13px;

    color:
        var(--lwwm-dark);

    font-size: 20px;
    line-height: 1.35;

    font-weight: 750;
}


.aim-card p {
    position: relative;

    z-index: 2;

    margin: 0;

    color:
        var(--lwwm-text);

    font-size: 14px;
    line-height: 1.8;
}


/* ============================================================
   RESPONSIVE - TABLET
============================================================ */

@media (max-width: 991.98px) {

    .about-intro-section {
        padding:
            80px 0 95px;
    }


    .about-intro-content {
        padding-right: 0;
    }


    .about-intro-title {
        font-size: 39px;
    }


    .about-purpose-section {
        padding:
            85px 0;
    }


    .about-page-heading h1 {
        font-size: 39px;
    }


    .about-aims-section {
        padding:
            85px 0;
    }

}


/* ============================================================
   RESPONSIVE - MOBILE
============================================================ */

@media (max-width: 767.98px) {

    .about-intro-section {
        padding:
            65px 0 80px;
    }


    .about-intro-title {
        font-size: 32px;
    }


    .about-intro-lead {
        font-size:
            17px !important;
    }


    .about-intro-image-area {
        padding:
            35px 15px 75px;
    }


    .about-intro-image img {
        min-height: 440px;
    }


    .about-year-badge {
        width: 105px;
        height: 105px;
    }


    .about-year-badge strong {
        font-size: 24px;
    }


    .about-souls-card {
        right: 0;
        bottom: 30px;

        width: 88%;
    }


    .about-scripture {
        padding:
            22px 20px 22px 55px;
    }


    /* Mission Vision */

    .about-purpose-section {
        padding:
            70px 0;
    }


    .about-page-heading {
        margin-bottom: 40px;
    }


    .about-page-heading h1 {
        font-size: 32px;
    }


    .about-purpose-card {
        padding:
            30px 24px;
    }


    .purpose-icon {
        width: 55px;
        height: 55px;

        min-width: 55px;

        font-size: 23px;
    }


    .purpose-heading h2 {
        font-size: 25px;
    }


    /* Aims */

    .about-aims-section {
        padding:
            70px 0;
    }


    .aims-heading {
        margin-bottom: 40px;
    }


    .aims-heading h2 {
        font-size: 32px;
    }


    .aim-card {
        padding:
            30px 25px;
    }

}


/* ============================================================
   RESPONSIVE - SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    .about-intro-title {
        font-size: 29px;
    }


    .about-page-heading h1 {
        font-size: 29px;
    }


    .aims-heading h2 {
        font-size: 29px;
    }


    .about-callout {
        align-items:
            flex-start;
    }


    .about-souls-card {
        width: 92%;

        padding:
            17px;
    }


    .purpose-heading {
        align-items:
            flex-start;
    }


    .vision-pills span {
        font-size: 11px;

        padding:
            8px 11px;
    }

}