/* =========================================
   VISALWEB ABOUT PAGE
   ========================================= */


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

:root {

    --orange: #f97316;
    --orange-dark: #ea580c;

    --blue: #0f4c81;
    --blue-dark: #0b1f33;
    --blue-light: #60a5fa;

    --green: #198754;
    --green-light: #22c55e;

    --white: #ffffff;

    --light-bg: #f8fafc;

    --text-dark: #172033;
    --text: #334155;
    --text-light: #64748b;

    --border: #e2e8f0;

    --shadow-sm:
        0 4px 15px rgba(15, 76, 129, 0.08);

    --shadow-md:
        0 10px 30px rgba(15, 76, 129, 0.10);

    --shadow-lg:
        0 20px 50px rgba(15, 76, 129, 0.14);
}



/* =========================================
   GENERAL
   ========================================= */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    font-family:
        "Times New Roman",
        Times,
        serif;

    color: var(--text-dark);

    background: var(--white);
}


main {

    width: 100%;

    overflow: hidden;
}


.about-container {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding-left: 30px;
    padding-right: 30px;
}


.section-label {

    display: inline-block;

    margin-bottom: 12px;

    color: var(--orange);

    font-size: 15px;

    font-weight: bold;

    letter-spacing: 1.5px;
}



/* =========================================
   ABOUT HERO
   ========================================= */

.about-hero {

    position: relative;

    min-height: 460px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f7fbff 55%,
            #effdf5 100%
        );

    overflow: hidden;
}


.about-hero::before {

    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    top: -220px;
    left: -120px;

    background:
        rgba(249, 115, 22, 0.08);

    border-radius: 50%;
}


.about-hero::after {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -160px;
    bottom: -220px;

    background:
        rgba(25, 135, 84, 0.08);

    border-radius: 50%;
}


.about-hero-container {

    position: relative;

    z-index: 2;

    max-width: 900px;

    padding:
        80px 30px;
}


.about-label {

    display: inline-block;

    margin-bottom: 20px;

    padding: 8px 16px;

    background:
        rgba(249, 115, 22, 0.10);

    color: var(--orange);

    border-radius: 30px;

    font-size: 14px;

    font-weight: bold;

    letter-spacing: 1.5px;
}


.about-hero h1 {

    margin: 0 0 25px;

    color: var(--blue-dark);

    font-size:
        clamp(42px, 6vw, 68px);

    line-height: 1.08;
}


.about-hero h1 span {

    display: block;

    color: var(--orange);
}


.about-hero p {

    max-width: 720px;

    margin: 0 auto;

    color: var(--text-light);

    font-size: 20px;

    line-height: 1.8;
}



/* =========================================
   WHO WE ARE
   ========================================= */

.who-section {

    padding: 100px 0;

    background: var(--white);
}


.who-grid {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    align-items: center;

    gap: 80px;
}


.who-content {

    max-width: 580px;
}


.who-content h2 {

    margin: 0 0 25px;

    color: var(--blue-dark);

    font-size:
        clamp(38px, 4vw, 54px);

    line-height: 1.1;
}


.who-content h2 span {

    color: var(--orange);
}


.who-content p {

    margin: 0 0 18px;

    color: var(--text-light);

    font-size: 18px;

    line-height: 1.8;
}


.who-content p:last-child {

    margin-bottom: 0;
}



/* =========================================
   WHO WE ARE VISUAL
   ========================================= */

.who-visual {

    position: relative;

    min-height: 450px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #eff6ff,
            #f0fdf4
        );

    border-radius: 25px;

    overflow: hidden;
}


.who-visual::before {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    background:
        rgba(249, 115, 22, 0.10);

    border-radius: 50%;

    top: -100px;
    right: -80px;
}


.who-visual::after {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    background:
        rgba(25, 135, 84, 0.10);

    border-radius: 50%;

    bottom: -90px;
    left: -60px;
}


.about-brand-card {

    position: relative;

    z-index: 2;

    width: 310px;

    padding: 40px 30px;

    background: var(--white);

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

    border-radius: 20px;

    text-align: center;

    box-shadow: var(--shadow-lg);
}


.about-brand-icon {

    width: 80px;
    height: 80px;

    margin: 0 auto 20px;

    display: flex;

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

    background: var(--orange);

    color: var(--white);

    border-radius: 18px;

    font-size: 42px;

    font-weight: bold;

    box-shadow:
        0 10px 25px
        rgba(249, 115, 22, 0.25);
}


.about-brand-card h3 {

    margin: 0 0 8px;

    color: var(--blue);

    font-size: 32px;
}


.about-brand-card p {

    margin: 0 0 15px;

    color: var(--green);

    font-size: 17px;

    font-weight: bold;
}


.about-brand-card span {

    display: block;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.6;
}


.floating-about-card {

    position: absolute;

    right: 25px;
    bottom: 25px;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 14px 18px;

    background: var(--white);

    color: var(--blue);

    border-radius: 10px;

    box-shadow: var(--shadow-md);

    font-size: 15px;
}


.floating-about-card i {

    color: var(--green);

    font-size: 20px;
}



/* =========================================
   MISSION & VISION
   ========================================= */

.mission-section {

    padding: 100px 0;

    background: var(--light-bg);
}


.mission-grid {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 25px;
}


.mission-card {

    position: relative;

    padding: 45px;

    min-height: 390px;

    border-radius: 20px;

    overflow: hidden;

    color: var(--white);
}


.mission-card::after {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    right: -100px;
    bottom: -120px;

    background:
        rgba(255, 255, 255, 0.08);

    border-radius: 50%;
}


.mission-card-orange {

    background:
        linear-gradient(
            135deg,
            #f97316,
            #ea580c
        );
}


.mission-card-blue {

    background:
        linear-gradient(
            135deg,
            #0f4c81,
            #0b1f33
        );
}


.mission-icon {

    width: 65px;
    height: 65px;

    margin-bottom: 25px;

    display: flex;

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

    background:
        rgba(255, 255, 255, 0.15);

    border-radius: 15px;

    font-size: 27px;
}


.mission-card > span {

    display: block;

    margin-bottom: 12px;

    font-size: 14px;

    font-weight: bold;

    letter-spacing: 1.5px;

    opacity: 0.9;
}


.mission-card h2 {

    position: relative;

    z-index: 2;

    max-width: 500px;

    margin: 0 0 20px;

    font-size: 34px;

    line-height: 1.2;
}


.mission-card p {

    position: relative;

    z-index: 2;

    max-width: 520px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.88);

    font-size: 18px;

    line-height: 1.7;
}



/* =========================================
   APPROACH
   ========================================= */

.approach-section {

    padding: 100px 0;

    background: var(--white);
}


.section-heading {

    max-width: 750px;

    margin: 0 auto 55px;

    text-align: center;
}


.section-heading h2 {

    margin: 0 0 18px;

    color: var(--blue-dark);

    font-size:
        clamp(36px, 4vw, 52px);

    line-height: 1.15;
}


.section-heading h2 span {

    color: var(--orange);
}


.section-heading p {

    margin: 0;

    color: var(--text-light);

    font-size: 18px;

    line-height: 1.7;
}


.approach-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


.approach-card {

    position: relative;

    padding: 30px 25px;

    background: var(--white);

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

    border-radius: 15px;

    box-shadow: var(--shadow-sm);

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


.approach-card:hover {

    transform: translateY(-8px);

    border-color:
        rgba(249, 115, 22, 0.30);

    box-shadow: var(--shadow-md);
}


.approach-number {

    position: absolute;

    top: 20px;
    right: 20px;

    color:
        rgba(15, 76, 129, 0.10);

    font-size: 28px;

    font-weight: bold;
}


.approach-icon {

    width: 58px;
    height: 58px;

    margin-bottom: 22px;

    display: flex;

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

    background:
        rgba(249, 115, 22, 0.10);

    color: var(--orange);

    border-radius: 13px;

    font-size: 23px;
}


.approach-card:nth-child(2) .approach-icon {

    background:
        rgba(15, 76, 129, 0.10);

    color: var(--blue);
}


.approach-card:nth-child(3) .approach-icon {

    background:
        rgba(25, 135, 84, 0.10);

    color: var(--green);
}


.approach-card:nth-child(4) .approach-icon {

    background:
        rgba(96, 165, 250, 0.12);

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


.approach-card h3 {

    margin: 0 0 12px;

    color: var(--blue-dark);

    font-size: 22px;
}


.approach-card p {

    margin: 0;

    color: var(--text-light);

    font-size: 15px;

    line-height: 1.7;
}



/* =========================================
   OUTCOME FLOW
   ========================================= */

.about-outcomes-section {

    padding: 100px 0;

    background: var(--light-bg);
}


.outcome-flow {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    flex-wrap: wrap;
}


.about-outcome {

    min-width: 190px;

    padding: 25px 20px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 12px;

    background: var(--white);

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

    border-radius: 14px;

    box-shadow: var(--shadow-sm);

    text-align: center;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.about-outcome:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow-md);
}


.about-outcome i {

    color: var(--orange);

    font-size: 27px;
}


.about-outcome:nth-child(3) i {

    color: var(--blue);
}


.about-outcome:nth-child(5) i {

    color: var(--green);
}


.about-outcome:nth-child(7) i {

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


.about-outcome span {

    color: var(--blue-dark);

    font-size: 17px;

    font-weight: bold;
}


.flow-arrow {

    color: var(--orange);

    font-size: 22px;
}



/* =========================================
   AUDIENCE
   ========================================= */

.audience-section {

    padding: 100px 0;

    background: var(--white);
}


.audience-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}


.audience-card {

    padding: 30px 25px;

    background: var(--white);

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

    border-radius: 15px;

    text-align: center;

    box-shadow: var(--shadow-sm);

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


.audience-card:hover {

    transform: translateY(-7px);

    border-color:
        rgba(249, 115, 22, 0.30);

    box-shadow: var(--shadow-md);
}


.audience-card i {

    width: 62px;
    height: 62px;

    margin: 0 auto 18px;

    display: flex;

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

    background:
        rgba(249, 115, 22, 0.10);

    color: var(--orange);

    border-radius: 14px;

    font-size: 25px;
}


.audience-card:nth-child(2n) i {

    background:
        rgba(15, 76, 129, 0.10);

    color: var(--blue);
}


.audience-card:nth-child(3n) i {

    background:
        rgba(25, 135, 84, 0.10);

    color: var(--green);
}


.audience-card h3 {

    margin: 0 0 10px;

    color: var(--blue-dark);

    font-size: 20px;

    line-height: 1.3;
}


.audience-card p {

    margin: 0;

    color: var(--text-light);

    font-size: 15px;

    line-height: 1.6;
}



/* =========================================
   FINAL CTA
   ========================================= */

.about-cta {

    position: relative;

    padding: 100px 30px;

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

    text-align: center;

    overflow: hidden;
}


.about-cta::before {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    top: -180px;
    left: -100px;

    background:
        rgba(249, 115, 22, 0.15);

    border-radius: 50%;
}


.about-cta::after {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -100px;
    bottom: -170px;

    background:
        rgba(34, 197, 94, 0.12);

    border-radius: 50%;
}


.about-cta-container {

    position: relative;

    z-index: 2;

    max-width: 750px;

    margin: 0 auto;
}


.about-cta-container .section-label {

    color: #fb923c;
}


.about-cta-container h2 {

    margin: 0 0 20px;

    color: var(--white);

    font-size:
        clamp(40px, 5vw, 58px);

    line-height: 1.1;
}


.about-cta-container h2 span {

    color: #fb923c;
}


.about-cta-container p {

    margin: 0 auto 30px;

    color: #dbeafe;

    font-size: 19px;

    line-height: 1.7;
}


.about-cta-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 25px;

    background: var(--orange);

    color: var(--white);

    border-radius: 8px;

    text-decoration: none;

    font-size: 17px;

    font-weight: bold;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.about-cta-button:hover {

    background: var(--orange-dark);

    color: var(--white);

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, 0.20);
}



/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1050px) {

    .who-grid {

        grid-template-columns: 1fr;

        gap: 50px;
    }


    .who-content {

        max-width: 750px;

        margin: 0 auto;

        text-align: center;
    }


    .mission-grid {

        grid-template-columns: 1fr;
    }


    .approach-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .audience-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}



/* =========================================
   SMALL TABLET
   ========================================= */

@media (max-width: 800px) {

    .about-container {

        padding-left: 22px;

        padding-right: 22px;
    }


    .outcome-flow {

        gap: 12px;
    }


    .about-outcome {

        min-width: 165px;
    }


    .flow-arrow {

        font-size: 18px;
    }

}



/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    .about-container {

        padding-left: 18px;

        padding-right: 18px;
    }


    .about-hero {

        min-height: 400px;
    }


    .about-hero-container {

        padding:
            65px 18px;
    }


    .about-hero h1 {

        font-size: 42px;
    }


    .about-hero p {

        font-size: 17px;
    }


    .who-section,
    .mission-section,
    .approach-section,
    .about-outcomes-section,
    .audience-section {

        padding: 70px 0;
    }


    .who-content h2 {

        font-size: 38px;
    }


    .who-content p {

        font-size: 17px;
    }


    .who-visual {

        min-height: 400px;
    }


    .about-brand-card {

        width: 270px;

        padding: 32px 22px;
    }


    .about-brand-icon {

        width: 70px;
        height: 70px;

        font-size: 35px;
    }


    .floating-about-card {

        right: 15px;
        bottom: 15px;

        padding: 12px 14px;

        font-size: 14px;
    }


    .mission-card {

        padding: 32px 25px;

        min-height: auto;
    }


    .mission-card h2 {

        font-size: 29px;
    }


    .mission-card p {

        font-size: 17px;
    }


    .approach-grid {

        grid-template-columns: 1fr;
    }


    .section-heading {

        margin-bottom: 40px;
    }


    .section-heading h2 {

        font-size: 36px;
    }


    .section-heading p {

        font-size: 17px;
    }


    .outcome-flow {

        flex-direction: column;
    }


    .about-outcome {

        width: 100%;

        max-width: 320px;
    }


    .flow-arrow {

        transform: rotate(90deg);

        margin: 2px 0;
    }


    .audience-grid {

        grid-template-columns: 1fr;
    }


    .about-cta {

        padding:
            75px 18px;
    }


    .about-cta-container h2 {

        font-size: 40px;
    }


    .about-cta-container p {

        font-size: 17px;
    }

}



/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 400px) {

    .about-hero h1 {

        font-size: 37px;
    }


    .who-content h2 {

        font-size: 34px;
    }


    .section-heading h2 {

        font-size: 32px;
    }


    .about-brand-card {

        width: 245px;
    }


    .about-cta-container h2 {

        font-size: 35px;
    }

}