/* ================================================================
   OVERVIEW PAGE STYLESHEET  –  overview.css
   ================================================================ */

:root {
    --ov-primary:      #12317d;
    --ov-primary-mid:  #1746a2;
    --ov-accent:       #d97706;
    --ov-text:         #0f172a;
    --ov-muted:        #475569;
    --ov-bg:           #f8fafc;
    --ov-border:       #e2e8f0;
}

/* ── Top Highlight Bar ───────────────────────────────────────── */
.ov-stats-bar {
    background: #ffffff;
    border: 1px solid var(--ov-border);
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: 0 4px 20px rgba(18, 49, 125, 0.04);
}

.ov-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 12px;
}

.ov-stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(18, 49, 125, 0.08);
    color: var(--ov-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.ov-stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ov-text);
    line-height: 1.2;
    white-space: nowrap;
}

.ov-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.76rem;
    color: var(--ov-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* ── Video Banner ────────────────────────────────────────────── */
.ov-video-card {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--ov-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.ov-video-card video {
    width: 100%;
    height: 75vh;
    min-height: 550px;
    max-height: 750px;
    object-fit: cover;
}

.ov-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(10, 20, 50, 0.92) 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    z-index: 2;
}

.ov-video-quote {
    color: #ffffff;
    max-width: 850px;
}

.ov-video-quote h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.6);
}

.ov-video-quote p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: #f8fafc !important;
    margin: 0;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

/* ── Content Cards ───────────────────────────────────────────── */
.ov-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid var(--ov-border);
    padding: 32px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.ov-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(18, 49, 125, 0.08);
}

.ov-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--ov-border);
    padding-bottom: 14px;
}

.ov-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.ov-card-icon.blue { background: rgba(18, 49, 125, 0.08); color: var(--ov-primary); }
.ov-card-icon.gold { background: rgba(217, 119, 6, 0.08); color: var(--ov-accent); }
.ov-card-icon.green { background: rgba(22, 163, 74, 0.08); color: #16a34a; }
.ov-card-icon.red { background: rgba(239, 68, 68, 0.08); color: #ef4444; }

.ov-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ov-text);
    margin: 0;
}

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

.ov-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--ov-border);
}

.ov-list-item:last-child {
    border-bottom: none;
}

.ov-list-item i {
    font-size: 1.1rem;
    color: var(--ov-primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.ov-list-item .item-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ov-text);
    display: block;
}

.ov-list-item .item-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.84rem;
    color: var(--ov-muted);
    line-height: 1.5;
}

/* ── CMS Dynamic Content Scope Container ─────────────────────── */
.overview-cms-scope {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid var(--ov-border);
    padding: 36px 40px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    margin-bottom: 2rem;
}

/* ── Responsive Adjustments ──────────────────────────────────── */
@media (max-width: 767.98px) {
    .ov-video-card video { height: 260px; }
    .ov-video-overlay { padding: 20px; }
    .ov-video-quote h3 { font-size: 1.05rem; }
    .ov-video-quote p { font-size: 0.82rem; }
    .ov-card { padding: 24px 18px; }
    .overview-cms-scope { padding: 24px 18px; }
}
