:root {
    --pcu: #931b32;
    --pcu-dark: #7a1629;
    --bg: #0b0b0f;
    --text: #1f2937;
    --muted: #6b7280;
    --card: #ffffff;
    --line: #e5e7eb;
    --shadow: 0 10px 30px rgba(0, 0, 0, .08);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}

/* Header / Nav */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-glass {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, .85);
    border-bottom: 1px solid rgba(229, 231, 235, .9);
}

.brand-logo {
    height: 46px;
    width: auto;
}

.navbar .nav-link {
    font-weight: 500;
    color: #111827 !important;
    padding: .75rem .9rem !important;
    border-radius: 999px;
}

.navbar .nav-link:hover {
    background: rgba(147, 27, 50, .08);
    color: var(--pcu) !important;
}

.nav-cta {
    margin-left: 12px;
}

/* Buttons */
.btn-pcu {
    background: var(--pcu);
    color: #fff;
    border: 1px solid var(--pcu);
    border-radius: 999px;
    padding: .75rem 1.2rem;
    font-weight: 600;
    box-shadow: 0 10px 18px rgba(147, 27, 50, .18);
}

.btn-pcu:hover {
    background: var(--pcu-dark);
    border-color: var(--pcu-dark);
    color: #fff;
}

.btn-ghost {
    background: rgba(255, 255, 255, .14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    padding: .75rem 1.2rem;
    font-weight: 600;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .22);
    color: #fff;
}

.btn-outline-pcu {
    background: #fff;
    border: 1px solid rgba(147, 27, 50, .35);
    color: var(--pcu);
    border-radius: 999px;
    padding: .7rem 1.05rem;
    font-weight: 600;
}

.btn-outline-pcu:hover {
    background: rgba(147, 27, 50, .08);
    color: var(--pcu);
}

/* Hero */
.hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    background: #111;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(70% 60% at 20% 40%, rgba(147, 27, 50, .45), rgba(0, 0, 0, .60) 55%, rgba(0, 0, 0, .72));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 72px 0;
}

.badge-pcu {
    display: inline-block;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .28);
    color: #fff;
    padding: .45rem .75rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: .2px;
}

.hero-title {
    color: #fff;
    margin-top: 14px;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.15;
    font-weight: 700;
}

.hero-title span {
    color: #ffd7df;
}

.hero-subtitle {
    color: rgba(255, 255, 255, .85);
    font-size: 16px;
    line-height: 1.7;
    margin: 14px 0 18px;
    max-width: 52ch;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-meta {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.meta-chip {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    color: rgba(255, 255, 255, .9);
    padding: .45rem .7rem;
    border-radius: 999px;
    font-size: 13px;
}

.meta-chip i {
    margin-right: 6px;
}

/* Glass card */
.glass-card {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    padding: 18px;
    color: #fff;
    box-shadow: 0 16px 45px rgba(0, 0, 0, .22);
    backdrop-filter: blur(12px);
}

.small-muted {
    color: rgba(255, 255, 255, .78);
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, .18);
}

.mini-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mini-list li {
    margin: 8px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, .9);
}

.mini-list i {
    color: #ffd7df;
    margin-right: 8px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    width: 28px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .35);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 999px;
    margin: 10px auto 0;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: .7;
    }

    50% {
        transform: translateY(14px);
        opacity: 1;
    }
}

/* Sections */
.section {
    padding: 64px 0;
}

.section-alt {
    background: #fafafa;
}

.section-head {
    text-align: center;
    margin-bottom: 26px;
}

.section-title {
    font-size: clamp(22px, 2.3vw, 34px);
    font-weight: 700;
    color: #111827;
}

.section-subtitle {
    color: var(--muted);
    max-width: 70ch;
    margin: 10px auto 0;
    line-height: 1.6;
}

/* Cards */
.content-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
}

.content-card .lead {
    font-size: 16px;
    line-height: 1.8;
    color: #111827;
}

.text-pcu {
    color: var(--pcu);
    font-weight: 700;
}

.clean-list {
    padding-left: 18px;
    margin: 10px 0 0;
    color: #374151;
}

.clean-list li {
    margin: 8px 0;
    line-height: 1.7;
}

/* Tables */
.table-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px 10px 4px;
    box-shadow: var(--shadow);
}

.table-modern {
    margin: 0;
}

.table-modern thead th {
    background: var(--pcu);
    color: #fff;
    border: none !important;
    font-weight: 700;
    padding: 14px 14px;
}

.table-modern td {
    vertical-align: middle;
    padding: 14px;
    border-color: var(--line);
    color: #111827;
}

.table-modern tbody tr:hover {
    background: rgba(147, 27, 50, .04);
}

/* Pills */
.pill-nav {
    gap: 10px;
    justify-content: center;
}

.pill-nav .nav-link {
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    color: #111827;
    font-weight: 600;
    padding: .55rem .9rem;
}

.pill-nav .nav-link.active {
    background: rgba(147, 27, 50, .10);
    border-color: rgba(147, 27, 50, .25);
    color: var(--pcu);
}

/* Program card */
.program-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
}

.rounded-xl {
    border-radius: 16px;
}

/* Footer */
.site-footer {
    background: #0b0b0f;
    color: rgba(255, 255, 255, .78);
    padding: 20px 0;
}

.footer-social a {
    color: rgba(255, 255, 255, .8);
    margin-left: 12px;
    font-size: 18px;
    text-decoration: none;
}

.footer-social a:hover {
    color: #fff;
}

/* Back to top */
.backtotop {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pcu);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(147, 27, 50, .25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s ease;
    z-index: 999;
}

.backtotop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.backtotop:hover {
    background: var(--pcu-dark);
    color: #fff;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
    .hero {
        min-height: 82vh;
    }

    .brand-logo {
        height: 42px;
    }
}

@media (max-width: 575.98px) {
    .hero-content {
        padding: 64px 0 76px;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .meta-chip {
        width: 100%;
    }
}


/* @media (max-width: 767.98px) {
    .hero-video {
        display: none;
    }

    .hero {
        background: url("images/banners/slider1.JPG") center/cover no-repeat;
    }
} */