/* =============================================
   CUSTOM VOTG MEDIA STYLES  (v3)
   ============================================= */

/* ---------------------------------------------
   SECTION HEADERS ON DARK BACKGROUNDS
   --------------------------------------------- */
.section-on-image .heading-bx h2,
.section-on-image .heading-bx h2 span,
.section-on-image .heading-bx p { color: #fff; }
.section-on-image .heading-bx .title-small { color: #ffcf9e; }

/* Ensure all text in sections with background images is white */
.bg-fix.ovbl-dark .heading-bx h2,
.bg-fix.ovbl-dark .heading-bx h2 span,
.bg-fix.ovbl-dark .heading-bx p,
.bg-fix.ovbl-dark .title-head,
.bg-fix.ovbl-dark .title-head span {
    color: #fff !important;
}

/* ---------------------------------------------
   FEATURED VIDEO - PLAY BUTTON FIX
   --------------------------------------------- */
.featured-video-bx {
    position: relative;
}

.featured-video-bx .fv-label {
    color: #ffcf9e;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.featured-video-bx .title-head,
.featured-video-bx .title-head span { color: #fff !important; }

.featured-video-bx .fv-desc {
    color: #e8e8e8;
    max-width: 620px;
    margin: 0 auto;
}

.featured-video-frame {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    border: 4px solid rgba(255, 255, 255, 0.12);
    background: #000;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Native HTML5 player */
.featured-video-frame .fv-player {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

/* Poster container - fills the entire frame */
.featured-video-frame .fv-poster {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.featured-video-frame .fv-poster img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
    transition: transform .4s ease, filter .4s ease;
}

.featured-video-frame .fv-poster:hover img {
    transform: scale(1.03);
    filter: brightness(0.9);
}

/* RED PLAY BUTTON - Properly centered */
.featured-video-frame .fv-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #ff5e14;
    color: #fff;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 0 0 12px rgba(255, 94, 20, 0.25),
                0 0 0 26px rgba(255, 94, 20, 0.12);
    animation: fv-pulse 2.2s infinite;
    transition: background .3s ease, transform .3s ease;
}

.featured-video-frame .fv-play:hover {
    background: #d94a0e;
    transform: translate(-50%, -50%) scale(1.08);
}

.featured-video-frame .fv-play i {
    margin-left: 5px;
}

@keyframes fv-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255, 94, 20, 0.45), 0 0 0 0 rgba(255, 94, 20, 0.25); }
    70%  { box-shadow: 0 0 0 18px rgba(255, 94, 20, 0), 0 0 0 36px rgba(255, 94, 20, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 94, 20, 0), 0 0 0 0 rgba(255, 94, 20, 0); }
}

/* Iframe replacement - fills the frame */
.featured-video-frame .fv-iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: #000;
}

.fv-speaker {
    margin-top: 18px;
    font-size: 14px;
    letter-spacing: .5px;
    opacity: .9;
}
.fv-speaker i { color: #ff5e14; margin-right: 8px; }

@media (max-width: 768px) {
    .featured-video-frame { border-radius: 10px; border-width: 3px; }
    .featured-video-frame .fv-play {
        width: 64px; height: 64px; font-size: 22px;
    }
}

/* ---------------------------------------------
   MEDIA CARDS
   --------------------------------------------- */
.media-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}
.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}
.media-thumb {
    position: relative;
    overflow: hidden;
    height: 200px;
}
.media-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.media-card:hover .media-thumb img { transform: scale(1.05); }
.media-thumb .play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #ff5e14; font-size: 24px;
    transition: all 0.3s ease;
    opacity: 0.9; text-decoration: none;
}
.media-thumb .play-btn:hover {
    background: #ff5e14; color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}
.media-info { padding: 20px; }
.media-info h5 { font-size: 16px; font-weight: 600; margin-bottom: 5px; }
.media-info h5 a { color: #1a1a2e; text-decoration: none; }
.media-info h5 a:hover { color: #ff5e14; }
.media-info span { font-size: 13px; color: #888; }
.media-info p { font-size: 14px; color: #555; margin-top: 8px; line-height: 1.5; }
.media-meta {
    display: flex; align-items: center; gap: 10px;
    margin-top: 10px; font-size: 13px; color: #888;
}

.media-type-tag {
    position: absolute;
    top: 12px; left: 12px;
    font-size: 11px; font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 2;
}
.media-type-tag i { margin-right: 4px; }
.media-type-tag.is-video { background: #e63946; }
.media-type-tag.is-audio { background: #457b9d; }

/* ---------------------------------------------
   ARTICLE CARDS
   --------------------------------------------- */
.article-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}
.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}
.article-thumb { position: relative; height: 200px; overflow: hidden; }
.article-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.article-card:hover .article-thumb img { transform: scale(1.05); }
.article-category {
    position: absolute;
    top: 15px; left: 15px;
    background: #ff5e14; color: #fff;
    font-size: 11px; font-weight: 600;
    padding: 4px 12px; border-radius: 20px;
    text-transform: uppercase;
}
.article-body { padding: 20px; }
.article-body h5 { font-size: 18px; font-weight: 600; margin-bottom: 8px; line-height: 1.4; }
.article-body h5 a { color: #1a1a2e; text-decoration: none; }
.article-body h5 a:hover { color: #ff5e14; }
.article-body p { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 12px; }
.article-meta {
    display: flex; align-items: center; gap: 15px;
    font-size: 13px; color: #888; margin-bottom: 10px;
    flex-wrap: wrap;
}
.article-meta i { margin-right: 4px; }
.article-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ff5e14;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: none;
    border: 0;
    padding: 0;
}
.article-readmore:hover { color: #d94a0e; }
.article-readmore i { transition: transform .3s ease; font-size: 12px; }
.article-readmore:hover i { transform: translateX(5px); }

/* ---------------------------------------------
   PODCAST CARDS
   --------------------------------------------- */
.podcast-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}
.podcast-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}
.podcast-thumb { position: relative; height: 160px; overflow: hidden; }
.podcast-thumb img { width: 100%; height: 100%; object-fit: cover; }
.podcast-thumb .play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 50px; height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #ff5e14; font-size: 18px;
    transition: all 0.3s ease;
    opacity: 0.9; text-decoration: none;
}
.podcast-thumb .play-btn:hover {
    background: #ff5e14; color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}
.podcast-info { padding: 15px 20px 20px; }
.podcast-info h5 { font-size: 15px; font-weight: 600; margin: 6px 0 3px; }
.podcast-info h5 a { color: #1a1a2e; text-decoration: none; }
.podcast-info h5 a:hover { color: #ff5e14; }
.podcast-meta { margin-top: 8px; font-size: 12px; color: #888; display: flex; gap: 12px; }
.podcast-series-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #ff5e14;
    background: rgba(255, 94, 20, 0.1);
    padding: 3px 10px;
    border-radius: 12px;
}
.podcast-series-tag i { margin-right: 4px; }

/* ---------------------------------------------
   ABOUT VOTG MEDIA SECTION
   --------------------------------------------- */
.about-votg-media {
    position: relative;
    padding-bottom: 60px;
    padding-right: 60px;
}
.about-img-main {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}
.about-img-main img { width: 100%; display: block; }
.about-img-float {
    position: absolute;
    bottom: 0; right: 0;
    width: 55%;
    border-radius: 10px;
    overflow: hidden;
    border: 6px solid #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.about-img-float img { width: 100%; display: block; }
.about-experience {
    position: absolute;
    top: -20px; right: 10px;
    background: #ff5e14;
    color: #fff;
    text-align: center;
    padding: 18px 22px;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(255, 94, 20, 0.4);
    z-index: 2;
}
.about-experience span {
    font-size: 34px;
    font-weight: 700;
    font-family: 'Rubik', sans-serif;
    line-height: 1;
    display: block;
}
.about-experience p {
    margin: 6px 0 0;
    font-size: 12px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: .5px;
    max-width: 120px;
}
.about-lead { font-size: 16px; line-height: 1.8; color: #444; }
.about-check-list {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
}
.about-check-list li {
    padding: 7px 0;
    font-size: 15px;
    color: #333;
}
.about-check-list li i {
    color: #ff5e14;
    margin-right: 10px;
}

/* ---------------------------------------------
   STATS SECTION
   --------------------------------------------- */
.bg-gray { background-color: #f8f9fa; }
.counter-style-1 { text-align: center; padding: 20px; }
.counter-style-1 .text-primary { color: #ff5e14 !important; }
.counter-style-1 span.counter {
    font-size: 45px;
    font-weight: 700;
    font-family: 'Rubik', sans-serif;
}
.counter-style-1 .counter-text {
    display: block;
    font-size: 16px;
    color: #606060;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 500;
}
.stats-strip .stat-icon {
    display: block;
    font-size: 26px;
    margin-bottom: 8px;
    opacity: .85;
}

/* ---------------------------------------------
   EMPTY STATE
   --------------------------------------------- */
.empty-state {
    text-align: center;
    padding: 50px 20px;
    background: #fff;
    border: 2px dashed #e3e3e3;
    border-radius: 10px;
    color: #999;
}
.empty-state i { font-size: 34px; display: block; margin-bottom: 12px; color: #ccc; }
.empty-state p { margin: 0; }
.section-on-image .empty-state {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    color: #eee;
}
.section-on-image .empty-state i { color: rgba(255,255,255,0.5); }

/* ---------------------------------------------
   CENTER HEADINGS ON IMAGE SECTIONS
   --------------------------------------------- */
.section-on-image .heading-bx {
    text-align: center !important;
}
.section-on-image .heading-bx .title-small {
    display: block;
    text-align: center;
}
.section-on-image .heading-bx .title-head {
    text-align: center;
}
.section-on-image .heading-bx p {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Slider Text Centering */
.rev-slider .tp-caption {
    text-align: center !important;
}

/* ---------------------------------------------
   RESPONSIVE
   --------------------------------------------- */
@media (max-width: 992px) {
    .media-thumb, .article-thumb { height: 180px; }
    .podcast-thumb { height: 140px; }
    .about-votg-media { padding-right: 30px; }
}
@media (max-width: 768px) {
    .media-thumb, .article-thumb { height: 200px; }
    .counter-style-1 span.counter { font-size: 35px; }
    .counter-style-1 .counter-text { font-size: 13px; }
    .about-votg-media { padding-right: 0; padding-bottom: 40px; }
    .about-experience { top: -15px; right: 0; padding: 12px 16px; }
    .about-experience span { font-size: 26px; }
}
@media (max-width: 576px) {
    .media-thumb, .article-thumb { height: 180px; }
    .podcast-thumb { height: 160px; }
    .about-img-float { width: 60%; }
}