﻿.bio-text{
    font-size:1rem;
}


.section-info .info-box {
    /*background: #f8f9fa; */
    border-radius: 0.75rem;
    padding: 1.25rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform .2s ease, box-shadow .2s ease;
    width:100%;
}

    .section-info .info-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        background: #ffffff; /* brighten on hover */
    }
/*.section-info .col-md-6:nth-child(1) .info-box,
.section-info .col-lg-4:nth-child(1) .info-box {
    background: #f8f9fa;
}

.section-info .col-md-6:nth-child(2) .info-box,
.section-info .col-lg-4:nth-child(2) .info-box {
    background: #fef7f1;*/ /* warm beige */
/*}

.section-info .col-md-6:nth-child(3) .info-box,
.section-info .col-lg-4:nth-child(3) .info-box {
    background: #f1f8ff;*/ /* light blue */
/*}

.section-info .col-md-6:nth-child(4) .info-box,
.section-info .col-lg-4:nth-child(4) .info-box {
    background: #f8f9ff;*/ /* light gray-blue */
/*}

.section-info .col-md-6:nth-child(5) .info-box,
.section-info .col-lg-4:nth-child(5) .info-box {
    background: #f9f8ff;*/ /* soft lilac */
/*}

.section-info .col-md-6:nth-child(6) .info-box,
.section-info .col-lg-4:nth-child(6) .info-box {
    background: #f7fdf8;*/ /* pale green */
/*}*/


















/*Important info-box stuff---------------------------------------------------*/
/*.section-info .col-md-6:nth-child(1) .info-box,
.section-info .col-lg-4:nth-child(1) .info-box {
    background: #e9ecef;*/ /* darker neutral gray */
/*}

.section-info .col-md-6:nth-child(2) .info-box,
.section-info .col-lg-4:nth-child(2) .info-box {
    background: #ffe8d9;*/ /* warm beige-orange */
/*}

.section-info .col-md-6:nth-child(3) .info-box,
.section-info .col-lg-4:nth-child(3) .info-box {
    background: #dceeff;*/ /* soft sky blue */
/*}

.section-info .col-md-6:nth-child(4) .info-box,
.section-info .col-lg-4:nth-child(4) .info-box {
    background: #e7e9ff;*/ /* lavender blue */
/*}

.section-info .col-md-6:nth-child(5) .info-box,
.section-info .col-lg-4:nth-child(5) .info-box {
    background: #ede7ff;*/ /* stronger lilac */
/*}

.section-info .col-md-6:nth-child(6) .info-box,
.section-info .col-lg-4:nth-child(6) .info-box {
    background: #e0f6e6;*/ /* pastel green */
/*}*/


/* pale green */

.info-icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 1.1rem;
}

#general-info p
{
    letter-spacing: normal !important;
    word-spacing: normal !important;
    white-space: normal !important;
    text-align: center !important; /* undo justified text */
    text-justify: auto !important; /* some themes set inter-word */
    hyphens: auto; /* improve justified text if you re-enable it */
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    line-height:1.5rem;
}

/* Ensure paragraphs aren’t turned into flex containers somewhere */
#general-info p {
    display: block !important;
}







/*Section skills*/

    .section-skills h3 {
        font-weight: 600;
    }

.skill-item span {
    font-size: 0.95rem;
    color: #333;
}

.skill-item .fw-bold {
    color: #111;
}

.section-skills .progress {
    height: 0.9rem;
    border-radius: 0.5rem;
    background: #e9ecef;
    overflow: hidden;
}

.section-skills .progress-bar {
    background: linear-gradient(90deg, #111 0%, #444 100%);
    width: 0; /* start empty */
    transition: width 1.2s ease-in-out;
}






/*Experience section*/
/* Experience Timeline */
/* Timeline line */
.section-experience .timeline {
    position: relative;
    padding-left: 1.5rem;
    border-left: 2px solid #e9ecef;
}

/* Dots */
.section-experience .timeline-item {
    position: relative;
}

    .section-experience .timeline-item::before {
        content: "";
        position: absolute;
        left: -0.65rem;
        top: 2.2rem;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #111;
        box-shadow: 0 0 0 3px #fff;
    }

/* Cards */
.timeline-card {
    background: #f8f9fa; /* subtle gray background */
    opacity: 0; /* start hidden for animation */
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .timeline-card.show {
        opacity: 1;
        transform: translateY(0);
    }



/*CTA*/
.section-cta { /* keep page white, add gentle separation */
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.cta-card {
    background: #f1f3f5; /* stronger gray than #f8f9fa */
    border: 1px solid #dee2e6;
    transition: box-shadow .25s ease, transform .25s ease, background .25s ease;
}

    .cta-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(0,0,0,.12);
        background: #e9ecef; /* slightly darker on hover */
    }

.section-cta h3 {
    font-weight: 600;
}

.section-cta .btn {
    border-radius: 999px;
}
/* pill buttons */


.section-cta-dark {
    background: linear-gradient(180deg, #111 0%, #222 100%);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

    .section-cta-dark h3 {
        font-weight: 600;
    }

    .section-cta-dark p.lead {
        color: #e9ecef;
    }

    .section-cta-dark .btn {
        border-radius: 999px;
        transition: transform .2s ease, box-shadow .2s ease;
    }

        .section-cta-dark .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(0,0,0,0.25);
        }






/*Team*/
.section-team .team-card {
    background: #f1f3f5; /* stands out on white */
    border-color: #dee2e6;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

    .section-team .team-card:hover {
        /*transform: translateY(-4px);*/
        box-shadow: 0 10px 24px rgba(0,0,0,.12);
        background: #e9ecef;
    }

.section-team .badge.text-bg-light {
    color: #333;
    border: 1px solid #e3e6ea;
}

.section-team i.bi {
    font-size: 1.1rem;
}

.headshot-cnt{
    width:100%;
    aspect-ratio:1/1;
    overflow:hidden;
}

.headshot-cnt img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition: all ease-in-out 0.2s;
}

.headshot-cnt:hover img{
    transform:scale(1.05);
}
