/*
Theme Name: CAPSU Theme
Theme URI: https://capsu.edu.ph
Author: Janz
Description: Custom CAPSU WordPress Theme
Version: 1.0
*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    background:#fff;
    color:#0f172a;
    overflow-x:hidden;
}

.container{
    width:min(1320px,92%);
    margin:auto;
}

/* Utility Bar */

.utility-bar{
    position:sticky;
    top:0;
    z-index:1200;

    background:#082f49;
    color:#fff;
    font-size:12px;
    padding:8px 0;
}

.utility-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.utility-links{
    display:flex;
    gap:20px;
}

.utility-links a{
    color:#fff;
    text-decoration:none;
}

/* Main Header */

.main-header{
    position:sticky;
    top:34px;
    z-index:1100;

    background:rgba(255,255,255,.96);
    backdrop-filter:blur(12px);

    border-bottom:1px solid #e2e8f0;
}
.main-header{
    box-shadow:0 4px 18px rgba(0,0,0,.04);
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo-area img{
    width:55px;
    height:55px;
    object-fit:contain;
}

.logo-text{
    font-weight:900;
    line-height:1.05;
    color:#0369a1;
    font-size:18px;
}

.main-nav{
    display:flex;
    gap:24px;
}

.main-nav a{
    text-decoration:none;
    color:#334155;
    font-weight:600;
    font-size:14px;
}

.apply-btn{
    background:#facc15;
    color:#111827;
    text-decoration:none;
    padding:12px 24px;
    border-radius:999px;
    font-weight:700;
}

/* Announcement */

.announcement-bar{
    background:#075985;
    color:#fff;
    padding:14px 0;
}

.announcement-bar .container{
    display:flex;
    align-items:center;
    gap:18px;
}

.announcement-badge{
    background:#facc15;
    color:#111827;
    font-weight:700;
    padding:8px 14px;
    border-radius:999px;
}

.highlight{
    color:#fde047;
    font-weight:700;
}

/* Hero */

.hero-section{
    position:relative;
    height:92vh;
    overflow:hidden;
}

.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(2,6,23,.65),
        rgba(2,6,23,.35)
    );
}

.hero-content{
    position:relative;
    z-index:5;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    color:#fff;
}

.hero-eyebrow{
    color:#fde047;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:26px;
}

.hero-content h1{
    font-size:110px;
    line-height:.88;
    font-weight:900;
    text-transform:uppercase;
}

.hero-content h1 span{
    color:#facc15;
}

.hero-content p{
    margin-top:26px;
    font-size:28px;
    font-weight:600;
    line-height:1.5;
}

/* Quick Access */

.quick-access{
    padding:100px 0;
    background:rgba(255,255,255,0.96);
}

.section-heading p{
    color:#0369a1;
    text-transform:uppercase;
    font-weight:700;
    letter-spacing:3px;
}

.section-heading h2{
    margin-top:10px;
    font-size:54px;
    font-weight:900;
}

.quick-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:50px;
}

.quick-card{
    border:1px solid #e2e8f0;
    border-radius:30px;
    padding:40px;
    transition:.3s;
    background:#fff;
}

.quick-card:hover{
    transform:translateY(-5px);
}

.quick-card h3{
    font-size:30px;
    margin-bottom:18px;
}

.quick-card p{
    color:#475569;
    line-height:1.8;
}

/* Footer */

.main-footer{
    background:#082f49;
    color:#fff;
    padding:80px 0;
}

.footer-brand{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:50px;
}

.footer-brand img{
    width:55px;
    height:55px;
    object-fit:contain;
}

.footer-brand h3{
    font-size:28px;
    font-weight:900;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.3fr;
    gap:50px;
}

.footer-grid h3{
    font-size:26px;
    margin-bottom:18px;
}

.footer-grid h4{
    color:#fde047;
    font-size:20px;
    margin-bottom:18px;
}

.footer-grid p,
.footer-grid li{
    color:#e0f2fe;
    line-height:1.8;
}

.footer-grid ul{
    list-style:none;
}
/* Latest News */

.latest-news{
    background:rgba(248,250,252,0.96);
    padding:100px 0;
}

.news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.news-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:30px;
    overflow:hidden;
}

.news-image{
    height:220px;
    background:linear-gradient(
        135deg,
        #38bdf8,
        #0369a1
    );
}

.news-content{
    padding:32px;
}

.news-content h3{
    font-size:28px;
    margin-bottom:14px;
}

.news-content p{
    color:#475569;
    line-height:1.8;
}

.news-content a{
    display:inline-block;
    margin-top:24px;
    color:#0369a1;
    font-weight:700;
    text-decoration:none;
}


.quick-access,
.latest-news{
    position:relative;
    z-index:2;
}

.hero-section{
    background:transparent;
}
body::before{
    content:"";
    position:fixed;
    inset:0;
    z-index:-2;
    background-image:
        linear-gradient(rgba(8,47,73,0.08), rgba(8,47,73,0.08)),
        url("assets/images/man-of-labor-background.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    opacity:1;
}

body::after{
    content:"";
    position:fixed;
    inset:0;
    z-index:-1;
    background:rgba(255,255,255,0.08);
}

.hero-section{
    background:transparent;
}

.quick-access{
    background:rgba(255,255,255,0.90);
}

.latest-news{
    background:rgba(248,250,252,0.90);
}
/* Dropdown Navigation */

.main-nav{
    display:flex;
    align-items:center;
    gap:12px;
}

.nav-item{
    position:relative;
}

.main-nav > .nav-item > a{
    position:relative;
    display:block;
    padding:12px 18px;
    border-radius:999px;

    text-decoration:none;
    color:#334155;

    font-size:14px;
    font-weight:600;

    transition:
        color .25s ease,
        background .25s ease,
        transform .25s ease;
}
.main-nav > .nav-item > a::before{
    content:"";

    position:absolute;
    inset:0;

    border-radius:999px;

    background:#e0f2fe;

    transform:scale(.88);
    opacity:0;

    transition:
        transform .25s ease,
        opacity .25s ease;

    z-index:-1;
}

.main-nav > .nav-item > a:hover::before{
    transform:scale(1);
    opacity:1;
}

.main-nav > .nav-item > a:hover{
    color:#0369a1;
}

.main-nav > .nav-item > a:hover{
    background:#e0f2fe;
    color:#0369a1;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    margin-top:6px;
    min-width:260px;
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:24px;
    padding:12px;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
   transition:opacity .25s ease, transform .25s ease, visibility .25s ease;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
    z-index:1000;
}

.dropdown-menu a{
    display:block;
    padding:12px 16px;
    border-radius:14px;
    text-decoration:none;
    color:#334155;
    font-size:14px;
    font-weight:500;
    transition:.2s;
}

.dropdown-menu a:hover{
    background:#e0f2fe;
    color:#0369a1;
}

.has-dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
.has-dropdown::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:100%;
    height:12px;
}
/* Texas Style Hero Scroll */

.hero-scroll-wrapper{
    position:relative;
    height:220vh;
}

.hero-section{
    position:sticky;
    top:0;

    height:100vh;
    overflow:hidden;
}

.scroll-video{
    will-change:transform;
    transition:transform .15s linear;
}

.scroll-hero-content{
    will-change:transform;
    transition:transform .15s linear;
}
/* Inner Pages */

.inner-hero{
    background:#082f49;
    padding:140px 0 90px;
    color:#fff;
}

.inner-hero h1{
    font-size:72px;
    font-weight:900;
}

.content-section{
    padding:100px 0;
}

.content-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:32px;
    padding:60px;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.content-card p{
    font-size:20px;
    line-height:2;
    color:#475569;
    margin-bottom:30px;
}
/* Vision Mission */

.vm-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.vm-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:32px;
    padding:50px;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.vm-card h2{
    font-size:42px;
    margin-bottom:24px;
    color:#082f49;
}

.vm-card p{
    font-size:20px;
    line-height:2;
    color:#475569;
}

.goals-card{
    margin-top:50px;
    background:#082f49;
    color:#fff;
    border-radius:32px;
    padding:60px;
}

.goals-card h2{
    font-size:42px;
    margin-bottom:30px;
}

.goals-card ul{
    padding-left:22px;
}

.goals-card li{
    font-size:20px;
    line-height:2;
    margin-bottom:14px;
}
/* Timeline */

.timeline{
    position:relative;
    margin-top:30px;
}

.timeline::before{
    content:"";
    position:absolute;
    left:110px;
    top:0;
    bottom:0;
    width:4px;
    background:#cbd5e1;
}

.timeline-item{
    position:relative;
    display:grid;
    grid-template-columns:140px 1fr;
    gap:40px;
    margin-bottom:60px;
}

.timeline-year{
    position:relative;
    z-index:2;

    background:#082f49;
    color:#fff;

    width:90px;
    height:90px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:900;
    font-size:18px;
}

.timeline-content{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:28px;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.timeline-content h3{
    font-size:34px;
    margin-bottom:16px;
    color:#082f49;
}

.timeline-content p{
    font-size:19px;
    line-height:1.9;
    color:#475569;
}
/* Board of Regents */

.bor-intro{
    background:#082f49;
    color:#fff;
    border-radius:32px;
    padding:60px;
    margin-bottom:50px;
}

.bor-intro p{
    color:#fde047;
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:800;
    margin-bottom:16px;
}

.bor-intro h2{
    font-size:52px;
    margin-bottom:18px;
}

.bor-intro span{
    font-size:20px;
    line-height:1.8;
    color:#e0f2fe;
}

.bor-grid{
    display:grid;
    gap:30px;
}

.bor-grid.featured{
    grid-template-columns:repeat(2,1fr);
    margin-bottom:50px;
}

.bor-grid.members{
    grid-template-columns:repeat(3,1fr);
}

.bor-card,
.bor-secretary{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:30px;
    padding:36px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.bor-photo{
    width:130px;
    height:130px;
    border-radius:50%;
    overflow:hidden;
    margin:0 auto 22px;
    background:#e2e8f0;
    border:5px solid #e0f2fe;
}

.bor-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.no-photo{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:900;
    color:#64748b;
    text-transform:uppercase;
}

.bor-card p,
.bor-secretary p{
    color:#0369a1;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:12px;
}

.bor-card h3,
.bor-secretary h3{
    font-size:24px;
    color:#0f172a;
    margin-bottom:12px;
}

.bor-card span,
.bor-secretary span{
    display:block;
    color:#475569;
    line-height:1.7;
}

.bor-card em{
    display:inline-block;
    margin-top:16px;
    background:#e0f2fe;
    color:#0369a1;
    padding:10px 14px;
    border-radius:14px;
    font-style:normal;
    font-weight:600;
}

.bor-section-title{
    font-size:34px;
    font-weight:900;
    color:#082f49;
    margin-bottom:24px;
}

.bor-secretary{
    max-width:520px;
    margin:50px auto 0;
    background:#f0f9ff;
    border-style:dashed;
}
/* Curricular Offerings */

.curricular-hero{
    background:
        linear-gradient(rgba(8,47,73,.78), rgba(8,47,73,.78)),
        url("assets/images/curricular-banner.png");

    background-size:cover;
    background-position:center;
}

.curricular-hero p{
    margin-top:24px;
    font-size:24px;
    color:#e0f2fe;
}

.campus-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:36px;
    padding:50px;
    margin-bottom:50px;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.campus-alt{
    background:#fefce8;
}

.campus-header{
    margin-bottom:40px;
}

.campus-header h2{
    font-size:48px;
    color:#082f49;
}

.program-section{
    margin-bottom:40px;
}

.program-section h3{
    font-size:28px;
    margin-bottom:24px;
    color:#0369a1;
}

.program-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.program-item{
    background:#f8fafc;
    border:1px solid #e2e8f0;
    border-radius:18px;
    padding:24px;
    font-size:18px;
    line-height:1.6;
    transition:.25s;
}

.program-item:hover{
    transform:translateY(-4px);
    background:#e0f2fe;
}
/* Central Administration */

.president-section{
    margin-bottom:90px;
}

.president-card{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:60px;

    background:#082f49;
    color:#fff;

    border-radius:40px;
    padding:60px;
}

.leader-image{
    width:100%;
    aspect-ratio:1/1;
    border-radius:30px;
    overflow:hidden;
    background:#e2e8f0;
}

.leader-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.leader-content p{
    color:#fde047;
    font-weight:800;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.leader-content h2{
    font-size:58px;
    line-height:1;
    margin-bottom:18px;
}

.leader-content span{
    font-size:22px;
    color:#e0f2fe;
}

.leader-description{
    margin-top:30px;
    font-size:20px;
    line-height:2;
    color:#f8fafc;
}

.admin-heading{
    margin-bottom:40px;
}

.vp-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.vp-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:36px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.vp-image{
    height:320px;
    background:#e2e8f0;
}

.vp-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.vp-content{
    padding:28px;
}

.vp-content p{
    color:#0369a1;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:16px;
}

.vp-content h3{
    font-size:28px;
    line-height:1.2;
    margin-bottom:14px;
    color:#082f49;
}

.vp-content span{
    display:block;
    color:#475569;
    margin-bottom:24px;
}

.vp-description{
    color:#64748b;
    line-height:1.9;
}
/* Organizational Structure */

.org-wrapper{
    position:relative;
}

.org-level.center{
    display:flex;
    justify-content:center;
    margin-bottom:60px;
}

.org-box{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:28px;
    padding:32px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.org-box p{
    color:#0369a1;
    font-size:14px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:14px;
}

.org-box h2{
    font-size:42px;
    color:#082f49;
}

.org-box.president{
    width:500px;
    background:#082f49;
    color:#fff;
}

.org-box.president h2{
    color:#fff;
}

.org-direct{
    display:flex;
    justify-content:center;
    gap:24px;
    margin-bottom:70px;
}

.org-box.small{
    width:240px;
    font-weight:700;
}

.vp-level{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-bottom:100px;
}

.org-box.vp{
    background:#f8fafc;
    font-size:20px;
    font-weight:800;
    color:#082f49;
}

.campus-org-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.org-box.campus{
    background:#e0f2fe;
    font-weight:700;
    color:#082f49;
}
/* Org Connector Lines */

.president-wrapper{
    position:relative;
}

.president-wrapper::after{
    content:"";
    position:absolute;
    left:50%;
    top:100%;
    width:4px;
    height:50px;
    background:#082f49;
    transform:translateX(-50%);
}

.direct-wrapper{
    position:relative;
}

.direct-wrapper::after{
    content:"";
    position:absolute;
    left:50%;
    top:100%;
    width:4px;
    height:55px;
    background:#082f49;
    transform:translateX(-50%);
}

.vp-wrapper{
    position:relative;
}

.vp-wrapper::before{
    content:"";
    position:absolute;
    top:-30px;
    left:12.5%;
    right:12.5%;
    height:4px;
    background:#082f49;
}

.vp-wrapper::after{
    content:"";
    position:absolute;
    top:-30px;
    left:50%;
    width:4px;
    height:30px;
    background:#082f49;
    transform:translateX(-50%);
}

.org-box.vp{
    position:relative;
}

.org-box.vp::before{
    content:"";
    position:absolute;
    top:-30px;
    left:50%;
    width:4px;
    height:30px;
    background:#082f49;
    transform:translateX(-50%);
}
/* Official Org Chart Viewer */

.org-chart-viewer{
    width:100%;
}

.org-chart-actions{
    display:flex;
    gap:20px;
    justify-content:center;
    margin-bottom:40px;
}

.org-btn{
    background:#082f49;
    color:#fff;
    text-decoration:none;
    padding:16px 28px;
    border-radius:999px;
    font-weight:700;
    transition:.25s;
}

.org-btn:hover{
    transform:translateY(-2px);
}

.org-btn.secondary{
    background:#facc15;
    color:#111827;
}

.org-chart-container{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:36px;
    padding:30px;
    overflow:auto;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.org-chart-image{
    width:100%;
    min-width:1200px;
    display:block;
}
.timeline-intro{
    background:#082f49;
    color:#fff;
    border-radius:36px;
    padding:60px;
    margin-bottom:60px;
}

.timeline-intro p{
    color:#fde047;
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:800;
    margin-bottom:18px;
}

.timeline-intro h2{
    font-size:52px;
    margin-bottom:18px;
}

.timeline-intro span{
    display:block;
    color:#e0f2fe;
    line-height:2;
    font-size:20px;
}/* =========================================
   GLOBAL RESPONSIVE
========================================= */

@media (max-width: 1200px){

    .hero-content h1{
        font-size:84px;
    }

    .quick-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .news-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .vp-grid{
        grid-template-columns:1fr;
    }

    .bor-grid.members{
        grid-template-columns:repeat(2,1fr);
    }

    .campus-org-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .program-grid{
        grid-template-columns:1fr;
    }

}

@media (max-width: 992px){

    .header-inner{
        flex-wrap:wrap;
        gap:20px;
    }

    .main-nav{
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero-content h1{
        font-size:68px;
    }

    .hero-content p{
        font-size:22px;
    }

    .section-heading h2{
        font-size:42px;
    }

    .timeline-item{
        grid-template-columns:1fr;
    }

    .timeline::before{
        display:none;
    }

    .timeline-year{
        margin-bottom:20px;
    }

    .vm-grid{
        grid-template-columns:1fr;
    }

    .bor-grid.featured{
        grid-template-columns:1fr;
    }

    .campus-org-grid{
        grid-template-columns:1fr;
    }

    .vp-level{
        grid-template-columns:repeat(2,1fr);
    }

    .president-card{
        grid-template-columns:1fr;
    }

}

@media (max-width: 768px){

    .utility-inner{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

    .utility-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .header-inner{
        flex-direction:column;
    }

    .main-nav{
        flex-direction:column;
        align-items:center;
    }

    .main-nav > .nav-item{
        width:100%;
        text-align:center;
    }

    .dropdown-menu{
        position:relative;
        opacity:1;
        visibility:visible;
        transform:none;
        margin-top:10px;
        width:100%;
        box-shadow:none;
    }

    .hero-section{
        height:80vh;
    }

    .hero-content{
        text-align:center;
        align-items:center;
    }

    .hero-content h1{
        font-size:52px;
    }

    .hero-content p{
        font-size:18px;
    }

    .quick-grid,
    .news-grid,
    .footer-grid,
    .bor-grid.members{
        grid-template-columns:1fr;
    }

    .org-direct{
        flex-direction:column;
        align-items:center;
    }

    .vp-level{
        grid-template-columns:1fr;
    }

    .campus-header h2{
        font-size:36px;
    }

    .leader-content h2{
        font-size:42px;
    }

    .inner-hero h1{
        font-size:48px;
    }

    .content-card,
    .vm-card,
    .goals-card,
    .campus-card,
    .timeline-content,
    .bor-card,
    .vp-card{
        padding:32px;
    }

}

@media (max-width: 576px){

    .hero-content h1{
        font-size:42px;
    }

    .section-heading h2{
        font-size:34px;
    }

    .campus-header h2{
        font-size:30px;
    }

    .leader-content h2{
        font-size:34px;
    }

    .timeline-content h3{
        font-size:28px;
    }

    .org-box h2{
        font-size:30px;
    }

    .org-chart-container{
        padding:12px;
    }

}
/* Mobile Navigation */

.mobile-menu-toggle{
    display:none;

    background:#082f49;
    color:#fff;

    border:none;
    border-radius:12px;

    padding:12px 18px;

    font-size:24px;
    cursor:pointer;
}

@media (max-width: 768px){

    .mobile-menu-toggle{
        display:block;
    }

    .nav-wrapper{
        width:100%;
        display:none;
    }

    .nav-wrapper.active{
        display:block;
    }

    .main-nav{
        margin-top:20px;
        background:#fff;
        border:1px solid #e2e8f0;
        border-radius:24px;
        padding:20px;
    }

    .main-nav > .nav-item{
        width:100%;
    }

    .main-nav > .nav-item > a{
        width:100%;
        display:block;
        text-align:left;
    }

    .dropdown-menu{
        display:none;
        position:relative;
        opacity:1;
        visibility:visible;
        transform:none;
        box-shadow:none;
        border:none;
        margin-top:10px;
        padding-left:10px;
    }

    .has-dropdown.active .dropdown-menu{
        display:block;
    }

}
/* Central Administration Personnel */

.personnel-heading{
    margin-top:90px;
}

.personnel-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.personnel-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:30px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
    transition:.25s;
}

.personnel-card:hover{
    transform:translateY(-5px);
}

.personnel-photo{
    height:260px;
    background:#e2e8f0;
}

.personnel-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.personnel-info{
    padding:28px;
}

.personnel-info h3{
    font-size:22px;
    color:#082f49;
    margin-bottom:10px;
}

.personnel-info p{
    color:#0369a1;
    font-weight:800;
    margin-bottom:10px;
}

.personnel-info span{
    display:block;
    color:#64748b;
    line-height:1.6;
}

@media (max-width:1200px){
    .personnel-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media (max-width:992px){
    .personnel-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:576px){
    .personnel-grid{
        grid-template-columns:1fr;
    }
}
/* Central Admin Size Refinements */

.vp-image{
    height:320px;
    overflow:hidden;
}

.vp-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center 15%;
}

.personnel-photo img,
.leader-image img{
    object-fit:cover;
    object-position:center top;
}

.personnel-grid{
    grid-template-columns:repeat(5,1fr);
    gap:22px;
}

.personnel-card{
    border-radius:22px;
}

.personnel-photo{
    height:190px;
}

.personnel-info{
    padding:20px;
}

.personnel-info h3{
    font-size:17px;
    line-height:1.25;
    margin-bottom:8px;
    white-space:normal;
}

.personnel-info p{
    font-size:14px;
    line-height:1.35;
    margin-bottom:8px;
}

.personnel-info span{
    font-size:13px;
    line-height:1.4;
}

@media (max-width:1200px){
    .personnel-grid{
        grid-template-columns:repeat(4,1fr);
    }
}

@media (max-width:992px){
    .personnel-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media (max-width:768px){
    .personnel-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:480px){
    .personnel-grid{
        grid-template-columns:1fr;
    }
}
/* VP Card Refinement */

.vp-grid{
    grid-template-columns:repeat(4,1fr);
    gap:26px;
}

.vp-card{
    border-radius:26px;
    overflow:hidden;
    background:#fff;
}

.vp-image{
    height:300px;
    background:#eef2f7;
    padding:14px;
}

.vp-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    border-radius:18px;
    background:#eef2f7;
}

.vp-content{
    padding:24px 18px 28px;
    text-align:center;
}

.vp-content p,
.vp-description{
    display:none;
}

.vp-content h3{
    font-size:20px;
    line-height:1.2;
    color:#0f172a;
    margin-bottom:10px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.vp-content span{
    display:block;
    color:#0369a1;
    font-size:15px;
    line-height:1.25;
    font-weight:800;
    margin-bottom:0;
}

/* keep 4 in one row on desktop, adjust on smaller screens */
@media (max-width:1200px){
    .vp-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:768px){
    .vp-grid{
        grid-template-columns:1fr;
    }

    .vp-image{
        height:360px;
    }
}