/* ══════════════════════════════════════════════
   Video Background Section — henddu-video-section
   ══════════════════════════════════════════════ */

/* Section wrapper */
.henddu-video-section {
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Full-bleed video background */
.henddu-vbg-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.henddu-vbg-wrap iframe,
.henddu-vbg-wrap .henddu-vbg-fallback {
    position: absolute;
    top: 50%;
    left: 50%;
    /* wider/taller than viewport to avoid letterboxing */
    width: 177.78vh;   /* 16/9 × 100vh */
    height: 56.25vw;   /* 9/16 × 100vw */
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}

.henddu-vbg-wrap .henddu-vbg-fallback {
    width: 100%;
    height: 100%;
    transform: none;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
}

/* Dark gradient overlay */
.henddu-vbg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(14, 115, 119, 0.72) 0%,
        rgba(21, 57, 93, 0.82) 100%
    );
}

/* Content above background */
.henddu-vbg-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

/* Section title on dark bg */
.henddu-video-section .section-title .title-tag {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
    font-size: 16px;
    letter-spacing: 2px;
}

.henddu-video-section .section-title .title {
    color: #ffffff;
}

/* Muted badge */
.henddu-muted-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
}

/* Play button */
.henddu-play-with-sound {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-decoration: none !important;
}

.henddu-play-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 0 16px rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.henddu-play-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse-border 1.6s ease-out infinite;
}

.henddu-play-circle i {
    color: #0e7377;
    font-size: 28px;
    margin-left: 6px;
}

.henddu-play-with-sound:hover .henddu-play-circle {
    transform: scale(1.1);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.5), 0 0 0 22px rgba(255, 255, 255, 0.2);
}

.henddu-play-label {
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Counters stay on white/light bg below */
.henddu-video-section .counter-area2 {
    position: relative;
    z-index: 2;
}

/* Responsive — large screens */
@media (min-width: 992px) {
    .henddu-video-section .section-title .title-tag {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .henddu-video-section .section-title .title {
        font-size: 58px;
        line-height: 1.15;
    }
}

@media (min-width: 1200px) {
    .henddu-video-section .section-title .title {
        font-size: 72px;
        line-height: 1.1;
    }
}

/* ══════════════════════════════════════════════
   About Page — Two-Column Video Section (hav)
   ══════════════════════════════════════════════ */

.hav-section {
    position: relative;
    padding: 120px 0 120px;
    background: #f4f8fb;
    overflow: hidden;
    min-height: 600px;
    margin-bottom: 80px;
}

/* Right-half: YouTube thumbnail as full background */
.hav-right-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

.hav-right-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14,115,119,0.55) 0%, rgba(21,57,93,0.75) 100%);
}

.hav-right-bg .hav-play-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hav-right-bg .hav-duration {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

/* ── Left content ── */
.hav-content-col {
    position: relative;
    z-index: 1;
}

.hav-content {
    padding-right: 40px;
}

.hav-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14, 115, 119, 0.1);
    color: #0e7377;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    border: 1px solid rgba(14, 115, 119, 0.25);
    margin-bottom: 24px;
}

.hav-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: #15395d;
    margin-bottom: 20px;
}

.hav-highlight {
    color: #0e7377;
    position: relative;
}

.hav-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 3px;
    background: #0e7377;
    border-radius: 2px;
    opacity: 0.35;
}

.hav-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #556;
    margin-bottom: 28px;
}

.hav-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hav-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    color: #334;
    line-height: 1.6;
}

.hav-bullet-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0e7377, #15395d);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(14, 115, 119, 0.3);
}

.hav-watch-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #0e7377, #15395d);
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none !important;
    box-shadow: 0 8px 30px rgba(14, 115, 119, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hav-watch-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(14, 115, 119, 0.45);
    color: #fff !important;
}

.hav-btn-play {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ── Right video col spacer ── */
.hav-video-col {
    position: relative;
    z-index: 1;
}

/* ── Play button (lives inside .hav-right-bg) ── */
.hav-play-circle {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0e7377;
    font-size: 26px;
    padding-left: 5px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 0 16px rgba(255,255,255,0.15);
    text-decoration: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.hav-play-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    animation: pulse-border 1.8s ease-out infinite;
}

.hav-play-circle:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 50px rgba(0,0,0,0.5), 0 0 0 22px rgba(255,255,255,0.2);
}

/* ── Duration badge ── */
.hav-duration {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.9);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 5px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    z-index: 2;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .hav-section{
        padding-top: 0;
        padding-bottom: 40px;
    }

    .hav-content {
        padding-right: 0;
        padding-top: 30px;
        margin-bottom: 0;
    }

    .hav-title {
        font-size: 28px;
    }

    /* On mobile stack: show the right bg below as a tall block */
    .hav-right-bg {
        position: relative;
        width: 100%;
        height: 340px;
        clip-path: none;
    }
}

@media (min-width: 1200px) {
    .hav-title {
        font-size: 42px;
    }
}

/* Responsive — small screens */
@media (max-width: 576px) {
    .henddu-play-circle {
        width: 68px;
        height: 68px;
    }

    .henddu-play-circle i {
        font-size: 22px;
    }

    .henddu-play-circle::after {
        width: 100px;
        height: 100px;
    }
}
