:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-0dc50b1 */:root {
    --bg: #0B2AA3;
    --bg-900: #081F7A;
    --accent: #4C7DFF;
    --card: #ffffff;
    --text: #0D1321;
    --muted: #5A6370;
    --ring: rgba(76, 125, 255, .45);
    --radius: 18px;
    --shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

@media (prefers-color-scheme: dark) {
    :root {
        --card: #0f1220;
        --text: #F6F7FB;
        --muted: #A8B0C3;
    }
}

body {
    margin: 0;
    font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, var(--bg-900), var(--bg));
    -webkit-tap-highlight-color: transparent;
}

.container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 24px;
}

.grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 24px;
}

@media (max-width:1024px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

.panel,
.card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.panel {
    overflow: hidden;
}

.panel-header {
    position: relative;
    height: 240px;
    background: linear-gradient(180deg, #1a37c8 0%, #142a9f 100%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    color: #fff;
}

.avatar {
    position: absolute;
    left: 16px;
    bottom: -42px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 4px solid var(--card);
    background: #ddd;
    background-image: url('https://virtualadmins.org/wp-content/uploads/2025/09/JH9A2627.jpg');
    background-size: cover;
    background-position: center;
}

.header-kicker {
    position: absolute;
    right: 16px;
    top: 12px;
    display: flex;
    gap: 10px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    transition: .2s;
}

.icon-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .22);
}

.namewrap {
    margin-left: 142px;
    margin-bottom: 6px;
}

.name {
    font-weight: 700;
    font-family: Montserrat, sans-serif;
    letter-spacing: .2px;
    font-size: clamp(1.25rem, 2vw + .5rem, 1.75rem);
}

.role {
    font-size: .9rem;
}

.subrole {
    font-size: .78rem;
}

.panel-body {
    padding: 18px;
    padding-top: 60px;
}

.actions {
    display: flex;
    gap: 12px;
}

.btn {
    appearance: none;
    border: 0;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    background: var(--accent);
    color: #fff;
    box-shadow: 0 6px 20px rgba(76, 125, 255, .35);
    font-size: clamp(.9rem, .3vw + .85rem, 1rem);
}

.card {
    padding: 18px;
}

.card+.card {
    margin-top: 16px;
}

.tagline h2 {
    font: 700 clamp(1.1rem, 1.2vw + .8rem, 1.6rem) Montserrat, sans-serif;
    margin: 0;
    line-height: 1.15;
}

.list {
    display: grid;
    gap: 12px;
}

.row {
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 12px;
    transition: .2s;
}

.row:hover {
    background: rgba(76, 125, 255, .06);
}

.label {
    font-size: .72rem;
    color: var(--muted);
}

.val a,
.val {
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    word-break: break-word;
    font-size: clamp(.95rem, .2vw + .9rem, 1rem);
}

.socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pill {
    padding: 10px 20px;
    border-radius: 999px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    transition: .3s;
}

.pill svg {
    flex-shrink: 0;
}

.pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.pill[aria-label="Instagram"] {
    background: #E1306C;
    color: #fff;
}

.pill[aria-label="LinkedIn"] {
    background: #0077B5;
    color: #fff;
}

.pill[aria-label="Website"] {
    background: #4C7DFF;
    color: #fff;
}

.footer {
    color: #e8ecff;
    opacity: .9;
    text-align: center;
    font-size: .85rem;
    margin-top: 28px;
}

/* --- Progressive enhancement for reveal --- */
/* Visible by default (works even if JS blocked) */
.reveal {
    opacity: 1;
    transform: none;
}

/* Only animate when JS adds .has-anim to <body> */
body.has-anim .reveal {
    opacity: 0;
    transform: translateY(10px);
}

body.has-anim .reveal.show {
    opacity: 1;
    transform: none;
    transition: opacity .6s ease, transform .6s ease;
}


@media (max-width: 1024px) {
    .container {
        padding: 20px;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .panel-header {
        height: 220px;
    }
}

@media (max-width: 640px) {
    
 table{
        margin-left: 1px !important;
    }
    .container {
        padding: 14px;
    }

    .panel,
    .card {
        border-radius: 14px;
    }

    .panel-header {
        height: 180px;
        padding: 12px;
    }

    .header-kicker {
        right: 12px;
        top: 10px;
        gap: 8px;
    }

    .icon-btn {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .avatar {
        left: 12px;
        bottom: -36px;
        width: 84px;
        height: 84px;
        border-width: 3px;
    }

    .namewrap {
        margin-left: 108px;
    }

    .name {
        font-size: 1.25rem;
    }

    .role {
        font-size: .85rem;
    }

    .subrole {
        font-size: .72rem;
    }

    .panel-body {
        padding: 14px;
        padding-top: 52px;
    }

    .btn {
        padding: 10px 14px;
        border-radius: 10px;
    }

    .card {
        padding: 14px;
    }

    .tagline h2 {
        font-size: 1.25rem;
    }

    .row {
        grid-template-columns: 24px 1fr;
        gap: 8px;
        padding: 8px;
        border-radius: 10px;
    }

    .label {
        font-size: .68rem;
    }

    .val a,
    .val {
        font-size: .95rem;
    }

    /* Socials: 2-up grid; stack on tiny phones */
    .socials {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .socials .pill {
        justify-content: center;
        padding: 10px 12px;
        font-size: .88rem;
    }
   
}

@media (max-width: 380px) {
    .socials {
        grid-template-columns: 1fr;
    }

    .tagline h2 {
        font-size: 1.1rem;
    }

    .avatar {
        width: 76px;
        height: 76px;
        bottom: -32px;
    }

    .namewrap {
        margin-left: 96px;
    }
}
table{
    min-width: 458px;
    margin-left: 500px;
}

table tbody tr td p{
    float: right !important;
    margin-left: 12% !important;
    color: #fff;
    margin-top: 25px !important;
    font-family: 'Sora', Sans-serif;

}

.comments-area a, .page-content a {
    text-decoration: none !important;
}/* End custom CSS */