﻿/* =========================================================
   FOUNDER PROFILE PAGE
   Radiant Institute of Professional Skill Development
========================================================= */


/* =========================================================
   GLOBAL
========================================================= */

.founder-page
{
    overflow-x: hidden;
}

    .founder-page .section
    {
        padding: 90px 0;
    }

    .founder-page p
    {
        color: #555;
        line-height: 1.8;
    }

    .founder-page h1,
    .founder-page h2,
    .founder-page h3,
    .founder-page h4
    {
        font-weight: 700;
    }


/* =========================================================
   SECTION TITLE
========================================================= */

.section-tag
{
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 35px;
}

    .section-tag::before
    {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 25px;
        height: 2px;
        background: #F68B1F;
        transform: translateY(-50%);
    }


.section-heading-center
{
    text-align: center;
    max-width: 750px;
    margin: 0 auto 55px;
}

    /*.section-heading-center .section-tag
    {
        padding-left: 0;
    }*/

        .section-heading-center .section-tag::before
        {
            display: none;
        }

    .section-heading-center h2
    {
        font-size: 38px;
        color: #16324F;
        margin-bottom: 15px;
    }

    .section-heading-center p
    {
        max-width: 650px;
        margin: auto;
    }


/* =========================================================
   FOUNDER HERO
========================================================= */

.founder-hero
{
    position: relative;
    padding: 100px 0;
    background: linear-gradient( 120deg, #f3faf5 0%, #ffffff 60% );
    overflow: hidden;
}


    /* Decorative circle */

    .founder-hero::after
    {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: rgba(25,155,67,.06);
        right: -150px;
        top: -150px;
    }


.founder-hero-grid
{
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}


/* Founder Image */

.founder-photo
{
    position: relative;
    padding: 15px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}


    .founder-photo::before
    {
        content: "";
        position: absolute;
        left: -15px;
        bottom: -15px;
        width: 100px;
        height: 100px;
        border-left: 5px solid #F68B1F;
        border-bottom: 5px solid #F68B1F;
        border-radius: 0 0 0 20px;
        z-index: -1;
    }


    .founder-photo img
    {
        display: block;
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 18px;
    }


/* Hero Content */

.founder-intro
{
    max-width: 700px;
}


.founder-label
{
    display: inline-block;
    background: #199B43;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}


.founder-intro h1
{
    font-size: 58px;
    line-height: 1.1;
    color: #199B43;
    margin-bottom: 18px;
}


.founder-intro h2
{
    font-size: 28px;
    line-height: 1.4;
    color: #16324F;
    margin-bottom: 20px;
}


.founder-intro p
{
    font-size: 17px;
    max-width: 650px;
    margin-bottom: 30px;
}


/* Button */

.btn-founder
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F68B1F;
    color: #fff !important;
    padding: 13px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
}


    .btn-founder:hover
    {
        background: #199B43;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,.12);
    }


/* =========================================================
   ABOUT FOUNDER
========================================================= */

.founder-about
{
    background: #fff;
}


.founder-about-grid
{
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: start;
}


    .founder-about-grid h2
    {
        font-size: 42px;
        color: #16324F;
        line-height: 1.25;
        margin-top: 10px;
    }


    .founder-about-grid p
    {
        margin-bottom: 20px;
        font-size: 16px;
    }


/* =========================================================
   JOURNEY
========================================================= */

.founder-journey
{
    background: #f7faf8;
}


/*.journey-timeline
{
    position: relative;
    max-width: 950px;
    margin: auto;
    padding-left: 80px;
}


    .journey-timeline::before
    {
        content: "";
        position: absolute;
        left: 28px;
        top: 0;
        bottom: 0;
        width: 3px;
        background: #199B43;
    }


.journey-item
{
    position: relative;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 30px;
    margin-bottom: 40px;
}


    .journey-item::before
    {
        content: "";
        position: absolute;
        left: -60px;
        top: 8px;
        width: 16px;
        height: 16px;
        background: #F68B1F;
        border: 4px solid #fff;
        border-radius: 50%;
        box-shadow: 0 0 0 2px #199B43;
    }


.journey-year
{
    font-weight: 700;
    color: #199B43;
    font-size: 18px;
    padding-top: 3px;
}


.journey-content
{
    background: #fff;
    padding: 28px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
    border-left: 4px solid #199B43;
}


    .journey-content h3
    {
        color: #16324F;
        font-size: 21px;
        margin-bottom: 10px;
    }


    .journey-content p
    {
        margin: 0;
    }
*/

/* =========================================================
   TWO ARMS / VISION
========================================================= */

.founder-vision
{
    background: #fff;
}


.vision-grid
{
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 25px;
    align-items: center;
    max-width: 1000px;
    margin: auto;
}


.vision-card
{
    background: #f8fbf9;
    padding: 45px 35px;
    border-radius: 22px;
    text-align: center;
    border: 1px solid #e7eee9;
    transition: all .3s ease;
}


    .vision-card:hover
    {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,.08);
    }


.vision-icon
{
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #199B43;
    color: #fff;
    border-radius: 50%;
    font-size: 32px;
}


.vision-card h3
{
    color: #199B43;
    font-size: 25px;
    margin-bottom: 5px;
}


.vision-card > span
{
    color: #F68B1F;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}


.vision-card p
{
    margin-top: 18px;
    margin-bottom: 0;
}


.vision-connector
{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #F68B1F;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: auto;
}


/* =========================================================
   SKILL TO STARTUP MODEL
========================================================= */

.skill-startup-section
{
    padding: 100px 0;
    background: linear-gradient( 135deg, #199B43, #10682f );
    color: #fff;
    text-align: center;
}


.skill-startup-content
{
    max-width: 750px;
    margin: 0 auto 55px;
}


.skill-startup-section .section-tag
{
    color: #fff;
    padding-left: 0;
}


    .skill-startup-section .section-tag::before
    {
        display: none;
    }


.skill-startup-section h2
{
    font-size: 42px;
    margin-bottom: 18px;
    color: #fff;
}


.skill-startup-section p
{
    color: rgba(255,255,255,.85);
    font-size: 17px;
}


.skill-flow
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}


    .skill-flow > div
    {
        width: 180px;
        min-height: 160px;
        padding: 30px 20px;
        border: 1px solid rgba(255,255,255,.25);
        background: rgba(255,255,255,.08);
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: .3s;
    }


        .skill-flow > div:hover
        {
            background: #fff;
            color: #199B43;
            transform: translateY(-8px);
        }


    .skill-flow i
    {
        font-size: 40px;
        margin-bottom: 15px;
    }


    .skill-flow strong
    {
        font-size: 18px;
    }


    .skill-flow > span
    {
        font-size: 30px;
        color: #F68B1F;
        font-weight: 700;
    }


/* =========================================================
   RAMP STORY
========================================================= */

.ramp-story
{
    background: #f8faf9;
}


.ramp-grid
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}


.ramp-image
{
    position: relative;
}


    .ramp-image img
    {
        width: 100%;
        height: 480px;
        object-fit: cover;
        border-radius: 22px;
        box-shadow: 0 20px 45px rgba(0,0,0,.12);
    }


    .ramp-image::after
    {
        content: "";
        position: absolute;
        right: -20px;
        bottom: -20px;
        width: 120px;
        height: 120px;
        border-right: 5px solid #F68B1F;
        border-bottom: 5px solid #F68B1F;
        border-radius: 0 0 20px 0;
        z-index: -1;
    }


.ramp-content h2
{
    font-size: 40px;
    line-height: 1.25;
    color: #16324F;
    margin-bottom: 20px;
}


.ramp-content p
{
    margin-bottom: 20px;
}


/* =========================================================
   INSTITUTE TO INDUSTRY FLOW
========================================================= */

.institute-industry
{
    padding: 100px 0;
    background: #fff;
}


.institute-flow
{
    max-width: 1000px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}


.institute-flow-item
{
    text-align: center;
    padding: 25px;
    min-width: 150px;
    background: #f8faf9;
    border-radius: 15px;
    border: 1px solid #e7eee9;
}


    .institute-flow-item strong
    {
        display: block;
        color: #199B43;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: .5px;
    }


.institute-flow-arrow
{
    color: #F68B1F;
    font-size: 25px;
    font-weight: 700;
}


/* =========================================================
   SPEAKING & RECOGNITION
========================================================= */

.founder-speaking
{
    background: #f7faf8;
}


.speaking-grid
{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    max-width: 900px;
    margin: auto;
}


    .speaking-grid > div
    {
        background: #fff;
        padding: 40px 25px;
        text-align: center;
        border-radius: 18px;
        box-shadow: 0 8px 25px rgba(0,0,0,.06);
        transition: .3s;
    }


        .speaking-grid > div:hover
        {
            transform: translateY(-7px);
        }


    .speaking-grid i
    {
        font-size: 42px;
        color: #199B43;
        margin-bottom: 20px;
    }


    .speaking-grid h3
    {
        color: #16324F;
        margin: 0;
    }


/* =========================================================
   VISION QUOTE
========================================================= */

.founder-vision-statement
{
    padding: 100px 20px;
    background: linear-gradient( 135deg, #199B43, #10682f );
    text-align: center;
    color: #fff;
}


.vision-quote
{
    max-width: 850px;
    margin: auto;
    position: relative;
}


    .vision-quote i
    {
        font-size: 45px;
        color: #F68B1F;
        margin-bottom: 25px;
    }


    .vision-quote p
    {
        color: #fff;
        font-size: 32px;
        line-height: 1.5;
        font-weight: 600;
        margin-bottom: 20px;
    }


    .vision-quote span
    {
        color: rgba(255,255,255,.8);
        font-size: 16px;
    }


/* =========================================================
   FOUNDER GALLERY
========================================================= */

.founder-gallery
{
    background: #fff;
}


.founder-gallery-grid
{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-auto-rows: 220px;
    gap: 18px;
}


    .founder-gallery-grid img
    {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
        transition: .3s;
    }


        .founder-gallery-grid img:hover
        {
            transform: scale(1.03);
        }


        /* Make first image larger */

        .founder-gallery-grid img:first-child
        {
            grid-column: span 2;
            grid-row: span 2;
        }


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px)
{

    .founder-page .section
    {
        padding: 70px 0;
    }


    .founder-hero
    {
        padding: 70px 0;
    }


    .founder-hero-grid
    {
        grid-template-columns: 320px 1fr;
        gap: 40px;
    }


    .founder-photo img
    {
        height: 420px;
    }


    .founder-intro h1
    {
        font-size: 45px;
    }


    .founder-intro h2
    {
        font-size: 23px;
    }


    .founder-about-grid
    {
        gap: 40px;
    }


        .founder-about-grid h2
        {
            font-size: 34px;
        }


    .vision-grid
    {
        grid-template-columns: 1fr;
        max-width: 600px;
    }


    .vision-connector
    {
        transform: rotate(90deg);
    }


    .ramp-grid
    {
        gap: 40px;
    }


    .ramp-content h2
    {
        font-size: 34px;
    }


    .speaking-grid
    {
        grid-template-columns: repeat(3,1fr);
    }


    .founder-gallery-grid
    {
        grid-template-columns: repeat(2,1fr);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px)
{

    .founder-page .section
    {
        padding: 55px 0;
    }


    /* HERO */

    .founder-hero
    {
        padding: 55px 0;
    }


    .founder-hero-grid
    {
        grid-template-columns: 1fr;
        gap: 35px;
    }


    .founder-photo
    {
        max-width: 320px;
        margin: auto;
    }


        .founder-photo img
        {
            height: 380px;
        }


    .founder-intro
    {
        text-align: center;
    }


        .founder-intro h1
        {
            font-size: 38px;
        }


        .founder-intro h2
        {
            font-size: 21px;
        }


        .founder-intro p
        {
            font-size: 15px;
        }


        .founder-intro .btn-founder
        {
            margin: auto;
        }


    /* SECTION TITLES */

    .section-heading-center
    {
        margin-bottom: 35px;
    }


        .section-heading-center h2
        {
            font-size: 30px;
        }


    /* ABOUT */

    .founder-about-grid
    {
        grid-template-columns: 1fr;
        gap: 25px;
    }


        .founder-about-grid h2
        {
            font-size: 30px;
        }


    /* JOURNEY */

    .journey-timeline
    {
        padding-left: 35px;
    }


        .journey-timeline::before
        {
            left: 10px;
        }


    .journey-item
    {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 30px;
    }


        .journey-item::before
        {
            left: -32px;
            top: 3px;
        }


    .journey-year
    {
        font-size: 16px;
    }


    .journey-content
    {
        padding: 22px;
    }


    /* VISION */

    .vision-card
    {
        padding: 35px 25px;
    }


    /* SKILL FLOW */

    .skill-startup-section
    {
        padding: 70px 0;
    }


        .skill-startup-section h2
        {
            font-size: 31px;
        }


    .skill-flow
    {
        flex-direction: column;
        gap: 12px;
    }


        .skill-flow > div
        {
            width: 100%;
            max-width: 280px;
            min-height: 130px;
        }


        .skill-flow > span
        {
            transform: rotate(90deg);
            font-size: 25px;
        }


    /* RAMP */

    .ramp-grid
    {
        grid-template-columns: 1fr;
        gap: 40px;
    }


    .ramp-image img
    {
        height: 330px;
    }


    .ramp-content h2
    {
        font-size: 30px;
    }


    /* SPEAKING */

    .speaking-grid
    {
        grid-template-columns: 1fr;
        gap: 20px;
    }


        .speaking-grid > div
        {
            padding: 30px 20px;
        }


    /* QUOTE */

    .founder-vision-statement
    {
        padding: 70px 20px;
    }


    .vision-quote p
    {
        font-size: 24px;
    }


    /* GALLERY */

    .founder-gallery-grid
    {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 150px;
        gap: 10px;
    }


        .founder-gallery-grid img:first-child
        {
            grid-column: span 2;
            grid-row: span 2;
        }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px)
{

    .founder-intro h1
    {
        font-size: 34px;
    }


    .founder-intro h2
    {
        font-size: 19px;
    }


    .founder-photo img
    {
        height: 330px;
    }


    .section-heading-center h2
    {
        font-size: 27px;
    }


    .founder-about-grid h2
    {
        font-size: 27px;
    }


    .journey-content h3
    {
        font-size: 19px;
    }


    .skill-startup-section h2
    {
        font-size: 27px;
    }


    .vision-quote p
    {
        font-size: 21px;
    }


    .founder-gallery-grid
    {
        grid-auto-rows: 120px;
    }
}
