.home-slider {
    overflow: hidden;
}

.home-slider .hero-slide {
    min-height: 70vh;
}

.table thead tr th {
    background-color: var(--primary-color);
    color: var(--light-color);
    text-align: center;
}

.cta-button {
    line-height: 1 !important;
}

/* Fullscreen Video Logic */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video-container iframe {
    width: 100vw;
    height: 56.25vw;
    /* 16:9 ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── NOTICE STRIP ── */
.notice-strip {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 10px 0;
    overflow: hidden;
}

.notice-strip .notice-label {
    background: var(--primary-color);
    color: var(--light-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 2px;
    margin-right: 20px;
    white-space: nowrap;
}

.notice-strip .notice-text {
    font-size: 13px;
    color: var(--gray-color);
}

.notice-strip .notice-text a {
    color: var(--primary-color);
    margin-left: 8px;
    font-weight: 500;
}

/* ── ABOUT SECTION ── */
.about-section {
    padding: 80px 0;
    background: var(--light-color);
}

.about-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 16px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.check-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.check-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    font-size: 16px;
    margin-right: 10px;
}

.check-list li:last-child {
    border-bottom: none;
}

/* ── STATS BAND ── */
.stats-band {
    background: var(--primary-color);
}

.stat-band-item {
    text-align: center;
    padding: 10px 0;
}

.stat-band-item .num {
    font-size: 44px;
    font-weight: 900;
    color: var(--light-color);
    line-height: 1;
    display: block;
}

.stat-band-item .lbl {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 6px;
    display: block;
}

.stat-band-divider {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    height: 60px;
    margin: 0 auto;
}

/* ── GALLERY ── */
.gallery-section {
    padding: 80px 0;
    background: var(--off-primary-color);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gallery-item {
    flex: 1 1 calc(33.333% - 8px);
    min-width: 200px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item.large {
    flex: 2 1 calc(66.666% - 8px);
}

.gallery-item.large img {
    height: 220px;
}


/* ── APPROVALS ── */
.approvals-section {
    padding: 60px 0;
    background: var(--light-color);
}

.approval-badge {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.approval-badge:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(240, 90, 40, 0.1);
}

.approval-badge .fa {
    font-size: 30px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.approval-badge h6 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 4px;
}

.approval-badge p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 767px) {
    .about-image-col {
        padding-left: 15px;
        margin-top: 32px;
    }

    .about-accent-card {
        display: none;
    }

    .gallery-item {
        flex: 1 1 calc(50% - 8px);
    }

    .gallery-item.large {
        flex: 1 1 100%;
    }

    .stat-band-divider {
        display: none;
    }
}

/* SECTION PADDING HELPERS */
.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.mt-col {
    margin-bottom: 28px;
}