/* ── Khello Informational Pages Design System ── */

/* Page Shell (consistent across all info pages) */
.k-page-shell {
    background: linear-gradient(180deg, #fbfcff 0%, #f3f6fb 100%);
    min-height: 70vh;
    padding: 72px 0 40px 0px;
}

/* Headings */
.k-heading-primary {
    color: #142a54;
}

/* Badge Styling */
.k-badge {
    background: #eef4ff;
    color: #20418c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 10px 18px;
}

/* Card Styling */
.k-card {
    border: 1px solid rgba(20, 42, 84, 0.08);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(20, 42, 84, 0.07);
    background: #ffffff;
}

/* Icon Box Utility */
.k-icon-box {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

/* Checklist Styling */
.k-check-list {
    list-style: none;
    padding-left: 0;
}
.k-check-list li {
    padding: 5px 0;
    color: #344054;
    font-size: 15px;
}
.k-check-list li i {
    color: #5575c2; /* Updated to match user preference */
}

/* CTA Color Block (The requested color update) */
.k-cta-block {
    background: #5575c2 !important; /* Force the new blue color */
    border-radius: 20px;
    overflow: hidden;
}
.k-cta-block a:not(.btn) {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
}
.k-cta-block a:not(.btn):hover {
    color: #ffffff;
}

/* Stats Bar (Used in About Us) */
.k-stat-bar {
    background: #eef4ff;
    border-radius: 16px;
    padding: 28px 0;
}
.k-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #142a54;
    line-height: 1;
}
.k-stat-label {
    font-size: 13px;
    color: #667085;
    margin-top: 4px;
}

/* Video Block Styling (With Rounded Corners) */
.k-video-wrap {
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 16px 48px rgba(20, 42, 84, 0.14);
    position: relative;
    background: #000;
}
.k-video-wrap video {
    width: 100%;
    display: block;
    border-radius: 20px !important;
}

/* Custom Play Button for Video */
#playAboutVid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}
#playAboutVid:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .k-page-shell {
        padding: 48px 0 40px 0px;
    }
}
/* Accordion overrides */
.k-accordion .accordion-item {
    border: 1px solid rgba(20, 42, 84, 0.08);
    border-radius: 16px !important;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 4px 16px rgba(20, 42, 84, 0.06);
}

.k-accordion .accordion-button {
    font-size: 1.05rem;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    color: #142a54;
    background: #ffffff;
    border-radius: 16px !important;
}

.k-accordion .accordion-button:not(.collapsed) {
    background: #f3f6fb;
    color: #142a54;
    box-shadow: none;
}

.k-accordion .accordion-button:focus {
    box-shadow: none;
}

.k-accordion .accordion-body {
    padding: 1.25rem 1.5rem;
    color: #667085;
    line-height: 1.8;
    background: #ffffff;
}
