/* about skin — CSS VERBATIM from careers.html comp, scoped under body.galv-about. */


    @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;body.galv-about 1, body.galv-about 14..32, body.galv-about 100..900&family=Poppins:ital, body.galv-about wght@0, body.galv-about 100;0, body.galv-about 200;0, body.galv-about 300;0, body.galv-about 400;0, body.galv-about 500;0, body.galv-about 600;0, body.galv-about 700;0, body.galv-about 800;0, body.galv-about 900;1, body.galv-about 100;1, body.galv-about 200;1, body.galv-about 300;1, body.galv-about 400;1, body.galv-about 500;1, body.galv-about 600;1, body.galv-about 700;1, body.galv-about 800;1, body.galv-about 900&display=swap');

    :root{
        --primary-color: #3b5bff;
        --secondary-color: #cc00cc;
        --hero-bg: #13217c;
        --primary-hover: #13217c;
        --secondary-hover: #A60066;
        --bg-light: #a0aeff;
        --bg-lighter: #e6ebff;
        --text-black: #333333;
        --text-gray: #808080;
        --text-white: #fffdfe;
        --font-heading: 'Poppins', sans-serif;
        --font-body: 'Inter', sans-serif;
        --h1-size: 42px;
        --h2-size: 36px;
        --h3-size: 30px;
        --h5-size: 30px;
        --body-2: 16px;
        --btn-text-size: 18px;
        --btn-height: 48px;
        --btn-padding-h: 24px;
        --btn-padding-v: 12px;
        --btn-radius: 10px;
        --section-padding: 60px 0px;
    }

    body.galv-about *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        -webkit-font-smoothing: antialiased;
    }

    body.galv-about {
        font-family: var(--font-body);
        font-size: var(--body-2);
        color: var(--text-black);
        line-height: 1.6;
        background-color: var(--text-white);
        overflow-x: hidden;
    }

    body.galv-about h1, body.galv-about h2, body.galv-about h3, body.galv-about h4, body.galv-about h5{
        font-family: var(--font-heading);
        font-weight: 600;
    }

    body.galv-about h1{ font-size: var(--h1-size); line-height: 56px; }
    body.galv-about h2{ font-size: var(--h2-size); line-height: 48px; }
    body.galv-about h3{ font-size: var(--h3-size); line-height: 40px; }
    body.galv-about h5{ font-size: var(--h5-size); line-height: 30px; }

    body.galv-about a{
        text-decoration: none;
        color: inherit;
        transition: 0.3s ease;
    }

    body.galv-about ul{ list-style: none; }

    body.galv-about img{
        max-width: 100%;
        display: block;
    }

    body.galv-about .text-center{ text-align: center; }
    body.galv-about .text-gray{ color: var(--text-gray); }

    body.galv-about .btn{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: var(--btn-height);
        padding: var(--btn-padding-v) var(--btn-padding-h);
        font-size: var(--btn-text-size);
        font-weight: 600;
        border-radius: var(--btn-radius);
        cursor: pointer;
        transition: 0.3s ease;
        border: none;
        font-family: var(--font-body);
    }

    body.galv-about .btn-primary{ background-color: var(--primary-color); color: var(--text-white); }
    body.galv-about .btn-primary:hover{ background-color: var(--primary-hover); }
    body.galv-about .btn-secondary{ background-color: var(--secondary-color); color: var(--text-white); }
    body.galv-about .btn-secondary:hover{ background-color: var(--secondary-hover); }

    body.galv-about .container{
        width: 100%;
        max-width: 1920px;
        padding: 0 80px;
    }

    body.galv-about main section{
        padding: var(--section-padding);
        display: flex;
        justify-content: center;
    }

    /* Hero Section */
    body.galv-about .hero{
        background-color: var(--hero-bg);
        color: var(--text-white);
        padding: 60px 0;
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
    }

    body.galv-about .hero-grid{
        display: grid;
        gap: 10px;
        grid-template-columns: 1.5fr 1fr;
        align-items: center;
    }

    body.galv-about .hero-content h1{ margin-bottom: 20px; font-weight: 600; }

    body.galv-about .hero-content p{
        font-size: 22px;
        color: var(--text-white);
        font-family: var(--font-heading);
        font-weight: 500;
        margin-bottom: 20px;
    }

    body.galv-about .hero-features{ margin-bottom: 30px; }

    body.galv-about .hero-features li{
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
        font-size: 18px;
        font-weight: 400;
        font-family: var(--font-body);
    }

    body.galv-about .check-icon{ width: 24px; height: 24px; object-fit: contain; }

    body.galv-about .hero-image{ position: relative; }
    body.galv-about .hero-main-img{ position: relative; max-width: 100%; }
    body.galv-about .hero-main-img img{ width: 100%; display: block; }

    /* Timeline Section */
    body.galv-about .concept{
        background-color: #f0f3ff;
        padding: 60px 0;
    }

    body.galv-about .timeline{
        position: relative;
        max-width: 1100px;
        margin: 0 auto 0;
    }

    body.galv-about .timeline::before{
        content: '';
        position: absolute;
        left: 50%;
        top: 80px;
        bottom: 60px;
        width: 5px;
        background: #fff;
        transform: translateX(-50%);
    }

    body.galv-about .timeline-item{
        display: flex;
        align-items: center;
        width: 100%;
        margin-bottom: 60px;
        position: relative;
    }

    body.galv-about .timeline-item-last{ margin-bottom: 0; }
    body.galv-about .timeline-item.right{ justify-content: flex-end; }
    body.galv-about .timeline-item.left{ justify-content: flex-start; }

    body.galv-about .timeline-content{ width: 44%; padding: 10px; }
    body.galv-about .timeline-item.right .timeline-content{ text-align: left; padding-left: 30px; }
    body.galv-about .timeline-item.left .timeline-content{ text-align: right; padding-right: 30px; }

    body.galv-about .timeline-content h3{
        font-size: 24px;
        color: var(--text-black);
        margin-bottom: 10px;
        font-weight: 600;
    }

    body.galv-about .timeline-content p{
        font-size: 16px;
        line-height: 26px;
        color: var(--text-black);
    }

    body.galv-about .timeline-dot{
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background: var(--primary-color);
        border: 6px solid #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        color: white;
    }

    body.galv-about .timeline-dot img{ width: 24px; height: 24px; object-fit: contain; }

    body.galv-about .timeline-num{
        position: absolute;
        width: 45%;
        font-size: 42px;
        font-weight: 900;
        color: #c8d1ff;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
        line-height: 1;
    }

    body.galv-about .timeline-item.right .timeline-num{ left: 0; text-align: right; padding-right: 40px; }
    body.galv-about .timeline-item.left .timeline-num{ right: 0; text-align: left; padding-left: 40px; }

    /* Grid Cards */
    body.galv-about .card-grid{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* Mindset Cards */
    body.galv-about .mindset-card{
        background: #eef2ff;
        padding: 24px;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        text-align: left;
        transition: 0.3s ease;
        border: 2px solid transparent;
    }

    body.galv-about .mindset-card:hover{ border: 2px solid #a0aeff; }

    body.galv-about .mindset-header{
        display: flex;
        align-items: center;
        gap: 16px;
    }

    body.galv-about .mindset-title{
        font-family: var(--font-body);
        font-size: 24px;
        font-weight: 600;
        color: var(--text-black);
        line-height: 1.4;
        margin: 0;
    }

    body.galv-about .mindset-list{
        list-style: disc;
        padding-left: 20px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    body.galv-about .mindset-list li{
        font-family: var(--font-body);
        font-size: 15px;
        line-height: 1.5;
        color: #555;
    }

    /* Why Cards */
    body.galv-about .why-card{
        background: #fff;
        padding: 24px;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        text-align: left;
        transition: 0.3s ease;
        border: 2px solid transparent;
    }

    body.galv-about .why-card:hover{ border: 2px solid #a0aeff; }

    body.galv-about .why-header{
        display: flex;
        align-items: center;
        gap: 16px;
    }

    body.galv-about .why-title{
        font-family: var(--font-body);
        font-size: 24px;
        font-weight: 600;
        color: var(--text-black);
        line-height: 1.4;
        margin: 0;
    }

    body.galv-about .why-list{
        list-style: disc;
        padding-left: 20px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    body.galv-about .why-list li{
        font-family: var(--font-body);
        font-size: 15px;
        line-height: 1.5;
        color: #555;
    }

    body.galv-about .why-work{ background-color: #e6ebff; }

    body.galv-about .job-card, body.galv-about .leadership{ background-color: #e6ebff; }

    body.galv-about .leadership .card-grid{ grid-template-columns: repeat(4, 1fr); }

    body.galv-about .leader-card{
        background: white;
        padding: 15px;
        border-radius: 20px;
        text-align: center;
        transition: 0.3s ease;
        border: 2px solid transparent;
    }

    body.galv-about .leader-card:hover{ border: 2px solid #a0aeff; }

    body.galv-about .card-icon{
        width: 60px;
        height: 60px;
        background: var(--bg-lighter);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        flex-shrink: 0;
    }

    body.galv-about .mindset-card .card-icon{ background: white; }
    body.galv-about .why-card .card-icon{ background: #eef2ff; }

    body.galv-about .mindset-card .card-icon img, body.galv-about .why-card .card-icon img{
        width: 70%;
        height: 70%;
        object-fit: contain;
    }

    /* Leader Cards */
    body.galv-about .leader-img{ margin-top: 10px; }

    body.galv-about .leader-img img{
        width: 200px;
        height: 200px;
        border-radius: 50%;
        margin: 0 auto 20px;
        object-fit: cover;
        border: 1px solid var(--secondary-color);
    }

    body.galv-about .leader-card h3{ font-size: 18px; line-height: 29px; margin-bottom: 5px; }
    body.galv-about .leader-card p{ color: var(--text-black); font-weight: 500; font-size: 16px; margin-bottom: 5px; }
    body.galv-about .leader-card small{ color: var(--secondary-color); font-size: 16px; font-weight: 500; margin-bottom: 5px; }

    /* Section Title */
    body.galv-about .section-title{ margin-bottom: 40px; }

    body.galv-about .section-title h2{
        color: var(--primary-color);
        margin-bottom: 15px;
        font-weight: 600;
    }

    body.galv-about .section-title p{
        font-family: var(--font-heading);
        font-size: 20px;
        font-weight: 500;
        color: var(--text-black);
    }

    /* CTA Openings Section */
    body.galv-about .cta-openings{
        background-color: #13217c;
        padding: 60px 0;
        display: flex;
        justify-content: center;
    }

    body.galv-about .cta-openings .cta-grid{
        display: grid;
        grid-template-columns: 1.4fr 1fr;
        align-items: center;
        gap: 40px;
    }

    body.galv-about .cta-openings .cta-content h3{
        font-size: 30px;
        font-family: var(--font-heading);
        font-weight: 700;
        color: var(--text-white);
        margin-bottom: 14px;
        line-height: 1.3;
    }

    body.galv-about .cta-openings .cta-content p{
        font-size: 18px;
        font-family: var(--font-body);
        color: var(--text-white);
        line-height: 1.6;
        margin-bottom: 28px;
    }

    body.galv-about .cta-openings .btn-cta{
        background-color: #cc00cc;
        color: var(--text-white);
        font-size: 18px;
        font-weight: 600;
        font-family: var(--font-body);
    }

    body.galv-about .cta-openings .btn-cta:hover{ background-color: #A600A6; }

    body.galv-about .cta-openings .cta-image img{
        width: 100%;
        max-width: 480px;
        margin-left: auto;
    }

    /* Tablet (max-width: 1024px) */
    @media (max-width: 1024px) {
        body.galv-about .container{
            max-width: 900px;
            padding: 0 30px;
        }

        body.galv-about .hero-grid{
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: left;
        }

        body.galv-about .hero-features li{ justify-content: flex-start; }

        body.galv-about .card-grid{ grid-template-columns: repeat(2, 1fr); }
        body.galv-about .leadership .card-grid{ grid-template-columns: repeat(2, 1fr); }

        body.galv-about .job-card-grid{ grid-template-columns: repeat(2, 1fr); gap: 20px; }

        body.galv-about .timeline::before{ left: 40px; top: 30px; bottom: 0; }

        body.galv-about .timeline-item-last::after{
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            bottom: -100px;
            width: 10px;
            background-color: #f0f3ff;
            transform: translateX(-50%);
            z-index: 5;
        }


        body.galv-about .timeline-item.left, body.galv-about .timeline-item.right{
            justify-content: flex-start;
            align-items: flex-start;
            padding-left: 80px;
            margin-bottom: 40px;
        }

        body.galv-about .timeline-dot{ left: 40px; top: 0; transform: translateX(-50%); }

        body.galv-about .timeline-content{
            width: 100% !important;
            text-align: left !important;
            padding: 0 !important;
        }

        body.galv-about .timeline-num{ display: none; }

        body.galv-about .cta-openings .cta-grid{ grid-template-columns: 1fr; gap: 30px; }
        body.galv-about .cta-openings .cta-content{ text-align: center; }
        body.galv-about .cta-openings .btn-cta{ width: 100%; display: flex; justify-content: center; }
        body.galv-about .cta-openings .cta-image img{ margin: 0 auto; }

        /* CTA: image left on 1025px–1440px screens */
        @media (min-width: 1025px) and (max-width: 1440px) {
            body.galv-about .cta-openings .cta-image{ order: -1; }
        }
    }

    /* Mobile (max-width: 768px) */
    @media (max-width: 768px) {
        body.galv-about {
            --h1-size: 36px;
            --h2-size: 28px;
            --h3-size: 24px;
            --section-padding: 40px 0;
        }

        body.galv-about h1{ line-height: 42px; }
        body.galv-about h2{ line-height: 36px; }

        body.galv-about .section-title{ margin-bottom: 20px; }

        body.galv-about .section-title h2{
            font-size: 24px;
            font-weight: 600;
            line-height: 38px;
            margin-bottom: 10px;
        }

        body.galv-about .section-title p{ font-size: 18px; line-height: 29px; }

        body.galv-about .container{ padding: 0 20px; }

        body.galv-about .hero-content p{ font-size: 20px; }
        body.galv-about .hero-features li{ font-size: 16px; }

        body.galv-about .card-grid, body.galv-about .leadership .card-grid, body.galv-about .job-card-grid{ grid-template-columns: 1fr; margin-top: 20px; }

        body.galv-about .job-card{ padding: 20px; }
        body.galv-about .job-meta{ flex-wrap: wrap; gap: 15px; }
        body.galv-about .job-category-margin-mob{ margin-top: 20px; }
        body.galv-about .job-category-header{ padding: 10px 40px; font-size: 24px; }

        body.galv-about .timeline{ margin-top: 40px; }
        body.galv-about .timeline-content h3{ font-size: 18px; margin-bottom: 5px; }
        body.galv-about .timeline-content p{ font-size: 16px; }

        body.galv-about .timeline::before{ left: 30px; top: 25px; bottom: 0; }

        body.galv-about .timeline-item-last::after{
            content: '';
            position: absolute;
            left: 30px;
            top: 25px;
            bottom: -50px;
            width: 10px;
            background-color: #f0f3ff;
            transform: translateX(-50%);
            z-index: 5;
        }

        body.galv-about .timeline-item.left, body.galv-about .timeline-item.right{ padding-left: 60px; align-items: flex-start; }

        body.galv-about .timeline-dot{ left: 30px; top: 0; transform: translateX(-50%); width: 50px; height: 50px; }
        body.galv-about .timeline-dot img{ width: 20px; height: 20px; }
        body.galv-about .timeline-item-last{ margin-bottom: 0; }

        body.galv-about .concept{ padding: 40px 0px; }

        body.galv-about .mindset-list li, body.galv-about .why-list li{ font-size: 16px; line-height: 26px; }

        body.galv-about .leader-card{ padding: 30px; }
        body.galv-about .leader-card h3{ font-size: 18px; }
        body.galv-about .leader-card p{ font-size: 18px; }
        body.galv-about .leader-img{ margin-top: 0px; }
        body.galv-about .leader-img img{ width: 200px; height: 200px; }

        body.galv-about .btn-primary, body.galv-about .job-card .btn-primary{ width: 100%; display: flex; justify-content: center; text-align: center; }

        body.galv-about .cta-openings .cta-content h3{ font-size: 24px; }
        body.galv-about .cta-openings .btn-cta{ width: 100%; display: flex; justify-content: center; }
    }
    
    @media (max-width: 768px) {
        body.galv-about nav button, body.galv-about nav a{
        padding: 10px 14px;
        }
    }

