/* ==============================
   🌈 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 */
@media (max-width: 768px) {
    .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: 28px;
    color: red;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
    /*! 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;
}

.episodeBtn {
    border-radius: 25px;
}

.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;
}

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

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

/* share icon css */
.share-icon {
    text-decoration: none;
    transition: transform 0.2s ease;
}

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

#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;
}

/* 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;
}

.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;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

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

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

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

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

#closeMediaModal {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

#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 */
#audioPlayerBar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ddd;
    z-index: 9999; /* ensures it stays above other content */
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

.audio-bar-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 8px 12px;
    gap: 10px;
}

.audio-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.audio-center audio {
    width: 100%;
    max-width: 280px;
}

.audio-right {
    display: flex;
    justify-content: flex-end;
}

/* optional: small responsive tweak */
@media (max-width: 576px) {
    .audio-bar-inner {
        grid-template-columns: 1fr auto 1fr;
        gap: 6px;
        padding: 6px 8px;
    }

    .audio-center audio {
        max-width: 180px;
    }
}


.pagination {
    justify-content: center;
    margin-top: 20px;
}

.page-item .page-link {
    color: #333;
    border-radius: 50%;
    margin: 0 3px;
}

.page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
}

/* 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;
}
/* css for tablet */
@media (min-width: 768px) 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;
    }

    .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;
    }
}
/* 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 */
@media (max-width: 768px) {
    .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: 768px) {
    .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;
  }
}

