/* ==============================
   🌈 Root Variables
============================== */
:root {
    --deep-purple: #3b0b3b;
    --vivid-purple: #5a0f66;
    --accent: #782d7a;
    --muted: #f4f2f7;
    --text: #222;
    --light-gray: #d9d9d9;
    --white: #fff;
    --box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    font-family: "Montserrat", sans-serif;
}

/* ==============================
   🔄 Basic Reset
============================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    background-color: #faf8fb;
    color: var(--text-color);
    font-family: "Montserrat", sans-serif;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.text-info{
    color: #6a0dad !important;
}

/* ==============================
   🟣 Top Bar
============================== */
.topbar {
    background: var(--deep-purple);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 40;
}

.logo-box {
    width: 150px;
    height: 80px;
    object-fit: contain;
}

.icon-size {
    font-size: 40px;
}

@media (max-width: 768px) {
    .logo-box {
        width: 120px;
        height: 60px;
    }
    .icon-size {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .logo-box {
        width: 100px;
        height: 50px;
    }
    .icon-size {
        font-size: 26px;
    }
}


/* ==============================
   🟢 Banner
============================== */
.top-banner {
    background: #fff;
}

.top-banner .app-mockup {
    max-width: 300px;
    height: 300px;
}

.banner-title {
    color: #3b1053;
    font-weight: 700;
    margin-bottom: 0.5rem;
    width: fit-content;
    margin: 0 auto;
    background: transparent;
    text-shadow: 2px 2px 6px rgba(59, 11, 59, 0.4);
}

.banner-subtitle {
    color: #531b78;
    font-weight: 600;
    margin-bottom: 0.25rem;
    background: transparent;
    text-shadow: 2px 2px 6px rgba(59, 11, 59, 0.4);
}

.banner-desc {
    color: #531b78;
    font-size: 1.2rem;
    /* margin-bottom: 1.5rem; */
    background: transparent;
    text-shadow: 2px 2px 6px rgba(59, 11, 59, 0.4);
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-item:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4b007d, #7a2cbf);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: #fff;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(123, 44, 191, 0.3);
}
@media (max-width: 480px) {
  .icon-circle {
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
    /* margin: 2px; */
  }
}

.icon-text {
    font-size: 14px;
    font-weight: 600;
    color: #3b1053;
}

.contact-page-icon{
    width: 85px;
    height: 85px;
    text-decoration: none;
}

@media (max-width: 480px) {
  .icon-text {
    font-size: 10px;
    font-weight: 600;
    color: #3b1053;
}
.contact-page-icon{
    width: 70px;
    height: 70px;
    text-decoration: none;
}

}
/* Responsive Adjustments - Mobile only (not iPad mini) */
@media (max-width: 767px) {
    .top-banner .app-mockup {
        max-width: 220px;
    }

    .banner-subtitle {
    color: #531b78;
    font-weight: 600;
    margin-bottom: 0.25rem;
    background: transparent;
    text-shadow: 2px 2px 6px rgba(59, 11, 59, 0.4);
    font-size: 13px;
}

    .banner-title {
        font-size: 13px;
    }

    .banner-desc {
        font-size: 12px;
    }

    .logo-box {
        width: 100px;
        height: 60px;
    }

    .brand {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 65%;
    }
}

/* ==============================
   🟣 Layout
============================== */
.container1 {
    margin: 10px 3%;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 20px;
    overflow: hidden;
}

/* ==============================
   📰 Sidebar (News)
============================== */
.sidebar {
    background: #fff;
    border: 2px solid #5b2a5b;
    padding: 12px;
    border-radius: 6px;
    min-height: 400px;
}

.news-scoop h3 {
    background: #492263;
    color: #fff;
    padding: 20px;
    font-size: 14px;
    margin-bottom: 60px;
    text-align: center;
}

.news-scoop ul {
    list-style: none;
    padding-left: 6px;
}

.news-scoop li {
    padding: 8px 0;
    border-bottom: 1px dashed #f0edf2;
    margin-bottom: 100px;
}

.news-scoop a {
    font-size: 13px;
    color: #5b2a5b;
}

.news-scoop a:hover {
    text-decoration: underline;
}

/* ==============================
   🟣 Main Content
============================== */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 1050px;
}

/* ==============================
   💜 Purple Card Section
============================== */
.section-row {
    border-radius: 6px;
}

.section-row .bg-purple {
    border-radius: 5px;
}

.bg-purple {
    padding: 10px;
    background-color: #4a0f44;
}

.bg-blue {
    padding: 10px;
    background-color: #32064e;
}

/* ==============================
   🏷️ Row Header
============================== */
.row-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    max-width: 995px;
    background: #6a0dad;
    padding: 5px 10px 5px;
}

.row-head h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0;
}

.row-head .view-all {
    background: #fff;
    color: #50184d;
    padding: 2px 12px;
    border-radius: 15px;
    text-decoration: none;
    /* font-weight: 700; */
    font-size: 12px;
    transition: all 0.3s ease;
}

.row-head .view-all:hover {
    background: #f7e8ff;
}

/* ==============================
   📢 Ad Boxes
============================== */
.ad-box {
    /*! background: #dcd6dd; */
    /*! color: #50184d; */
    text-align: center;
    margin: 30px 0;
    /*! border-radius: 6px; */
    font-weight: 700;
    /*! border: 1px solid #bfb6c1; */
}

.ad-box img {
    height: 180px;
    width: 100%;
    object-fit: fill;
}

/* ==============================
   ⚫ Footer
============================== */
.page-footer {
    padding: 30px;
    background-color: #552055;
    color: #fff;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    flex-wrap: wrap;
}

/* ==============================
   📱 Mobile Responsive
============================== */

/* Tablet */
@media (max-width: 980px) {
    .container1 {
        grid-template-columns: 1fr;
        padding-bottom: 20px;
    }

    .sidebar {
        order: 2;
    }

    .main-content {
        order: 1;
        max-width: 340px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        border: none;
        padding: 15px 10px;
    }

    .icon-box {
        height: 75px !important;
        width: 75px !important;
    }

    .owl-carousel .owl-nav {
        width: 82% !important;
        left: 9% !important;
    }

    .banner-left img {
        width: 100%;
        height: auto;
    }

    .tagcontent {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .tagcontent i {
        margin: 0 auto;
    }

    .text-blue {
        font-size: 16px;
        width: 100%;
        text-align: center;
    }

    .banner-right {
        width: 100%;
    }

    .banner-icons {
        flex-wrap: wrap;
        gap: 8px;
        display: block ruby !important;
        text-align: center;
    }

    .container {
        padding: 0 10px;
    }

    .row-head h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .row-head .view-all {
        font-size: 12px;
        padding: 5px 10px;
    }

    .ad-box {
        /*! padding: 40px 15px; */
        margin: 20px 0;
        border: none;
    }

    .topbar-inner {
        flex-direction: row;
        justify-content: space-between;
    }

    /* Limit height for the first tab's content and enable scrolling (mobile only) */
    .news-tabs-section .tab-content#latest {
        max-height: 300px;
        height: 300px;
        overflow-y: auto;
        padding-right: 8px;
        /* avoid content under scrollbar */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    /* Optional: light custom scrollbar for webkit browsers (mobile only) */
    .news-tabs-section .tab-content#latest::-webkit-scrollbar {
        width: 8px;
    }

    .news-tabs-section .tab-content#latest::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.12);
        border-radius: 4px;
    }

    .news-tabs-section .tab-content#popular {
        max-height: 300px;
        height: 300px;
        overflow-y: auto;
        padding-right: 8px;
        /* avoid content under scrollbar */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    /* Optional: light custom scrollbar for webkit browsers (mobile only) */
    .news-tabs-section .tab-content#popular::-webkit-scrollbar {
        width: 8px;
    }

    .news-tabs-section .tab-content#popular::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.12);
        border-radius: 4px;
    }
}

/* ==============================
   📦 Misc Components
============================== */
.block {
    display: block;
}

.offcanvas-body {
    padding: 20px;
}

.offcanvas-body ul li a {
    font-size: 16px;
    display: block;
    padding: 8px 0;
    color: #3b0b3b;
    text-decoration: none;
    transition: 0.3s;
}

.offcanvas-body ul li a:hover {
    color: #782d7a;
    font-weight: 600;
}

/* Download App Section */
.download-app {
    background: linear-gradient(135deg, #782d7a, #5a0f66);
    color: #fff;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
}

.download-app i {
    font-size: 30px;
    margin-bottom: 10px;
}

.download-app h6 {
    font-size: 16px;
    margin-top: 10px;
    font-weight: 600;
}

.download-btn {
    margin-top: 10px;
    background: #fff;
    color: #5a0f66;
    font-weight: 600;
    border-radius: 6px;
    padding: 8px 15px;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
}

.download-btn:hover {
    background: #f3f0f5;
}

/* ==============================
   📰 News Tabs Section (Unique)
============================== */
.news-tabs-section {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    max-width: 550px;
    font-family: "Montserrat", sans-serif;
}

/* Tabs Header */
.news-tabs-header {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 15px;
}

.tab-btn {
    flex: 1;
    background: #f6f6f6;
    border: none;
    padding: 12px 0;
    font-weight: 600;
    cursor: pointer;
    color: #333;
    font-size: 15px;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: #082d63;
    color: #fff;
}

.tab-btn:hover {
    background: #dfe7f7;
}

/* News List */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Each News Item */
.news-item {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ccc !important;
    padding: 10px;
    background: #cccccc1a;
    margin-bottom: 5px;
}

.news-item-link {
    text-decoration: none;
}

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

.news-item img {
    width: 100px;
    height: 80px;
    object-fit: fill;
    border-radius: 5px;
}

.news-info h4 {
    font-size: 15px;
    color: #0d164d;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 5px;
}

.news-info p {
    font-size: 13px;
    color: #777;
    margin-bottom: 0;
}

.news-info .category {
    color: #0d389d;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 640px) {
    .news-tabs-section {
        max-width: 340px;
        padding: 10px;
        margin: 0px 0px 13px;
        height: 300px;
        overflow-y: scroll;
    }

    .news-item {
        gap: 10px;
    }

    .news-info h4 {
        font-size: 14px;
    }
}

.small-links a {
    text-decoration: none;
    color: #fff;
}

/* news carousol */
/* Carousel item wrapper */
.owl-carousel .owl-item {
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 0 0px;
    box-sizing: border-box;
}

.owl-carousel .item {
    width: 100%;
}

/* Media Card */
.media-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

/* Image Section */
.media-card img {
    width: 100%;
    height: 150px;
    display: block;
    border-radius: 5px;
}

/* Overlay (Play / Share icons) */
.media-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.media-card:hover .overlay {
    opacity: 1;
    visibility: visible;
}

.icon-link {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    font-size: 16px;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.icon-link:hover {
    background: #3b0b3b;
    color: #fff;
    border-color: #3b0b3b;
}

/* Info Section */
.media-card .news-info {
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.media-card h4 {
    font-size: 16px;
    color: #222;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.media-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.media-card p span {
    color: #999;
}

.media-card p span.category {
    color: #3b0b3b;
    font-weight: 600;
}

/* Owl Carousel arrows */
.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 94%;
    left: 3%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    background: rgba(74, 15, 68, 0.64);
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background: #fff;
    color: #3b0b3b;
    border-color: #3b0b3b;
}

.owl-carousel .owl-nav button.owl-prev {
    margin-left: -20px;
}

.owl-carousel .owl-nav button.owl-next {
    margin-right: -20px;
}

/* Responsive tweak */
@media (max-width: 767px) {

    .news-tabs-section {
        max-width: 388px;
        padding: 10px;
        margin: 0px 0px 13px;
        height: 300px;
        overflow-y: scroll;
    }

    .owl-carousel .owl-nav {
        width: 100%;
        left: 0;
    }

    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

/* Responsive adjustments */

/* Tablet */
@media (max-width: 992px) {
    .media-card {
        max-width: 220px;
    }

    .media-card img {
        height: 160px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .media-card {
        max-width: 100%;
    }

    .media-card img {
        height: 200px;
        object-fit: fill;
    }

    .owl-carousel .owl-nav button.owl-prev {
        left: -10px;
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        background: rgba(74, 15, 68, 0.64);
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        font-size: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: auto;
        transition: background 0.3s ease;
        font-weight: normal;
        position: relative;
        border: 1px solid #fff;
    }

    .owl-carousel .owl-nav button.owl-next {
        right: -10px;
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: flex !important;
}

/* player css */
.player {
    max-height: 350px;
}

.player div iframe {
    width: 100%;
    max-height: 350px;
    border: none;
    margin-bottom: 20px;
}

/* --- Popup Styling --- */
.media-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.media-modal-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    padding: 10px;
    width: 700px;
    max-width: 95%;
    aspect-ratio: 16 / 9;
    background-color: #3b0b3b;
}

.media-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 11px;
    color: red;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    font-weight: 500;
    /*! background: red; */
}
    padding: 0;
    font-weight: bold;
}

.media-close:hover {
    color: #fff;
}

#mediaContainer {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

#mediaContainer iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

#mediaContainer audio {
    width: 100%;
    max-height: 60px;
    border: none;
    border-radius: 8px;
    position: relative;
    z-index: 5;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .media-modal-content {
        width: 900px;
    }
}

@media (max-width: 992px) {
    .media-modal-content {
        width: 750px;
    }

    #mediaContainer iframe {
        height: 350px;
    }

    #mediaContainer audio {
        max-height: 55px;
    }
}

@media (max-width: 768px) {
    .media-modal-content {
        width: 90%;
        padding: 8px;
    }

    #mediaContainer iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    #mediaContainer audio {
        width: 100%;
        max-height: 50px;
    }

    .media-close {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .media-modal-content {
        width: 95%;
        padding: 6px;
    }

    #mediaContainer iframe {
        width: 100%;
        height: auto;
    }

    #mediaContainer audio {
        width: 100%;
        max-height: 45px;
    }

    .media-close {
        font-size: 20px;
    }

    .section1-text {
        padding: 10px 10px !important;
    }

    .section2 {
        padding: 10px 10px !important;
    }
}

.logo-box1 {
    height: 100px;
}

.banner-icons {
    display: flex;
    gap: 58px;
    justify-content: center;
    align-items: center;
}

.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #3b0b3b;
    color: #fff;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.icon-box:hover {
    transform: translateY(-3px);
    color: #fff;
    border-radius: 10px;
    background-color: #3b0b3b;
}

.icon-box img {
    height: 95px;
    width: auto;
    margin: -3px 0px -11px;
}

.icon-box p {
    font-size: 12px;
    color: #3b0b3b;
    margin: 35px;
    display: flex;
    gap: 5px;
}

.iconI {
    font-size: 50px;
    margin: 22px 0px 8px;
}

.icon-box p i {
    margin-top: 2px;
}

.news-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 8px;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.card-img-wrapper {
    overflow: hidden;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.card-img-top {
    object-fit: fill;
    height: 200px;
    /* uniform height for all cards */
    width: 100%;
    transition: transform 0.3s;
}

.news-card:hover .card-img-top {
    transform: scale(1.05);
}

li.nav-item {
    width: 45%;
}

li.nav-item button {
    width: 100%;
    border: 1px solid #6a0dad;
}

li.nav-item button:hover {
    background: #6a0dad;
}

/* form */
.form-select {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    display: block;
    width: 100%;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #6a0dad;
    background-image: var(--bs-form-select-bg-img),
        var(--bs-form-select-bg-icon, none);
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid #6a0dad;
    border-radius: var(--bs-border-radius);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* episode card overlay */
.card {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: scale(1.02);
}

.card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.card:hover .overlay {
    opacity: 1;
    visibility: visible;
}

/* testimonial css */
.testimonial-section {
    background: #4a0f66;
    padding: 60px 0;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.section-header p {
    font-size: 16px;
}

.testimonial-card {
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 200px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.star-rating i {
    font-size: 16px;
}

.testimonial-text {
    font-size: 14px;
    color: #333;
    margin: 10px 0;
}

.testimonial-author {
    font-size: 13px;
    color: #782d7a;
    text-align: right;
}

/* Owl Carousel adjustments */
.testimonial-carousel .owl-nav {
    display: none;
}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
}

@media (max-width: 768px) {
    .testimonial-card {
        min-height: auto;
    }
}

/* taabs news card css */
/* ========== Card Structure ========== */
.card-news {
    position: relative;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    gap: 10px;
    margin: 0px 0;
    cursor: pointer;
}

/* ========== Image Section ========== */
.card-news-image-wrapper {
    position: relative;
    border-radius: 8px;
}

.card-news-image {
    width: 130px;
    height: 85px;
    display: block;
    /*! transition: transform 0.3s ease; */
    object-fit: contain;
}

/* Slight zoom on hover */
.card-news:hover .card-news-image {
    transform: scale(1.05);
}

/* ========== Overlay ========== */
.card-news-overlay {
    position: absolute;
    top: 4px;
    left: 0;
    width: 134px;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
    height: 76px;
}

/* Overlay visible on hover */
.card-news:hover .card-news-overlay {
    opacity: 1;
}

/* Overlay Icons */
.card-news-icon {
    color: #fff;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.25);
    padding: 2px 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.card-news-icon:hover {
    background: #782d7a;
    color: #000;
}

/* ========== Info Section ========== */
.card-news-info {
    padding: 0px 0px 0px;
    background: #fff;
}

.card-news-title {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 0;
    color: #222;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* show only 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    /*! min-height: calc(1.4em * 2); */
    /* ensures consistent height */
    word-break: break-word;
    /* prevent layout breaking */
}

.card-news-meta {
    font-size: 10px;
    color: #777;
}

.card-news-category {
    color: #3b0b3b;
    font-weight: 500;
}

.card-news-time {
    /* font-style: italic; */
}

.playE-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #6a0dad;
    color: #fff;
    border-radius: 5px;
    padding: 6px 12px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.playE-btn:hover {
    background: #4b0c6b;
}

.playE-btn.disabled {
    pointer-events: none;
    background: #ccc;
    color: #666;
    cursor: not-allowed;
    opacity: 0.7;
}

.share-btn {
    background: transparent;
    border: none;
    color: #6a0dad;
    font-size: 14px;
    margin-left: 8px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.share-btn:hover {
    color: #4b0c6b;
}

.media-actions {
    background: #6a0dad;
    padding: 5px 10px;
    text-align: center;
    border: 1px solid #6a0dad;
    display: ruby;
    color: #fff;
}

.media-wrap{
    display: grid;
}

.episodeBtn {
    border-radius: 25px;
}

/* Desktop media actions - center controls */
.desktop-media-actions {
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.desktop-media-actions .media-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.desktop-media-actions .btn-label {
    font-size: 12px;
    color: #fff;
    margin-top: 5px;
    display: block;
    text-align: center;
    white-space: nowrap;
}

.media-image-wrapper {
    padding: 5px;
    background: #6a0dad;
}

.media-btn {
    color: #fff;
    background: #3b0b3b;
    text-decoration: none;
    text-align: center;
    border-radius: 20px;
    padding: 2px 8px 2px 8px;
    border: 1px solid #3b0b3b;
}

.episodeCard {
    color: #fff;
    background: #3b0b3b;
    text-decoration: none;
    text-align: center;
    border-radius: 25px;
    /*! padding: 2px 8px 2px 8px; */
    border: 1px solid #3b0b3b;
    height: 50px;
    width: 50px;
    font-size: 28px;
}

.media-btn:hover {
    background: #fff;
    border: 1px solid #3b0b3b;
    color: #3b0b3b;
}

/* Mobile media actions styling */
.mobile-media-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 10px 0;
    background: #6a0dad;
    border: none !important;
    text-align: center;
}

.mobile-action-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mobile-btn-label {
    font-size: 12px;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    font-weight: 500;
}

.mobile-action-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #3b0b3b;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(106, 13, 173, 0.3);
}

.mobile-action-btn:hover {
    background: #4b0c6b;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(106, 13, 173, 0.4);
}

.mobile-action-btn:active {
    transform: scale(0.95);
}

.mobile-action-btn.disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}

.mobile-action-btn.disabled:hover {
    transform: none;
    background: #ccc;
}

/* Desktop media actions - hide on mobile */
@media (max-width: 767px) {
    .desktop-media-actions {
        display: none !important;
    }

    .mobile-media-actions {
        display: flex !important;
    }
}

/* Desktop - hide mobile actions */
@media (min-width: 768px) {
    .mobile-media-actions {
        display: none !important;
    }

    .desktop-media-actions {
        display: flex !important;
    }
}

/* ========== Link Reset ========== */
.card-news-link {
    text-decoration: none;
    color: inherit;
}

/* share icon css */
.share-icon {
    text-decoration: none;
    transition: transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}

.share-icon:hover {
    transform: scale(1.2);
}

/* Share modal container - ensure icons stay in row on mobile */
.share-icons-container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    gap: 15px !important;
}

.share-icons-container .share-icon {
    flex: 0 0 auto !important;
    margin: 0 !important;
    flex-shrink: 0;
}

/* Mobile responsive adjustments for share modal */
@media (max-width: 768px) {
    .share-icons-container {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 12px !important;
        padding: 10px !important;
    }

    .share-icons-container .share-icon {
        flex: 0 0 auto !important;
        min-width: 45px;
        max-width: 50px;
    }

    .share-icons-container .share-icon i {
        font-size: 1.5rem !important;
    }

    #shareModal .modal-body {
        padding: 15px 10px !important;
        overflow: hidden !important;
    }

    #shareModal .modal-dialog {
        margin: 10px;
        max-width: 95% !important;
    }

    #shareModal .share-icons-container {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Mobile small screens */
@media (max-width: 576px) {
    .share-icons-container {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
        padding: 10px 5px !important;
    }

    .share-icons-container .share-icon {
        flex: 0 0 auto !important;
        min-width: 40px;
        max-width: 45px;
    }

    .share-icons-container .share-icon i {
        font-size: 1.4rem !important;
    }
}

/* Very small screens - ensure icons still fit in row */
@media (max-width: 400px) {
    .share-icons-container {
        gap: 3px !important;
        padding: 0 3px !important;
    }

    .share-icons-container .share-icon i {
        font-size: 1.2rem !important;
    }
}

#episodeSearch {
    margin-bottom: 0;
    background: #6a0dad;
    color: #fff;
}

#episodeSearch::placeholder {
    color: #fff;
    opacity: 1;
    /* ensures it's fully visible */
}

/* static live radio icon css */
.play-btn-wrapper {
    position: fixed;
    top: 5px;
    right: 8px;
    text-align: center;
    z-index: 9999;
}

.play-btn {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    animation: pulse 2s infinite ease-in-out;
    transition: transform 0.3s ease;
}

.play-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.play-btn:hover img {
    transform: scale(1.1);
}

.play-title {
    margin-top: -10px;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    text-align: center;
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite ease-in-out;
}

.floating-whatsapp-btn:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: #fff;
    text-decoration: none;
}

.floating-whatsapp-btn:active {
    transform: scale(0.95);
}

/* WhatsApp pulse animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
    .floating-whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .floating-whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 10px;
        right: 10px;
    }
}

/* Continuous pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(106, 13, 173, 0.6);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(106, 13, 173, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(106, 13, 173, 0);
    }
}

/* download app icon css */
.download-app-btn {
    position: fixed;
    top: 10px;
    right: 8%;
    display: flex;
    flex-direction: column;
    /* icon on top, text below */
    align-items: center;
    justify-content: center;
    background: #3b0b3b;
    color: #fff;
    text-decoration: none;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 1px 5px #fff;
    z-index: 9999;
    animation: floatUpDown 2s ease-in-out infinite;
    transition: transform 0.3s ease, background 0.3s ease;
    text-align: center;
    border: 1px solid #fff;
}

.download-app-btn i {
    font-size: 20px;
    margin-bottom: 4px;
}

.download-app-btn span {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.1;
}

.download-app-btn:hover {
    background: #5a0f66;
    transform: scale(1.05);
}

/* Floating animation */
@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Modal styling */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.modal-content h5 {
    color: #3b0b3b;
    font-weight: 700;
}

.modal-content p {
    color: #555;
    font-size: 15px;
}

.btn-close {
    background: none;
    filter: invert(0.5);
    opacity: 0.7;
    transition: 0.2s ease;
    font-size: 12px;
}

.btn-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.download-icon {
    color: #fff;
    text-decoration: none;
    background: #3b0b3b;
    padding: 5px 10px;
    border-radius: 5px;
}

.topbar-icons {
    gap: 20px;
    font-size: 30px;
}

.topbar-icons a {
    color: #fff !important;
}

.brand>a {
    margin-left: 0;
}

.tagcontent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    text-align: left;
}

.text-blue {
    color: #4a0f44;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
}

/* Ensures perfect alignment and wrapping on small screens */
@media (max-width: 768px) {
    .leftBar {
        display: none;
    }

    .d-flex.align-items-center {
        flex-direction: column;
        text-align: center;
        padding-top: 10px;
    }

    .tagcontent {
        justify-content: center;
        text-align: center;
    }

    .text-blue {
        font-size: 18px;
    }
}

.btn-close-custom {
    position: absolute;
    top: 10px;
    right: 15px;
    background: #a2008b;
    /* your theme color */
    border: none;
    color: #fff;
    min-width: auto;
    width: auto;
    height: 32px;
    padding: 0 10px;
    border-radius: 16px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

.btn-close-custom i {
    font-size: 12px;
}

.btn-close-custom span {
    font-size: 11px;
    font-weight: 500;
}

.btn-close-custom:hover {
    background: #fff;
    color: #a2008b;
    border: 1px solid #a2008b;
}

.btn-close-custom.text-white span {
    color: #fff;
}

.btn-close-custom.text-white:hover span {
    color: #a2008b;
}

#mediaModal {
    z-index: 10001; /* Above audio bar */
}

#mediaModal .modal-backdrop {
    z-index: 10000; /* Above audio bar, below modal */
}

#mediaModal .modal-content {
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10001;
}

#mediaModal .modal-header {
    padding: 0.75rem 1rem;
    background: #f8f9fa;
}

#mediaModal .modal-body {
    background-color: #fff;
}

#closeMediaModal {
    min-width: auto;
    width: auto;
    height: 32px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.2s ease;
    font-size: 12px;
}

#closeMediaModal i {
    font-size: 12px;
}

#closeMediaModal span {
    font-size: 11px;
    font-weight: 500;
}

#closeMediaModal:hover {
    background-color: #dc3545;
    color: #fff;
    border-color: #dc3545;
}

#mediaContainer audio {
    width: 100%;
    outline: none;
}

#mediaContainer iframe {
    border-radius: 0.5rem;
}

/* floating bottom audio player - Custom Design */
#audioPlayerBar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #8A2BE2, #7B1FA2);
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(138, 43, 226, 0.3);
    border-radius: 10px;
    /* Hidden by default - will be shown when audio plays */
    display: none;
}

/* Show audio bar when d-none is removed */
#audioPlayerBar:not(.d-none) {
    display: block !important;
    visibility: visible !important;
}

.audio-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    gap: 12px;
    position: relative;
}

/* Left Section: Album Art & Title */
.audio-left-section {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    min-width: 0;
}

.audio-album-art {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6A1B9A, #4A148C);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.audio-logo-text {
    color: #fff;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.audio-title-wrapper {
    display: flex;
    align-items: center;
    min-width: 0;
}

.audio-title {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

/* Center Section: Progress Bar & Time */
.audio-center-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 0;
    padding: 0 8px;
}

.audio-progress-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.audio-progress-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    transition: height 0.2s;
}

.audio-progress-bar:hover {
    height: 4px;
}

.audio-progress-fill {
    height: 100%;
    background: #fff;
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s;
}

.audio-progress-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.audio-progress-bar:hover .audio-progress-handle,
.audio-progress-bar:active .audio-progress-handle {
    opacity: 1;
}

/* Show handle on mobile when interacting */
@media (max-width: 768px) {
    .audio-progress-handle {
        opacity: 0.8;
        width: 14px;
        height: 14px;
    }

    .audio-progress-bar {
        height: 4px;
    }
}

.audio-time-display {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.audio-time {
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    opacity: 0.9;
}

/* Live stream indicator styling */
#audioDuration:contains("LIVE"),
#audioDuration[data-live="true"] {
    color: #ff4444;
    font-weight: 700;
    animation: live-pulse 2s infinite ease-in-out;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Alternative: Use JavaScript to add class when showing LIVE */
.audio-time.live-indicator {
    color: #ff4444;
    font-weight: 700;
    -webkit-animation: live-pulse 2s infinite ease-in-out;
    -moz-animation: live-pulse 2s infinite ease-in-out;
    animation: live-pulse 2s infinite ease-in-out;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@-webkit-keyframes live-pulse {
    0%, 100% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
    50% {
        opacity: 0.7;
        -webkit-transform: scale(1.05);
    }
}

@-moz-keyframes live-pulse {
    0%, 100% {
        opacity: 1;
        -moz-transform: scale(1);
    }
    50% {
        opacity: 0.7;
        -moz-transform: scale(1.05);
    }
}

@keyframes live-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

/* Right Section: Controls & Close */
.audio-right-section {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 4px;
}

.audio-control-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s;
    padding: 0;
}

.audio-control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.audio-control-btn:active {
    transform: scale(0.95);
}

.audio-play-pause {
    width: 36px;
    height: 36px;
    font-size: 18px;
}

.audio-close-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 12px;
    min-width: auto;
    width: auto;
    height: 28px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    border-radius: 14px;
    transition: all 0.2s;
    margin-left: 4px;
    background: #3b0b3b;
}

.audio-close-btn i {
    font-size: 12px;
}

.audio-close-btn span {
    font-size: 11px;
    font-weight: 500;
}

.audio-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Hide the actual audio element */
#globalAudioPlayer {
    display: none;
}

/* Mobile responsive tweaks */
@media (max-width: 768px) {
    #audioPlayerBar {
        z-index: 10000;
        border-radius: 10px;
        margin-bottom: 10px;
        width: 93%;
        left: 12px;
    }

    .audio-bar-inner {
        padding: 10px 12px;
        gap: 10px;
    }

    .audio-album-art {
        width: 45px;
        height: 45px;
    }

    .audio-logo-text {
        font-size: 16px;
    }

    .audio-title {
        font-size: 13px;
        max-width: 100px;
    }

    .audio-control-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .audio-play-pause {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    .audio-close-btn {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .audio-bar-inner {
        padding: 8px 10px;
        gap: 8px;
    }

    .audio-album-art {
        width: 40px;
        height: 40px;
    }

    .audio-logo-text {
        font-size: 14px;
    }

    .audio-title {
        font-size: 12px;
        max-width: 80px;
    }

    .audio-center-section {
        padding: 0 6px;
    }

    .audio-time {
        font-size: 10px;
    }

    .audio-control-btn {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .audio-play-pause {
        width: 32px;
        height: 32px;
        font-size: 15px;
    }

    .audio-close-btn {
        min-width: auto;
        width: auto;
        height: 24px;
        padding: 0 5px;
        font-size: 11px;
    }

    .audio-close-btn span {
        font-size: 9px;
    }
}


.pagination {
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 4px;
}

.page-item .page-link {
    color: #333;
    border-radius: 50%;
    margin: 0px 3px;
    height: 40px;
    width: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    background-color: #fff;
    font-weight: 500;
}

.page-item .page-link:hover {
    background-color: #f5f5f5;
    border-color: #6a0dad;
    color: #6a0dad;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(106, 13, 173, 0.2);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, #6a0dad, #4b0c6b);
    border-color: #6a0dad;
    color: #fff;
    box-shadow: 0 4px 12px rgba(106, 13, 173, 0.4);
    font-weight: 600;
}

.page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f5f5f5;
    border-color: #e0e0e0;
    color: #999;
}

/* Enabled navigation buttons - make previous and next look the same when active */
.page-item.enabled-nav .page-link {
    background-color: #fff;
    border: none;
    color: #000;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.page-item.enabled-nav .page-link:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

/* Tablet and smaller screens */
@media (max-width: 768px) {
    .pagination {
        margin-top: 15px;
        gap: 3px;
    }

    .page-item .page-link {
        height: 36px;
        width: 36px;
        margin: 0px 2px;
        font-size: 14px;
    }
}

/* Mobile devices - Modern Design (Image-based) */
@media (max-width: 576px) {
    .pagination {
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 16px 20px;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        gap: 0;
        background: #f8f8f8;
        border-radius: 28px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
        display: flex;
        width: 100%;
        max-width: 100%;
    }

    .page-item {
        margin: 0;
        flex: 1;
    }

    /* Hide page numbers on mobile, show only prev/next */
    .page-item:not(:first-child):not(:last-child) {
        display: none;
    }

    /* Previous button - left side */
    .page-item:first-child {
        text-align: left;
    }

    .page-item:first-child .page-link {
        background: transparent;
        border: none;
        color: #999;
        font-size: 15px;
        font-weight: 500;
        padding: 0;
        height: auto;
        width: auto;
        min-width: auto;
        border-radius: 0;
        box-shadow: none;
        display: flex;
        align-items: center;
        gap: 6px;
        justify-content: flex-start;
        line-height: 1.5;
    }

    /* Enabled Previous button - same style as Next button */
    .page-item:first-child.enabled-nav .page-link {
        background: #fff;
        border: none;
        color: #000;
        font-size: 15px;
        font-weight: 700;
        padding: 10px 16px;
        height: auto;
        width: auto;
        min-width: auto;
        border-radius: 12px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        gap: 6px;
        justify-content: flex-start;
        transition: all 0.2s ease;
        line-height: 1.5;
        vertical-align: middle;
    }

    .page-item:first-child.enabled-nav .page-link:hover {
        background: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transform: translateY(-1px);
    }

    /* Text span styling for Previous button */
    .page-item:first-child .page-link > span:not([aria-hidden="true"]) {
        display: inline-flex;
        align-items: center;
        line-height: 1.5;
        vertical-align: middle;
    }

    /* Arrow styling for Previous button - single icon */
    .page-item:first-child .page-link span[aria-hidden="true"] {
        font-size: 18px;
        color: #999;
        opacity: 0.6;
        display: inline-flex;
        align-items: center;
        line-height: 1;
        vertical-align: middle;
        margin: 0;
    }

    /* Enabled Previous button - icon and text styling */
    .page-item:first-child.enabled-nav .page-link {
        color: #000;
        font-weight: 700;
    }

    .page-item:first-child.enabled-nav .page-link span[aria-hidden="true"] {
        font-size: 18px;
        color: #000;
        font-weight: 700;
        opacity: 1;
        display: inline-flex;
        align-items: center;
        line-height: 1;
        vertical-align: middle;
        margin: 0;
    }

    .page-item:first-child.enabled-nav .page-link > span:not([aria-hidden="true"]) {
        color: #000;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        line-height: 1.5;
        vertical-align: middle;
    }

    /* Disabled previous button */
    .page-item:first-child.disabled .page-link {
        color: #ccc;
        opacity: 0.5;
        cursor: not-allowed;
    }

    .page-item:first-child.disabled .page-link span[aria-hidden="true"] {
        color: #ccc;
        opacity: 0.4;
    }

    .page-item:first-child.disabled .page-link > span:not([aria-hidden="true"]) {
        color: #ccc;
        opacity: 0.5;
    }

    /* Next button - right side */
    .page-item:last-child {
        text-align: right;
    }

    .page-item:last-child .page-link {
        background: #fff;
        border: none;
        color: #000;
        font-size: 15px;
        font-weight: 700;
        padding: 10px 16px;
        height: auto;
        width: auto;
        min-width: auto;
        border-radius: 12px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        gap: 6px;
        justify-content: flex-end;
        transition: all 0.2s ease;
        margin-left: auto;
        line-height: 1.5;
        vertical-align: middle;
    }

    /* Text span styling for Next button */
    .page-item:last-child .page-link > span:not([aria-hidden="true"]) {
        display: inline-flex;
        align-items: center;
        color: #000;
        font-weight: 700;
        line-height: 1.5;
        vertical-align: middle;
    }

    /* Arrow styling for Next button - single icon */
    .page-item:last-child .page-link span[aria-hidden="true"] {
        font-size: 18px;
        color: #000;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        line-height: 1;
        vertical-align: middle;
        margin: 0;
    }

    /* Hover effect for next button */
    .page-item:last-child .page-link:hover {
        background: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transform: translateY(-1px);
    }

    /* Disabled next button */
    .page-item:last-child.disabled .page-link {
        background: #f0f0f0;
        color: #ccc;
        box-shadow: none;
        cursor: not-allowed;
        opacity: 0.6;
        display: flex;
        align-items: center;
        gap: 6px;
        line-height: 1.5;
    }

    .page-item:last-child.disabled .page-link:hover {
        transform: none;
        box-shadow: none;
    }

    .page-item:last-child.disabled .page-link span[aria-hidden="true"] {
        color: #ccc;
        display: inline-flex;
        align-items: center;
        line-height: 1;
        vertical-align: middle;
        margin: 0;
    }

    .page-item:last-child.disabled .page-link > span:not([aria-hidden="true"]) {
        color: #ccc;
        opacity: 0.6;
        display: inline-flex;
        align-items: center;
        line-height: 1.5;
        vertical-align: middle;
    }

    /* Remove default page link styles */
    .page-item .page-link {
        border: none;
        background: transparent;
    }

    /* Ensure consistent vertical alignment for all pagination elements */
    .pagination {
        align-items: center;
    }

    .pagination .page-item {
        display: flex;
        align-items: center;
    }
}

/* Extra small mobile devices - Ultra Modern Design */
@media (max-width: 480px) {
    .pagination {
        margin-top: 16px;
        margin-bottom: 16px;
        padding: 14px 16px;
        border-radius: 24px;
    }

    .page-item:first-child .page-link {
        font-size: 14px;
        line-height: 1.5;
    }

    .page-item:first-child .page-link span[aria-hidden="true"] {
        font-size: 16px;
        line-height: 1;
    }

    .page-item:first-child.enabled-nav .page-link {
        font-size: 14px;
        padding: 8px 14px;
        border-radius: 10px;
        line-height: 1.5;
    }

    .page-item:first-child.enabled-nav .page-link span[aria-hidden="true"] {
        font-size: 16px;
        line-height: 1;
    }

    .page-item:first-child.enabled-nav .page-link > span:not([aria-hidden="true"]) {
        font-size: 14px;
        font-weight: 700;
        line-height: 1.5;
    }

    .page-item:last-child .page-link {
        font-size: 14px;
        padding: 8px 14px;
        border-radius: 10px;
        line-height: 1.5;
    }

    .page-item:last-child .page-link span[aria-hidden="true"] {
        font-size: 16px;
        line-height: 1;
    }

    .page-item:last-child .page-link > span:not([aria-hidden="true"]) {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Modern pagination container styles for mobile */
@media (max-width: 576px) {
    /* Pagination wrapper containers */
    .row .pagination,
    .col-12 .pagination {
        width: 100%;
    }

    /* Ensure pagination container has proper spacing */
    .d-flex.justify-content-center .pagination {
        width: 100%;
        max-width: 100%;
        justify-content: space-between;
    }

    /* Container with pagination - better spacing */
    section .row:last-child,
    .container .row:last-child {
        margin-bottom: 0;
    }

    /* Smooth scroll behavior for pagination area */
    .pagination {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
}

/* home about section */
.about-content {
    max-height: 8.5em;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.readMoreLink {
    color: #fff !important;
    text-decoration: none;
    font-size: 12px;
    background: #6a0dad;
    padding: 2px 5px;
    border-radius: 12px;
}

.accordion-button {
    padding: 5px;
    text-align: center;
    background: #6a0dad !important;
    color: #fff !important;
    border-radius: unset;
}

.about-content>p {
    font-size: 12px;
}

p.small {
    margin: 0;
}

.play-store {
    border: 1px solid #fff;
    padding: 2px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
}

.apple-store {
    border: 1px solid #fff;
    padding: 2px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
}

#aboutContent>ul {
    font-size: 12px;
}
/* ==============================
   📱 Tablet Responsive Styles
   ============================== */

/* Small Tablets (600px - 768px) - Portrait mode */
@media (min-width: 600px) and (max-width: 767px) {
    .tab-container {
        justify-content: center;
        align-items: center;
        padding: 0px !important;
        max-width: 100%;
    }

    .play-btn-wrapper {
        top: 15px;
        right: 15px;
        transform: scale(1.0);
    }

    .tabSec1Video {
        margin-top: 8px;
    }

    .tabSec1Info {
        text-align: center;
        padding-left: 10px;
        padding-right: 10px;
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 10px;
    }

    .tab-col {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .section3 {
        background: #4b0d51;
    }

    .section3 .store {
        text-align: center;
    }

    .section3 img {
        max-height: 100px;
    }

    .section3 .app-logo {
        text-align: center;
    }

    .section3 .app-logo .flex {
        justify-content: center;
    }

    .section3 .store p,
    .section3 .app-logo p {
        font-size: 16px;
    }

    .play-store,
    .apple-store {
        font-size: 14px;
        padding: 5px 10px;
    }

    /* Container adjustments */
    .container1 {
        margin: 10px 3%;
        padding: 0 12px;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .sidebar {
        order: 2;
        min-height: 300px;
        padding: 10px;
    }

    .main-content {
        order: 1;
        max-width: 100%;
        gap: 15px;
    }

    .row-head {
        padding: 4px 8px;
    }

    .row-head h4 {
        font-size: 13px;
    }

    .row-head .view-all {
        font-size: 10px;
        padding: 2px 8px;
    }

    .media-card img {
        height: 130px;
    }

    .media-card h4 {
        font-size: 14px;
    }

    .news-tabs-section {
        max-width: 100%;
        padding: 8px;
    }

    .news-item img {
        width: 85px;
        height: 65px;
    }

    .top-banner .app-mockup {
        max-width: 220px;
        height: 220px;
    }

    .banner-title {
        font-size: 18px;
    }

    .banner-subtitle {
        font-size: 15px;
    }

    .banner-desc {
        font-size: 13px;
    }

    .banner-icons {
        gap: 30px;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .icon-text {
        font-size: 12px;
    }

    .logo-box {
        width: 120px;
        height: 65px;
    }

    .icon-size {
        font-size: 32px;
    }

    .ad-box img {
        height: 150px;
    }

    .page-footer {
        padding: 20px 15px;
        font-size: 11px;
    }

    .owl-carousel .owl-nav {
        width: 90%;
        left: 5%;
    }

    .download-app-btn {
        width: 70px;
        height: 70px;
        right: 12%;
    }

    .media-modal-content {
        width: 90%;
        padding: 10px;
    }

    #mediaContainer iframe {
        height: 350px;
    }

    .page-item .page-link {
        height: 36px;
        width: 36px;
        font-size: 13px;
    }

    .blog-card img {
        height: 190px;
    }

    .blog-title {
        font-size: 16px;
    }

    .episodeCard {
        height: 45px;
        width: 45px;
        font-size: 24px;
    }
}

/* iPad Mini and 760px viewport Specific (760px - 768px) */
@media (min-width: 760px) and (max-width: 768px) {
    /* Header fixes */
    .topbar .container-fluid {
        padding: 0 10px;
    }

    .logo-box {
        width: 140px;
        height: 75px;
    }

    .icon-size {
        font-size: 32px;
    }

    /* Top banner - expand content */
    .top-banner {
        padding: 20px 10px;
    }

    .top-banner .container-fluid {
        max-width: 100%;
        padding: 0 5px;
    }

    .top-banner .row {
        max-width: 100%;
        margin: 0;
    }

    .top-banner .app-mockup {
        max-width: 280px;
        height: 280px;
    }

    .banner-title {
        font-size: 24px;
    }

    .banner-subtitle {
        font-size: 18px;
    }

    .banner-desc {
        font-size: 16px;
    }

    /* Banner icons - better spacing */
    .banner-icons {
        gap: 30px;
        justify-content: center;
        flex-wrap: wrap;
        max-width: 100%;
        padding: 0 10px;
    }

    .icon-circle {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }

    .icon-text {
        font-size: 14px;
    }

    /* Container adjustments - reduce margins to use more space */
    .container1 {
        margin: 10px 0.5%;
        padding: 0 8px;
        grid-template-columns: 230px 1fr;
        gap: 12px;
        max-width: 100%;
        width: calc(100% - 1%);
        box-sizing: border-box;
    }

    .main-content {
        max-width: 100%;
        width: 100%;
        overflow: hidden;
    }

    /* Ensure full width usage */
    .container-fluid {
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

    section.container {
        max-width: 100%;
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Tab container */
    .tab-container {
        max-width: 100%;
        padding: 0 10px !important;
        margin: 0;
    }

    /* Fix carousel navigation arrows - prevent overflow */
    .owl-carousel .owl-nav {
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
    }

    .owl-carousel .owl-nav button.owl-prev {
        margin-left: 0;
        left: 0;
    }

    .owl-carousel .owl-nav button.owl-next {
        margin-right: 0;
        right: 0;
    }

    /* Section rows - reduce padding */
    .section-row {
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }

    .bg-card {
        padding: 0;
        overflow: hidden;
    }

    /* Row head - ensure it fits */
    .row-head {
        padding: 6px 12px;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    /* Media cards container - prevent overflow */
    .owl-carousel {
        padding: 0 10px;
        overflow: hidden;
        position: relative;
    }

    .owl-carousel .owl-stage-outer {
        overflow: hidden;
        padding: 0;
        margin: 0;
    }

    .owl-carousel .item {
        padding: 0 5px;
    }

    /* Specific carousel fixes */
    .news-owl,
    .podcast-owl {
        padding: 0 15px;
        margin: 0;
    }

    .news-owl .owl-nav,
    .podcast-owl .owl-nav {
        width: calc(100% - 30px);
        left: 15px;
    }

    /* Ensure carousel doesn't extend beyond container */
    .bg-card .owl-carousel {
        margin: 0;
        padding: 10px 0;
    }

    /* Play button wrapper - fix position */
    .play-btn-wrapper {
        top: 15px;
        right: 15px;
        transform: scale(1.0);
        z-index: 9999;
    }

    .play-btn {
        width: 55px;
        height: 55px;
    }

    .play-title {
        font-size: 12px;
        margin-top: -8px;
        white-space: nowrap;
    }

    /* Ensure download app button doesn't overlap */
    .download-app-btn {
        right: 10%;
        width: 75px;
        height: 75px;
    }

    /* Fix carousel dots overflow */
    .owl-carousel .owl-dots {
        margin: 10px 0;
        padding: 0 10px;
        text-align: center;
    }

    /* Media cards - ensure they fit */
    .media-card {
        max-width: 100%;
        margin: 0 auto;
    }

    /* News tabs section */
    .news-tabs-section {
        max-width: 100%;
        padding: 10px;
        margin: 0;
    }

    /* Sidebar adjustments */
    .sidebar {
        min-height: 350px;
        padding: 12px;
        margin: 0;
    }

    /* Remove excessive margins from sections */
    .section-row .bg-purple,
    .section-row .bg-blue {
        padding: 8px;
    }

    /* Ensure no horizontal scroll */
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .container-fluid,
    .container {
        overflow-x: hidden;
        max-width: 100%;
    }

    /* Fix all row elements */
    .row {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .row > * {
        padding-left: 8px;
        padding-right: 8px;
    }

    /* Ad box adjustments */
    .ad-box {
        margin: 20px 0;
        padding: 0 5px;
    }

    .ad-box img,
    .ad-box video {
        max-width: 100%;
        height: auto;
    }

    /* Footer adjustments */
    .page-footer {
        padding: 20px 15px;
        font-size: 12px;
        margin: 0;
    }

    /* Row head adjustments */
    .row-head {
        padding: 6px 12px;
        max-width: 100%;
    }

    .row-head h4 {
        font-size: 15px;
    }

    .row-head .view-all {
        font-size: 12px;
        padding: 3px 12px;
    }

    /* Media cards */
    .media-card {
        max-width: 100%;
    }

    .media-card img {
        height: 160px;
    }

    /* News tabs */
    .news-tabs-section {
        max-width: 100%;
        padding: 10px;
    }

    /* Sidebar */
    .sidebar {
        min-height: 350px;
        padding: 12px;
    }

    .news-scoop h3 {
        font-size: 13px;
        padding: 15px;
    }

    /* Ad boxes */
    .ad-box img {
        height: 170px;
    }

    /* Footer */
    .page-footer {
        padding: 25px 20px;
        font-size: 12px;
    }
}

/* Standard Tablets (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {

    .tab-container {
        justify-content: space-between;
        align-items: center;
        padding: 0px !important;
        max-width: 780px;
    }

    .play-btn-wrapper {
        top: 20px;
        right: 20px;
        transform: scale(1.1);
    }

    .tabSec1Video{
        margin-top: 10px;
    }
    .tabSec1Info {
        text-align: left;
        padding-left: 15px;
        padding-right: 15px;
        flex: 0 0 60%;
        max-width: 60%;
        margin-top: 0px;
    }
}

/* Additional iPad Mini fixes for banner layout */
@media (min-width: 768px) and (max-width: 768px) {
    .tabSec1Video {
        flex: 0 0 40%;
        max-width: 40%;
        margin-top: 0;
    }

    .tabSec1Info {
        flex: 0 0 60%;
        max-width: 60%;
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .top-banner .row {
        justify-content: center;
        align-items: center;
    }

    /* Ensure content doesn't get too narrow */
    .col-md-3.col-lg-4.tabSec1Video,
    .col-md-5.col-lg-5.tabSec1Info {
        flex: 0 0 auto;
        max-width: none;
    }

    .tab-col {
        flex: 0 0 33%;
        max-width: 50%;
    }

    .section3 {
        background: #4b0d51;
    }

    .section3 .store {
        text-align: left;
    }

    .section3 img {
        max-height: 110px;
        display: block;
        margin: 0 auto;
    }

    .section3 .app-logo {
        text-align: right;
    }

    .section3 .app-logo .flex {
        justify-content: flex-end;
    }

    .section3 .app-icon {
        width: 36px;
        height: 36px;
        margin-left: 6px;
    }

    .section3 .store p,
    .section3 .app-logo p {
        font-size: 17px;
    }

    .play-store,
    .apple-store {
        font-size: 15px;
        padding: 6px 12px;
    }

    /* Container adjustments */
    .container1 {
        margin: 10px 2%;
        padding: 0 15px;
        grid-template-columns: 240px 1fr;
        gap: 15px;
    }

    /* Sidebar adjustments */
    .sidebar {
        min-height: 350px;
        padding: 10px;
    }

    .news-scoop h3 {
        font-size: 13px;
        padding: 15px;
        margin-bottom: 40px;
    }

    .news-scoop a {
        font-size: 12px;
    }

    /* Main content */
    .main-content {
        max-width: 100%;
        gap: 18px;
    }

    /* Row header */
    .row-head {
        padding: 4px 8px;
        max-width: 100%;
    }

    .row-head h4 {
        font-size: 14px;
    }

    .row-head .view-all {
        font-size: 11px;
        padding: 2px 10px;
    }

    /* Media cards */
    .media-card {
        max-width: 100%;
    }

    .media-card img {
        height: 140px;
    }

    .media-card h4 {
        font-size: 15px;
    }

    .media-card p {
        font-size: 12px;
    }

    /* News tabs section */
    .news-tabs-section {
        max-width: 100%;
        padding: 8px;
    }

    .news-item {
        gap: 8px;
        padding: 8px;
    }

    .news-item img {
        width: 90px;
        height: 70px;
    }

    .news-info h4 {
        font-size: 14px;
    }

    .news-info p {
        font-size: 12px;
    }

    /* Banner adjustments */
    .top-banner .app-mockup {
        max-width: 250px;
        height: 250px;
    }

    .banner-title {
        font-size: 20px;
    }

    .banner-subtitle {
        font-size: 16px;
    }

    .banner-desc {
        font-size: 14px;
    }

    .banner-icons {
        gap: 40px;
    }

    .icon-circle {
        width: 65px;
        height: 65px;
        font-size: 24px;
    }

    .icon-text {
        font-size: 13px;
    }

    /* Logo adjustments */
    .logo-box {
        width: 130px;
        height: 70px;
    }

    .icon-size {
        font-size: 35px;
    }

    /* Ad box */
    .ad-box img {
        height: 160px;
    }

    /* Footer */
    .page-footer {
        padding: 25px 20px;
        font-size: 12px;
    }

    /* Owl carousel */
    .owl-carousel .owl-nav {
        width: 92%;
        left: 4%;
    }

    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        width: 34px;
        height: 34px;
        font-size: 17px;
    }

    /* Download app button */
    .download-app-btn {
        width: 75px;
        height: 75px;
        right: 10%;
    }

    .download-app-btn i {
        font-size: 18px;
    }

    .download-app-btn span {
        font-size: 10px;
    }

    /* Modal adjustments */
    .media-modal-content {
        width: 85%;
        padding: 12px;
    }

    #mediaContainer iframe {
        height: 400px;
    }

    /* Pagination */
    .page-item .page-link {
        height: 38px;
        width: 38px;
        font-size: 14px;
    }

    /* Blog cards */
    .blog-card img {
        height: 200px;
    }

    .blog-title {
        font-size: 17px;
        min-height: 40px;
    }

    .blog-meta {
        font-size: 12px;
    }

    .blog-desc {
        font-size: 13px;
        min-height: 40px;
    }

    /* Card news */
    .card-news-image {
        width: 120px;
        height: 80px;
    }

    .card-news-title {
        font-size: 11px;
    }

    .card-news-meta {
        font-size: 9px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .testimonial-author {
        font-size: 12px;
    }

    /* Episode page buttons */
    .episodeBtn {
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .episodeCard {
        height: 48px;
        width: 48px;
        font-size: 26px;
    }

    .media-wrap {
        gap: 4px;
    }

    .btn-label {
        font-size: 11px;
    }

    /* Blog grid adjustments */
    .row.g-4 {
        gap: 1.5rem !important;
    }

    /* Section spacing */
    .section-row {
        margin-bottom: 18px;
    }

    /* Container adjustments for episode pages */
    .container.my-5 {
        padding: 0 20px;
    }
}

/* Large Tablets (1024px - 1366px) - iPad Pro, Large Android tablets */
@media (min-width: 1024px) and (max-width: 1366px) {
    .tab-container {
        justify-content: space-between;
        align-items: center;
        padding: 0px !important;
        max-width: 950px;
    }

    .play-btn-wrapper {
        top: 15px;
        right: 25px;
        transform: scale(1.15);
    }

    .tabSec1Video {
        margin-top: 12px;
    }

    .tabSec1Info {
        text-align: left;
        padding-left: 20px;
        padding-right: 20px;
        flex: 0 0 65%;
        max-width: 65%;
    }

    .tab-col {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .section3 .store p,
    .section3 .app-logo p {
        font-size: 18px;
    }

    .play-store,
    .apple-store {
        font-size: 16px;
        padding: 7px 15px;
    }

    /* Container adjustments */
    .container1 {
        margin: 10px 2.5%;
        padding: 0 20px;
        grid-template-columns: 260px 1fr;
        gap: 20px;
    }

    .sidebar {
        min-height: 380px;
        padding: 12px;
    }

    .news-scoop h3 {
        font-size: 14px;
        padding: 18px;
        margin-bottom: 50px;
    }

    .news-scoop a {
        font-size: 13px;
    }

    .main-content {
        max-width: 100%;
        gap: 20px;
    }

    .row-head {
        padding: 5px 10px;
    }

    .row-head h4 {
        font-size: 15px;
    }

    .row-head .view-all {
        font-size: 12px;
        padding: 3px 12px;
    }

    .media-card img {
        height: 150px;
    }

    .media-card h4 {
        font-size: 16px;
    }

    .media-card p {
        font-size: 13px;
    }

    .news-tabs-section {
        max-width: 100%;
        padding: 10px;
    }

    .news-item {
        gap: 10px;
        padding: 10px;
    }

    .news-item img {
        width: 100px;
        height: 75px;
    }

    .news-info h4 {
        font-size: 15px;
    }

    .top-banner .app-mockup {
        max-width: 280px;
        height: 280px;
    }

    .banner-title {
        font-size: 22px;
    }

    .banner-subtitle {
        font-size: 17px;
    }

    .banner-desc {
        font-size: 15px;
    }

    .banner-icons {
        gap: 50px;
    }

    .icon-circle {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }

    .icon-text {
        font-size: 14px;
    }

    .logo-box {
        width: 140px;
        height: 75px;
    }

    .icon-size {
        font-size: 38px;
    }

    .ad-box img {
        height: 170px;
    }

    .page-footer {
        padding: 30px 25px;
        font-size: 13px;
    }

    .owl-carousel .owl-nav {
        width: 94%;
        left: 3%;
    }

    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .download-app-btn {
        width: 80px;
        height: 80px;
        right: 8%;
    }

    .download-app-btn i {
        font-size: 20px;
    }

    .download-app-btn span {
        font-size: 11px;
    }

    .media-modal-content {
        width: 80%;
        padding: 15px;
    }

    #mediaContainer iframe {
        height: 450px;
    }

    .page-item .page-link {
        height: 40px;
        width: 40px;
        font-size: 15px;
    }

    .blog-card img {
        height: 210px;
    }

    .blog-title {
        font-size: 18px;
        min-height: 42px;
    }

    .blog-meta {
        font-size: 13px;
    }

    .blog-desc {
        font-size: 14px;
        min-height: 42px;
    }

    .card-news-image {
        width: 130px;
        height: 85px;
    }

    .card-news-title {
        font-size: 12px;
    }

    .card-news-meta {
        font-size: 10px;
    }

    .testimonial-card {
        padding: 22px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .testimonial-author {
        font-size: 13px;
    }

    .episodeCard {
        height: 50px;
        width: 50px;
        font-size: 28px;
    }

    .container.my-5 {
        padding: 0 25px;
    }
}
/* blog card css */
.blog-card {
        border-radius: 14px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 4px 14px rgba(0,0,0,0.08);
        transition: all .3s ease;
    }

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }

    .blog-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        transition: all .3s ease;
    }

    .blog-card:hover img {
        transform: scale(1.05);
    }

    .category-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        background: #2196f3;
        color: #fff;
        padding: 4px 10px;
        font-size: 12px;
        border-radius: 20px;
        font-weight: 600;
    }

    .blog-title {
        font-size: 18px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 10px;
        line-height: 1.4;
        min-height: 45px;
    }

    .blog-meta {
        font-size: 13px;
        color: #6c757d;
        margin-bottom: 10px;
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .blog-meta i {
        color: #2196f3;
        margin-right: 4px;
    }

    .blog-desc {
        color: #444;
        font-size: 14px;
        line-height: 1.5;
        min-height: 45px;
    }

    .view-btn {
        display: inline-block;
        margin-top: 12px;
        color: #2196f3;
        font-weight: 600;
        text-decoration: none;
        transition: .3s;
    }

    .view-btn:hover {
        text-decoration: underline;
    }
/* mobile css - only for phones, not iPad mini */
@media (max-width: 767px) {
    .top-banner .row {
        flex-direction: row !important;
        display: flex !important;
    }

    .tabSec1Video, .tabSec1Info {
        width: 50% !important;
        margin: 0;
    }

    .tabSec1Video video {
        width: 100%;
        height: auto;
    }

    .tabSec1Info {
        text-align: left;
    }
}
@media (max-width: 767px) {
    .banner-icons {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        gap: 5px !important;
        width: 100%;
        padding: 1px 0;
    }

    .banner-icons .icon-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: auto;
        margin: 0 !important;
    }
    .icon-text {
        /* display:none; */
        margin: 0px;
    }
    .icon-circle {
    width: 35px;
    height: 35px;
    margin-bottom: 0;
    font-size: 20px;
  }
}
.section3 {
  background: #4e0d55;
}

