/* ===== Style Block 1 ===== */
#google-signin {
    background: #E9F1FF;
    height: 40px;
    line-height: 10px;
    color: #000;
    margin-top: 10px;
}

.custom-login {
    width: 600px;
}

@media screen and (max-width: 768px) {
    .custom-login {
        width: auto;
        box-sizing: border-box;
    }
}

i#reset-btn {
    cursor: pointer;
}

i#forwardBtn {
    margin-inline: 15px;
    cursor: pointer;
}

i#rewindBtn {
    margin-inline: 15px;
    cursor: pointer;
}

i#random {
    cursor: pointer;
}

.pricing-header h5 {
    font-size: 22px !important;
}

/* Mobile Responsive Styles */
@media (max-width: 767px) {
    .pricing-item {
        width: auto !important;
    }
}

.pricing-feature ul {
    padding-left: 1rem;
    list-style-type: none;
}

.pricing-feature li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
    position: relative;
}

.pricing-feature li i {
    color: #259b9c;
    margin-right: 8px;
}

.view-more-tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip-trigger:hover+.tooltip-content,
.tooltip-content:hover {
    display: block;
}

.tooltip-content {
    display: none;
    position: absolute;
    left: 0;
    bottom: 100%;
    /* Appear above the trigger */
    margin-bottom: 10px;
    /* Gap between trigger and tooltip */
    z-index: 10;
    background-color: #259b9c;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    width: 270px;
    font-size: 13px;
    border-radius: 6px;
    white-space: normal;
}

/* Show tooltip on hover */
.tooltip-wrapper:hover .tooltip-content {
    display: block;
}

.story-marquee-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-top: 2px solid #e5e5e5;
    border-bottom: 2px solid #e5e5e5;
    padding: 10px 20px;
    gap: 10px;
    overflow: hidden;
}

.story-marquee {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}

.story-track {
    display: inline-block;
    animation: story-scroll 20s linear infinite;
}

.story-text {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Segoe UI', sans-serif;
    color: #259b9c;
    padding-left: 100%;
}

@keyframes story-scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

div:where(.swal2-container) h2:where(.swal2-title) {
    font-family: "Roboto", sans-serif;
}

.main-responsive-nav .main-responsive-menu.mean-container .navbar-nav {
    height: 100%;
}

a {
    text-decoration: none !important;
}

.app-footer {
    background-color: #343a40;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    bottom: 0;
    z-index: 1100 !important;
    position: fixed;
    width: 100%;
    padding: 10px 10px;
    box-sizing: border-box;
}

.required {
    color: red;
    font-weight: bold;
    margin-left: 5px;
}

/* iPads in landscape orientation */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .main-banner-item {
        height: 35vh !important;
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
}

/* iPads in both portrait and landscape orientations */
@media (min-width: 768px) and (max-width: 1024px) {
    .main-banner-item {
        height: 80vh !important;
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
}

/* iPads in portrait orientation */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .main-banner-item {
        height: 35vh !important;
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
}


.progress {
    background-color: #fff !important;
}

/* Make sure the container allows the dot to be visible outside */
.progress {
    position: relative;
    overflow: visible !important;
    /* important if Bootstrap sets overflow:hidden */
    border-radius: 8px;
    /* adjust to match your design */
    background: #e9ecef;
    /* track color – change if needed */
}

/* Your filled bar */
.progress-bar {
    background-color: #259b9c !important;
    position: relative;
    overflow: visible !important;
}

/* The dot – always stays at the very end of the TRACK, not the fill */
.progress::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -8px;
    /* distance from the right edge of the track */
    width: 16px;
    height: 16px;
    background-color: #259b9c;
    border: 4px solid #ffffff;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

/* Optional: make the dot follow the fill when progress < 100% (more advanced) */
.progress-bar::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -8px;
    width: 16px;
    height: 16px;
    background-color: #259b9c;
    border: 4px solid #ffffff;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    z-index: 11;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Hide the moving dot when progress reaches 100% (optional – remove if you don’t want this) */
.progress-bar[aria-valuenow="100"]::after,
.progress-bar.rounded-pill[style*="100%"]::after {
    opacity: 0;
}

.progress-bar {
    background-color: #259b9c !important;
}

.progress-bar-container {
    width: 100%;
    margin-bottom: 10px;
}

.song-info img {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 5px;
}

.song-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.song-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 0.5;
    gap: 15px;
}

.play-button-custom {
    position: absolute;
    width: 48px;
    height: 48px;
    line-height: 48px;
    background: var(--theme-color);
    color: var(--color-white);
    border-radius: 50px;
    text-align: center;
    font-size: 20px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: var(--box-shadow);
    z-index: 1;
}

i.fas.fa-play:hover {
    color: #fff;
}

.play-button-custom i::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: var(--theme-color);
    border-radius: 50px;
    animation: ripple-wave 1s linear infinite;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all 0.5s ease-in-out;
}

.volume-control {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
}

.menu-icons {
    cursor: pointer;
}

.volume-control .volume-slider {
    position: absolute;
    bottom: 36px;
    right: 4px;
    background: #2c3136;
    border-radius: 8px;
    padding: 15px;
    display: none;
    z-index: 10000;
}

.vertical-slider {
    height: 100px;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    position: relative;
    border-radius: 10px;
}

.slider-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    border-radius: 10px;
    transition: height 0.1s ease;
}

.slider-thumb {
    width: 16px;
    height: 4px;
    background-color: white;
    position: absolute;
    left: -7px;
    border-radius: 4px;
    cursor: pointer;
    z-index: 2;
}

.vertical-range {
    transform: rotate(-90deg);
    transform-origin: center;
    position: absolute;
    height: 2px;
    width: 100px;
    left: -49px;
    top: 49px;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.volume-bridge {
    position: absolute;
    width: 30px;
    height: 40px;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
}

.expand-audio {
    color: #fff;
    position: fixed;
    bottom: 0px;
    left: -5px;
    padding: 15px !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    background-color: #259b9c;
    color: #ffffff;
    z-index: 1000;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    animation: slide-in 0.3s ease-in-out;
}

.expand-audio:hover {
    background-color: #B1966B;
    /* transform: translateX(5px); */
}

.expanded-tab {
    position: fixed;
    bottom: 65px;
    left: 0;
    width: 100%;
    height: 345px;
    background-color: #343a40db;
    color: white;
    display: none;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 3;
    padding: 20px;
}

.expanded-tab.active {
    display: flex;
}

.expanded-tab .left-section {
    flex: 0.3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    align-content: center;
    justify-content: center;
}

.expanded-tab .left-section img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
}

.who-we-are-image {
    margin-bottom: 0px !important;
}

.expanded-tab .right-section {
    flex: 0.7;
    margin-left: 10px;
    max-height: 240px;
}

.expand-audio i {
    font-size: 24px;
}

.expanded-tab .queue-container {
    max-height: 240px;
    overflow-y: auto;
}

.expanded-tab .queue-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #fff;
    justify-content: space-between;
}

.expanded-tab .queue-item:last-child {
    border-bottom: none;
}

.expanded-tab .queue-item img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    margin-right: 10px;
}

.expanded-tab .queue-item .song-info {
    flex-grow: 1;
}

.expanded-tab .queue-item .song-title {
    font-size: 14px;
    flex-grow: 0.5;
    font-weight: 500;
    color: #f8f9fa;
}

.expanded-tab .queue-item .song-time {
    font-size: 14px;
    color: #fff;
}

.expanded-tab .queue-item .play-button {
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.expanded-tab .queue-item .play-button:hover {
    color: #2d9cdb;
}

#nextBtn,
#prevBtn {
    cursor: pointer;
}

.sleep-timer {
    cursor: pointer;
}

.progress {
    cursor: pointer;
}

/* more option  */
.more-options-popup {
    position: fixed;
    bottom: 95px;
    right: 4px;
    background: #343a40;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
}

.popup-menu {
    padding: 8px 0;
}

.menu-item {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #fff;
    transition: background-color 0.2s;
}

.home-slides.owl-theme .owl-nav [class*=owl-] {
    line-height: 46px !important;
}

.menu-item i {
    width: 20px;
    text-align: center;
}

.menu-item.active {
    color: #259b9c;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    background-color: #259b9c !important;
    color: #fff !important;
    cursor: pointer;
}

span.carousel-prev {
    background-color: #259b9c;
    font-size: larger;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    padding-inline: 15px;
    border-radius: 50%;
}


span.carousel-next {
    background-color: #259b9c;
    font-size: larger;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    padding-inline: 15px;
    border-radius: 50%;
}

/* more option end */
/* Mobile responsiveness */
@media (min-width: 768px) {
    .more-option {
        display: none;
    }
}

@media (max-width: 768px) {
    .expanded-tab {
        flex-direction: column;
        height: auto;
    }

    .owl-carousel .owl-nav button.owl-prev {
        left: -15px !important;
    }

    .option-item-for-trial .upgrade-btn {
        padding: 2px 5px !important;
        border-radius: 5px !important;
        font-size: 8px !important;
    }

    .option-item-for-trial1 .subscribe-now-btn {
        padding: 6px 10px !important;
        border-radius: 5px !important;
        font-size: 10px !important;
    }

    .free-trail-text {
        font-size: 10px;
    }

    .option-item-for-trial {
        bottom: 25px !important;
        gap: 0px !important;
        flex-direction: row !important;
        align-items: center !important;
    }

    .option-item-for-trial1 {
        bottom: 10px !important;
        gap: 0px !important;
        flex-direction: column !important;
        align-items: end !important;
    }

    .owl-carousel .owl-nav button.owl-next {
        right: -15px !important;
    }

    .left-section {
        display: none !important;
    }

    .close_icon {
        position: absolute;
        right: 9px;
        top: 6px;
    }

    .queue-item-header {
        justify-content: space-between;
    }

    .more-option {
        display: none;
    }

    .queue-header-duration {
        margin-left: 10rem !important;
    }

    .expanded-tab .left-section,
    .expanded-tab .right-section {
        width: 100%;
    }

    .expanded-tab .queue-container {
        max-height: 224px;
        overflow-y: auto;
    }

    .expanded-tab .right-section {
        margin-left: 0px !important;
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .song-title {
        max-width: 120px;
        overflow: hidden;
        font-size: 10px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .song-info img {
        height: 40px;
        width: 40px;
        margin-left: 0px;
    }

    .app-footer {
        padding: 10px;
    }

    .fa-redo {
        display: none;
    }

    .fa-random {
        display: none;
    }

    .song-controls {
        gap: 10px;
    }

    .control-icon {
        font-size: 0.875rem;
    }

    .volume-control {
        display: none;
    }

    .more-option {
        display: block;
    }

    #expandToggle {
        display: none;
    }

    .volume-control {
        padding: 5px;
    }

    .progress-bar-container {
        position: absolute;
        top: 0px;
    }

    .sleep-timer {
        display: none;
    }

    .volume-control i {
        font-size: 1.2rem;
    }

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

    .menu-icons {
        display: none;
    }
}

.forward-rewind {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 10px;
}

/* For medium devices (tablets) */
@media (min-width: 577px) and (max-width: 768px) {
    .song-controls {
        gap: 5px;
    }

    .song-info img {
        height: 45px;
        width: 45px;
    }

    .volume-control i {
        font-size: 1.5rem;
    }
}

@media (min-width: 350px) and (max-width: 470px) {
    .song-title {
        max-width: 60px;
        font-size: 10px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .song-info img {
        height: 40px;
        width: 40px;
        margin-left: 0px;
    }

    .app-footer {
        padding: 10px;
    }

    .fa-redo {
        display: none;
    }

    .fa-random {
        display: none;
    }

    .song-controls {
        gap: 5px;
    }

    .control-icon {
        font-size: 0.875rem;
    }

    .volume-control {
        display: none;
    }

    .progress-bar-container {
        position: absolute;
        top: 0px;
    }

    .volume-control i {
        font-size: 1.2rem;
    }

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

    .audio-length {
        font-size: 13px;
        display: flex;
        justify-content: end;
        margin-right: 10px;
        margin-left: 15px;
    }

    .menu-icons {
        display: none;
    }
}

/* For very small devices (under 350px) */
@media (max-width: 350px) {
    .song-title {
        max-width: 70px;
        overflow: hidden;
        font-size: 10px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    /* Hide all elements except title, image, and play/pause button */
    .song-info {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .volume-control,
    .menu-icons,
    .audio-length {
        display: none;
    }

    .song-title {
        font-size: 1.2rem;
        /* Adjust title size */
        text-align: center;
    }

    .song-info img {
        margin-bottom: 5px;
        /* Add space between image and title */
    }

    .btn {
        font-size: 1.5rem;
        /* Increase button size for better touch interaction */
    }
}

/* For screens under 250px */
@media (max-width: 250px) {
    .song-title {
        font-size: 0.8rem;
        /* Adjust title size for very small screens */
        text-align: center;
        max-width: 20px;
        /* Initially show only one letter */
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        /* Add ellipsis to the title when overflowed */
    }

    /* Reveal more characters as screen size increases */
    @media (min-width: 250px) and (max-width: 300px) {
        .song-title {
            font-size: 0.8rem;
            /* Adjust title size for very small screens */
            text-align: center;
            max-width: 40px;
            /*tially show only one letter */
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            /* Add ellipsis to the title when overflowed */
        }
    }

    @media (min-width: 300px) and (max-width: 350px) {
        .song-title {
            max-width: 80px;
            /* Show more characters */
        }
    }

    @media (min-width: 350px) {
        .song-title {
            max-width: none;
            /* Show full title on larger screens */
        }
    }
}

.site-title {
    font-size: 20px !important;
}

/* Mobile Devices (up to 768px width) */
@media only screen and (max-width: 768px) {

    .site-title,
    .site-heading-inline .site-title {
        font-size: 14px !important;
    }

    .home-slides.owl-theme .owl-nav [class*=owl-].owl-next {
        right: 0px !important;
    }

    .home-slides.owl-theme .owl-nav [class*=owl-].owl-prev {
        left: 0px !important;
    }
}

/* Other existing media queries remain unchanged */
@media (max-width: 350px) {
    .song-info {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .volume-control,
    .menu-icons,
    .audio-length {
        display: none;
    }

    .song-title {
        font-size: 10px;
        text-align: center;
    }

    .song-info img {
        margin-bottom: 5px;
    }

    .btn {
        font-size: 1.5rem;
    }
}

@media(max-width:60px) {

    .volume-control,
    .menu-icons,
    .audio-length,
    .song-title,
    .song-controls {
        display: none;
    }
}

@media(max-width:100px) {

    .volume-control,
    .menu-icons,
    .audio-length,
    .song-title,
    .fa-random,
    .fa-backward {
        display: none;
    }
}

@media(max-width:180px) {

    .volume-control,
    .menu-icons,
    .audio-length,
    .song-title {
        display: none;
    }
}

.go-top.active {
    bottom: 80px !important;
    right: 10px !important;
}

.footer-area {
    z-index: 0 !important;
}

.cancel-icon {
    cursor: pointer;
}

.cancel-icon {
    cursor: pointer;
    padding: 15px;
}

.cancel-icon i {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
}

.cancel-icon:hover i {
    color: #dc3545;
}

.audio-player-hidden {
    display: none !important;
}


/* Container styling */
.language-tab-container {
    display: flex;
    justify-content: space-between;
    width: 50%;
    border: 2px solid #259b9c;
    border-radius: 8px;
    display: inline-block;
    padding: 10px;
    background-color: #f8f9fa;
}

.language-tab {
    display: inline-block;
    margin: 0;
    height: 36px;
    line-height: 15px;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}

.freestories-language-tab {
    display: inline-block;
    margin: 0;
    height: 36px;
    line-height: 15px;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}

.language-tab-package {
    display: inline-block;
    margin: 0;
    height: 36px;
    line-height: 15px;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}

/* Active tab styling */
.language-tab.active-tab {
    background-color: #259b9c !important;
    color: white !important;
    border-radius: 5px;
    font-weight: bold !important;
    height: 36px;
    line-height: 15px;
}

.language-tab:hover {
    background-color: #259b9c !important;
    color: #fff !important;
    height: 36px;
    line-height: 15px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #259b9c;
}

.language-tab-package:hover {
    background-color: #259b9c !important;
    color: #fff !important;
    height: 36px;
    line-height: 15px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #259b9c;
}

.freestories-language-tab.active-tab {
    background-color: #259b9c !important;
    color: white !important;
    border-radius: 5px;
    font-weight: bold !important;
    height: 36px;
    line-height: 15px;
}

.language-tab-package.active {
    background-color: #259b9c !important;
    color: white !important;
    border-radius: 5px;
    font-weight: bold !important;
    height: 36px;
    line-height: 15px;
}

.freestories-language-tab:hover {
    background-color: #259b9c !important;
    color: #fff !important;
    height: 36px;
    line-height: 15px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #259b9c;
}

.site-heading {
    margin-bottom: 25px !important;
}

/* Medium Devices (up to 1024px) */
@media only screen and (max-width: 1024px) {
    .language-tab-container {
        width: auto;
        /* Adjust the width for tablets */
        padding: 8px;
    }

    .language-tab {
        font-size: 15px;
        /* Slightly smaller text for tablets */
    }

    .freestories-language-tab {
        font-size: 15px;
        /* Slightly smaller text for tablets */
    }

    .language-tab.active-tab {
        font-size: 15px;
        /* Adjust active tab font size */
    }

    .freestories-language-tab.active-tab {
        font-size: 15px;
        /* Adjust active tab font size */
    }
}

/* iPhone SE, small phones (320px - 374px) */
@media only screen and (max-width: 374px) {
    .storyimage-css {
        height: 25px !important;
        width: 25px !important;
    }

    .story-number1,
    .forward-rewind,
    .song-controls {
        font-size: 12px !important;
        gap: 5px;
    }
}

/* Most phones (375px - 424px, e.g., iPhone 11, Galaxy S8) */
@media only screen and (min-width: 375px) and (max-width: 424px) {
    .storyimage-css {
        height: 28px !important;
        width: 28px !important;
    }

    .story-number1,
    .forward-rewind,
    .song-controls {
        font-size: 12px !important;
        gap: 10px;
    }
}

/* Large phones and small tablets (425px - 599px) */
@media only screen and (min-width: 425px) and (max-width: 599px) {
    .storyimage-css {
        height: 30px !important;
        width: 30px !important;
    }

    .story-number1,
    .forward-rewind,
    .song-controls {
        font-size: 11px !important;
        gap: 6px;
    }
}

/* Tablets portrait (600px - 767px) */
@media only screen and (min-width: 600px) and (max-width: 767px) {
    .storyimage-css {
        height: 32px !important;
        width: 32px !important;
    }

    .story-number1,
    .forward-rewind,
    .song-controls {
        font-size: 12px !important;
        gap: 6px;
    }
}

/* Tablets landscape and medium devices (768px - 1024px) */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .storyimage-css {
        height: 35px !important;
        width: 35px !important;
    }

    .story-number1,
    .forward-rewind,
    .song-controls {
        font-size: 13px !important;
        gap: 7px;
    }
}

/* Small Devices (up to 768px) */
@media only screen and (max-width: 768px) {
    .language-tab-container {
        width: auto;
        /* Make the container span most of the screen */
        padding: 6px;
    }

    .default-btn {
        border-radius: 5px !important;
        padding: 5px 20px !important;
        font-size: 10px !important;
    }

    .expanded-tab .right-section {
        max-height: 280px !important;
    }

    .page-banner-area {
        background-attachment: scroll !important;
    }

    .storyimage-css {
        height: 30px !important;
        width: 30px !important;
    }

    .language-tab {
        font-size: 14px;
        /* Smaller font size for mobile devices */
    }

    .language-tab.active-tab {
        font-size: 14px;
    }
}

/* Extra Small Devices (up to 576px) */
@media only screen and (max-width: 576px) {
    .language-tab-container {
        width: auto;
        /* Full width on small phones */
        padding: 5px;
    }

    .language-tab {
        font-size: 12px;
        /* Smallest font size for compact devices */
        height: 30px;
        /* Reduced height */
        line-height: 14px;
        /* Adjust line height */
    }

    .language-tab.active-tab {
        font-size: 12px;
        height: 30px;
        line-height: 14px;
    }
}

/* Fullscreen Mode for Expanded Tab */
.expanded-tab.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #121212;
    /* Dark background */
    z-index: 999;
    padding: 20px;
    color: white;
}

/* Fullscreen Overlay (Dark Background) */
.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* Dark transparent overlay */
    z-index: 998;
    display: none;
    /* Hidden by default */
}

/* Sticky Footer for Fullscreen */
.app-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #121212;
    /* Dark background for footer */
    z-index: 1100;
}

/* Disable Scroll in Fullscreen */
html,
body {
    overflow: auto;
    /* Default: Scroll enabled */
}

.expanded-tab.fullscreen html,
.expanded-tab.fullscreen body {
    overflow: hidden;
    /* Disable scroll */
}

/* Dark Effect for Navbar in Fullscreen */
.main-navbar {
    transition: background-color 0.3s ease, pointer-events 0.3s ease;
}

.expanded-tab.fullscreen .main-navbar {
    background-color: #121212;
    /* Dark background for navbar */
    pointer-events: none;
    /* Disable navbar interactions */
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-menu {
    left: -70px !important;
}

/* Adjust Footer Icons and Controls in Fullscreen */
.app-footer .song-controls i,
.app-footer .song-title,
.app-footer .volume-control i {
    color: white;
}

.navbar-nav {
    margin: 0px !important;
}

.option-item-for-trial {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.option-item-for-trial1 {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.option-item-for-trial .upgrade-btn {
    background: linear-gradient(45deg, #e57025, #bc2026);
    display: inline-block;
    padding: 5px 20px;
    color: #ffffff !important;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500 !important;
    overflow: hidden;
    outline: none;
    border: none;
    transition: all 0.5s;
}

.option-item-for-trial1 .subscribe-now-btn {
    background-color: #c53d47;
    display: inline-block;
    padding: 7px 20px;
    color: #ffffff !important;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500 !important;
    overflow: hidden;
    outline: none;
    border: none;
    position: relative;
    transition: all 0.5s;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(197, 61, 71, 0.5);
}

body {
    color: black !important;
}

.option-item-for-trial .upgrade-btn:hover {
    background-color: rgb(245, 119, 41);
    /* Darker orange shade for hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Subtle shadow on hover */
}

.option-item-for-trial1 .subscribe-now-btn:hover {
    background-color: #CC0000;
    /* Darker orange shade for hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Subtle shadow on hover */
}

@media only screen and (max-width: 1198px) {
    .option-item-for-trial {
        position: absolute;
        right: 68px;
        flex-direction: row;
        bottom: 13px;
        gap: 14px;
        justify-content: center;
        align-items: center;
    }
}

.collapse.navbar-collapse.mean-menu {
    justify-content: space-between !important;
}


.others-option-for-responsive .new-menu {
    padding: 0 10px;
    height: 30px;
    cursor: pointer;
    z-index: 9991;
    position: absolute;
    right: 60px;
    top: -28px;
}

.storyimage-css {
    border-radius: 10px;
    text-align: center;
    height: 50px;
    display: flex;
    width: 60px;
    background: #259b9c;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.storyimage-css3 {
    border-radius: 50px;
    text-align: center;
    height: 100px;
    display: flex;
    width: 100px;
    background: #259b9c;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.story-number1 {
    font-size: 25px;
    text-transform: capitalize;
    background: linear-gradient(180deg, rgb(4 4 4) 1%, rgb(37 36 36 / 25%) 100%, rgba(255, 255, 255, 1) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    color: #eee;
    -webkit-text-stroke: 6px transparent;
}

.story-number3 {
    font-size: 40px;
    text-transform: capitalize;
    background: linear-gradient(180deg, rgb(4 4 4) 1%, rgb(37 36 36 / 25%) 100%, rgba(255, 255, 255, 1) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    color: #eee;
    -webkit-text-stroke: 6px transparent;
}

.story-number2 {
    font-size: 18px;
    padding: 5px;
    text-transform: capitalize;
    background: linear-gradient(180deg, rgb(4 4 4) 1%, rgb(37 36 36 / 25%) 100%, rgba(255, 255, 255, 1) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    color: #eee;
    -webkit-text-stroke: 6px transparent;
}

.storyimage-css2 {
    border-radius: 10px;
    text-align: center;
    height: 40px;
    display: flex;
    margin-right: 10px;
    width: 50px;
    background: #259b9c;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.fullscreen .right-section {
    flex: 0.7;
    margin-left: 10px;
    max-height: 620px !important;
}

.fullscreen .queue-container {
    max-height: 600px !important;
    overflow-y: auto;
}

.fullscreen .left-section {
    margin-top: 20px !important;
}

.default-btn {
    padding: 4px 33px;
}

i.custom-pro-icon {
    font-size: 40px;
}

@media only screen and (max-width: 768px) {
    .others-option-for-responsive .new-menu {
        top: -34px !important;
    }

    .others-option-for-responsive .dot-menu {
        right: 35px !important;
    }

    .others-option-for-responsive .container .container {
        max-width: 200px !important;
    }

    .mean-container a.meanmenu-reveal {
        width: 25px !important;
    }

    .custom-pro-icon {
        font-size: 30px !important;
    }

}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .others-option-for-responsive .new-menu {
        top: -30px !important;
    }

    .others-option-for-responsive .dot-menu {
        right: 40px !important;
    }

    .option-item-for-trial {
        right: 100px !important;
    }

    .others-option-for-responsive .container .container {
        max-width: 250px !important;
    }

    .mean-container a.meanmenu-reveal {
        width: 30px !important;
    }

    .custom-pro-icon {
        font-size: 32px !important;
    }
}

@media only screen and (max-width: 768px) {
    .default-btn {
        bottom: -4px;
        border-radius: 5px !important;
        padding: 5px 20px !important;
        font-size: 10px !important;
    }
}

/* Star Effect */
.option-item-for-trial1 .subscribe-now-btn::before,
.option-item-for-trial1 .subscribe-now-btn::after {
    content: "✦";
    position: absolute;
    font-size: 18px;
    color: #fff;
    opacity: 0;
    animation: blink-stars 1.5s infinite alternate;
}

.option-item-for-trial1 .subscribe-now-btn::before {
    top: -5px;
    left: 3px;
}

.option-item-for-trial1 .subscribe-now-btn::after {
    bottom: -5px;
    right: 3px;
    animation-delay: 0.75s;
}

/* Blinking Animation */
@keyframes blink-stars {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}


body {
    color: black !important;
}

.option-item-for-trial .upgrade-btn:hover {
    background-color: rgb(245, 119, 41);
    /* Darker orange shade for hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Subtle shadow on hover */
}

.option-item-for-trial1 .subscribe-now-btn:hover {
    background-color: #CC0000;
    /* Darker orange shade for hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Subtle shadow on hover */
}

.login-form form .form-group label {
    display: block;
    margin-bottom: 10px;
    color: #000;
    font-weight: 500;
    font-size: 16px;
}

.parent-content {
    display: flex;
}

.flex-direction-column {
    flex-direction: column !important;
}

.testimonial-quote p {
    color: #000 !important;
    font-size: 16px !important;
}

.captcha_refersh {
    border: none;
    background: none;
    line-height: 55px;
    border: none;
    margin-top: 0px !important;
    padding: 15px 30px;
    width: auto !important;
    border-radius: 5px;
    cursor: pointer;
    background-color: transparent !important;
    color: #ffffff;
    margin-bottom: 10px;
}

.login-form form button {
    font-size: medium;
    margin-top: 10px;
}

.login-form {
    padding: 40px 45px;
    border-radius: 5px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
    box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
    max-width: 600px !important;
    margin: auto;
}

section.login-area {
    background: #edf2fa !important;
}

.login-form form .form-group .form-control {
    height: 46px !important;
}

.login-form form .form-group {
    margin-bottom: 5px !important;
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-weight: 500;
    color: #d32f2f;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.video-link i {
    font-size: 18px;
}

.video-link:hover {
    color: #b71c1c;
    text-decoration: underline;
}

/* ===== Style Block 2 ===== */
.popup-header {
    background: linear-gradient(135deg, #259b9c, #259b9c, #191414);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.carousel-container {
    /* padding: 20px; */
    text-align: center;
}

.slide-image {
    height: 120px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto 15px;
    width: 80%;
}

.slide-title {
    font-size: 18px;
    font-weight: bold;
    color: #259b9c;
    margin-bottom: 10px;
}

.slide-text {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 2.4;
}

.cta-button {
    background-color: #259b9c;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    margin: 10px 0;
}

.cta-button:hover {
    background-color: #c53d47;
    color: #fff;
    transform: scale(1.05);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    padding: 15px 0;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background-color: #259b9c;
    transform: scale(1.2);
}

.language-note {
    font-size: 12px;
    color: #666;
    margin-top: 40px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.warning-banner {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    padding: 15px;
    margin: 20px;
    border-radius: 6px;
    font-size: 16px;
}

.progress {
    cursor: pointer;
    touch-action: none;
    /* Prevents browser default touch behaviors */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.progress-bar {
    transition: width 0.1s ease;
    /* Smooth transition for better UX */
}

/* Make the progress bar area larger on mobile for easier touching */
@media (max-width: 768px) {
    .progress {
        /* Increase height for easier touch */
        margin: 5px 0;
        /* Add some margin for easier targeting */
    }
}

.progress {
    /* Increase height for easier touch */
    margin: 5px 0;
    /* Add some margin for easier targeting */
}

/* New styles for visitor counter */
.story-marquee-container {
    background-color: #fef6e4;
    padding: 10px;
    overflow: hidden;
    position: relative;
}

.story-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.story-track {
    display: inline-block;
    animation: scroll-left 20s linear infinite;
}

.story-text {
    display: inline-block;
    padding-right: 50px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.visitor-text {
    color: #1e8a8c;
    /* Custom color for visitor message */
    font-weight: 600;
    font-size: 13px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Optional responsive tweaks */
@media (max-width: 768px) {
    .story-text {
        font-size: 12px;
    }

    .visitor-text {
        font-size: 11.5px;
    }
}

.visitor-counter-box-sleek {
    background: linear-gradient(135deg, #1e7a7b, #b02e38);
    padding: 6px 12px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    font-family: 'Segoe UI', Roboto, sans-serif;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: slideIn 0.6s ease-out forwards;
}

.visitor-counter-box-sleek::before {
    content: "📊";
    font-size: 16px;
}

.visitor-counter-title-sleek {
    font-weight: 500;
    letter-spacing: 0.4px;
}

.visitor-counter-number-sleek {
    font-weight: bold;
    font-size: 15px;
    animation: pulseSleek 2s infinite ease-in-out;
}

@keyframes pulseSleek {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Style Block 3 ===== */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.popup-container {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Full image mode for promotional slides */
.popup-container.full-image-mode {
    padding: 0;
    background: transparent;
}

.popup-container.full-image-mode .carousel-container {
    padding: 0;
    min-height: auto;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.popup-subtitle {
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
}

.carousel-container {
    /* padding: 20px 30px; */
    min-height: 400px;
}

.carousel-slide {
    display: none;
    text-align: center;
}

/* Full image slides */
.full-image-slide {
    padding: 0;
    min-height: auto;
}

.promotional-slide {
    padding: 0;
}

.promo-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.promo-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px 16px 0 0;
}

/* Promotional Footer */
.promo-footer {
    display: none;
    background: #d3e3fd;
    padding: 10px;
    border-radius: 0 0 16px 16px;
    text-align: center;
}

.promo-footer.active {
    display: block;
}

.promo-footer-button {
    display: inline-block;
    padding: 5px 50px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    margin-bottom: 15px;
}


/* Main CTA button – Donate slide (slide 0) */
.promo-footer-button.main-cta {
    background: linear-gradient(135deg, #c53d47 0%, #e05a40 100%);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 5px 18px rgba(197, 61, 71, 0.45);
}

.promo-footer-button.main-cta:hover {
    background: linear-gradient(135deg, #e05a40 0%, #c53d47 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 61, 71, 0.55);
    color: #ffffff;
}

/* Dynamic button styling based on slide */
.promo-footer-button.corporate-offer {
    background: linear-gradient(135deg, #C9A961 0%, #B8860B 100%);
    color: #2D1B4E;
}

.promo-footer-button.corporate-offer:hover {
    background: linear-gradient(135deg, #DAB572 0%, #C9941C 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(201, 169, 97, 0.4);
}

.promo-footer-button.festive-offer {
    background: linear-gradient(135deg, #6B2D8E 0%, #4A1B6B 100%);
    color: #FFFFFF;
}

.promo-footer-button.festive-offer:hover {
    background: linear-gradient(135deg, #7C3E9F 0%, #5B2C7C 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(107, 45, 142, 0.4);
}

.promo-footer-button.testimonial-cta {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    /* Red to darker red */
    color: #FFFFFF;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.4);
}

.promo-footer-button.testimonial-cta:hover {
    background: linear-gradient(135deg, #e53935 0%, #d32f2f 100%);
    /* Slightly lighter red on hover */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.5);
}

.free-trial-btn {
    background: linear-gradient(135deg, #259b9c 0%, #1a7a7b 100%);
    color: #ffffff;
    border: none;
    margin-left: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(37, 155, 156, 0.45);
}

.free-trial-btn:hover {
    background: linear-gradient(135deg, #1a7a7b 0%, #145f60 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 155, 156, 0.55);
}

/* Dots styling */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 20px;
}

.promo-dots {
    padding: 0;
    margin-top: 10px;
}

.regular-dots {
    display: none;
}

.regular-dots.active {
    display: flex;
}

.dot.active {
    width: 20px;
    border-radius: 6px;
}

.dot:hover {
    background: #999;
}

.language-note {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .popup-container {
        width: 95%;
    }

    .promo-footer-button {
        padding: 14px 24px;
        font-size: 16px;
        min-width: 280px;
    }

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

    .popup-subtitle {
        font-size: 14px;
    }

    .promo-footer {
        padding: 15px 20px 20px;
    }
}

@media (max-width: 480px) {
    .promo-footer-button {
        padding: 12px 20px;
        font-size: 14px;
        min-width: 240px;
    }

    .popup-close {
        width: 35px;
        height: 35px;
        font-size: 24px;
    }

    .promo-footer {
        padding: 12px 15px 15px;
    }
}

/* ============================================= */
/* COMPLETE POPUP & TESTIMONIAL CSS – FINAL VERSION */
/* Uses only #259b9c (teal) and #d32f2f (red)     */
/* ============================================= */

/* ===== REDESIGNED TESTIMONIAL SLIDES ===== */
.testimonial-slide {
    color: white;
    text-align: center;
    background: linear-gradient(160deg, #0f2c45 0%, #1a4a6e 50%, #0f2c45 100%);
    padding: 35px 30px 25px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

/* Decorative top accent bar */
.testimonial-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #259b9c, #f0a848, #c53d47, #259b9c);
    background-size: 200% auto;
    animation: shimmer-bar 3s linear infinite;
}

@keyframes shimmer-bar {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Faint quote watermark */
.testimonial-slide::after {
    content: '\201C';
    position: absolute;
    top: -10px; left: 15px;
    font-size: 180px;
    line-height: 1;
    color: rgba(255,255,255,0.05);
    font-family: Georgia, serif;
    pointer-events: none;
}

p.quote.popup {
    color: #e8f4f8 !important;
}

.testimonial-item-popup .author-img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #259b9c;
    margin-bottom: 14px;
    box-shadow: 0 0 0 5px rgba(37,155,156,0.2), 0 8px 25px rgba(0,0,0,0.45);
    position: relative;
    z-index: 1;
}

.testimonial-item-popup .author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-item-popup h4 {
    font-size: 22px;
    margin: 0 0 4px 0;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

.testimonial-item-popup h4 span {
    display: inline-block;
    font-size: 13px;
    color: #259b9c;
    font-weight: 600;
    margin-top: 4px;
    background: rgba(37,155,156,0.15);
    padding: 2px 12px;
    border-radius: 20px;
    letter-spacing: 0.4px;
}

/* Star rating decoration */
.testimonial-item-popup h4::after {
    content: '★★★★★';
    display: block;
    font-size: 16px;
    color: #f0a848;
    margin-top: 6px;
    letter-spacing: 3px;
}

.testimonial-item-popup .quote {
    font-size: 16px;
    line-height: 1.75;
    max-width: 520px;
    margin: 14px auto 18px;
    font-style: italic;
    color: #cde8f0;
    opacity: 1;
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.04);
    border-left: 3px solid #259b9c;
    padding: 10px 16px;
    border-radius: 0 10px 10px 0;
    text-align: left;
}

/* Watch Video Button – Vibrant redesign */
.testimonial-video-btn {
    background: linear-gradient(135deg, #c53d47 0%, #e05a40 100%);
    color: white;
    border: none;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 18px rgba(197, 61, 71, 0.45);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

.testimonial-video-btn:hover {
    background: linear-gradient(135deg, #e05a40 0%, #c53d47 100%);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px rgba(197, 61, 71, 0.55);
}

.testimonial-video-btn i {
    font-size: 18px;
}

/* VIDEO PLAYER – Hidden by default, perfect center */
.testimonial-video-player {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 51%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    padding: 20px;
    box-sizing: border-box;
}

.testimonial-video-player.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-video-player .video-wrapper {
    position: relative;
    width: 95%;
    max-width: 400px;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8);
}

.testimonial-video-player video {
    width: 100%;
    height: auto;
    max-height: 85vh;
    display: block;
    border-radius: 18px;
}

.popup-close-video {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #d32f2f;
    color: white;
    width: 40px;
    height: 40px;
    border: none;
    font-weight: bold;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    transition: 0.3s;
}

.popup-close-video:hover {
    background: #c21818;
    transform: scale(1.1);
}

/* Mobile friendly */
@media (max-width: 768px) {
    .testimonial-item-popup .author-img {
        width: 76px;
        height: 76px;
    }

    .testimonial-item-popup h4 {
        font-size: 19px;
    }

    .testimonial-item-popup h4 span {
        font-size: 12px;
    }

    .testimonial-item-popup .quote {
        font-size: 14px;
        padding: 8px 12px;
        margin: 10px auto 14px;
    }

    .testimonial-slide {
        padding: 28px 18px 20px;
    }

    .testimonial-slide::after {
        font-size: 130px;
    }

    .promo-footer.always-visible {
        min-width: 300px;
        padding: 15px 25px;
        bottom: 15px;
    }

    .promo-footer-button {
        font-size: 16px;
        padding: 12px 28px;
    }

    .testimonial-video-player .video-wrapper {
        width: 98%;
    }
}

/* ===== Style Block 4 ===== */
.sound-wave {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    height: 70px;
}

.sound-wave span {
    width: 7px;
    height: 20px;
    background: #d32f2f;
    border-radius: 4px;
    animation: wave 1.4s ease-in-out infinite;
}

.sound-wave span:nth-child(1) {
    animation-delay: 0s;
    height: 10px;
}

.sound-wave span:nth-child(2) {
    animation-delay: 0.2s;
    height: 40px;
    background: #259b9c;
}

.sound-wave span:nth-child(3) {
    animation-delay: 0.4s;
    height: 60px;
}

.sound-wave span:nth-child(4) {
    animation-delay: 0.6s;
    height: 45px;
    background: #259b9c;
}

.sound-wave span:nth-child(5) {
    animation-delay: 0.8s;
    height: 20px;
}

@keyframes wave {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(2.2);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 25px rgba(211, 47, 47, 0.5);
    }

    70% {
        box-shadow: 0 10px 35px rgba(211, 47, 47, 0.8);
    }

    100% {
        box-shadow: 0 10px 25px rgba(211, 47, 47, 0.5);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

.bg-teal-subtle {
    background: rgba(37, 155, 156, 0.1);
}

.bg-red-subtle {
    background: rgba(211, 47, 47, 0.1);
}

.text-teal {
    color: #259b9c !important;
}

.ecard-nav-button1 {
    background: #e57025;
    color: white;
    border: none;
    padding: 0 22px;
    /* Horizontal padding only */
    height: 40px;
    /* Fixed height as requested */
    line-height: 36px;
    /* Vertically center text */
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 6px 15px rgba(229, 112, 37, 0.4);
    transition: all 0.3s ease;
    animation: pulseGlow 2s infinite alternate;
    cursor: pointer;
    text-align: center;
    min-width: 180px;
    /* Ensures it stays wide enough */
}

a.navbar-brand {
    max-width: 200px !important;
}

/* Hover */
.ecard-nav-button1:hover {
    background: #d15f20;
    box-shadow: 0 10px 30px rgba(229, 112, 37, 0.6);
}

/* Shooting Star Sparkle Effect – Diagonal from Top-Left to Bottom-Right */
.ecard-nav-button1::before {
    content: "✦";
    font-size: 20px;
    color: #fff;
    pointer-events: none;
    animation: shootingStar 3.5s infinite linear;
}

/* Shooting Star Animation */
@keyframes shootingStar {
    0% {
        transform: translateX(-50px) translateY(-30px);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    30% {
        opacity: 1;
        transform: translateX(80px) translateY(30px);
    }

    50% {
        opacity: 0.4;
    }

    100% {
        transform: translateX(200px) translateY(80px);
        opacity: 0;
    }
}

/* Gentle pulsing glow */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 6px 15px rgba(229, 112, 37, 0.4);
    }

    100% {
        box-shadow: 0 8px 30px rgba(229, 112, 37, 0.7);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .ecard-nav-button1 {
        padding: 0 24px;
        font-size: 14px;
        min-width: 180px;
        height: 38px;
        line-height: 38px;
    }
}

@media (max-width: 480px) {
    .ecard-nav-button1 {
        padding: 0 18px;
        font-size: 13px;
        min-width: 160px;
        height: 36px;
        line-height: 36px;
    }
}

/* ============================================================
   campaign-stories.php styles
   ============================================================ */
/* ===== Style Block 1 ===== */
#google-signin {
    background: #E9F1FF;
    height: 40px;
    line-height: 10px;
    color: #000;
    margin-top: 10px;
}

.custom-login {
    width: 600px;
}

@media screen and (max-width: 768px) {
    .custom-login {
        width: auto;
        box-sizing: border-box;
    }
}

i#reset-btn {
    cursor: pointer;
}

i#forwardBtn {
    margin-inline: 15px;
    cursor: pointer;
}

i#rewindBtn {
    margin-inline: 15px;
    cursor: pointer;
}

i#random {
    cursor: pointer;
}

.pricing-header h5 {
    font-size: 22px !important;
}

/* Mobile Responsive Styles */
@media (max-width: 767px) {
    .pricing-item {
        width: auto !important;
    }
}

.pricing-feature ul {
    padding-left: 1rem;
    list-style-type: none;
}

.pricing-feature li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
    position: relative;
}

.pricing-feature li i {
    color: #259b9c;
    margin-right: 8px;
}

.view-more-tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip-trigger:hover+.tooltip-content,
.tooltip-content:hover {
    display: block;
}

.tooltip-content {
    display: none;
    position: absolute;
    left: 0;
    bottom: 100%;
    /* Appear above the trigger */
    margin-bottom: 10px;
    /* Gap between trigger and tooltip */
    z-index: 10;
    background-color: #259b9c;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    width: 270px;
    font-size: 13px;
    border-radius: 6px;
    white-space: normal;
}

/* Show tooltip on hover */
.tooltip-wrapper:hover .tooltip-content {
    display: block;
}

.story-marquee-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-top: 2px solid #e5e5e5;
    border-bottom: 2px solid #e5e5e5;
    padding: 10px 20px;
    gap: 10px;
    overflow: hidden;
}

.story-marquee {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}

.story-track {
    display: inline-block;
    animation: story-scroll 20s linear infinite;
}

.story-text {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Segoe UI', sans-serif;
    color: #259b9c;
    padding-left: 100%;
}

@keyframes story-scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

div:where(.swal2-container) h2:where(.swal2-title) {
    font-family: "Roboto", sans-serif;
}

.main-responsive-nav .main-responsive-menu.mean-container .navbar-nav {
    height: 100%;
}

a {
    text-decoration: none !important;
}

.app-footer {
    background-color: #343a40;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    bottom: 0;
    z-index: 1100 !important;
    position: fixed;
    width: 100%;
    padding: 10px 10px;
    box-sizing: border-box;
}

.required {
    color: red;
    font-weight: bold;
    margin-left: 5px;
}

/* iPads in landscape orientation */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .main-banner-item {
        height: 35vh !important;
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
}

/* iPads in both portrait and landscape orientations */
@media (min-width: 768px) and (max-width: 1024px) {
    .main-banner-item {
        height: 80vh !important;
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
}

/* iPads in portrait orientation */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .main-banner-item {
        height: 35vh !important;
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
}


.progress {
    background-color: #fff !important;
}

/* Make sure the container allows the dot to be visible outside */
.progress {
    position: relative;
    overflow: visible !important;
    /* important if Bootstrap sets overflow:hidden */
    border-radius: 8px;
    /* adjust to match your design */
    background: #e9ecef;
    /* track color – change if needed */
}

/* Your filled bar */
.progress-bar {
    background-color: #259b9c !important;
    position: relative;
    overflow: visible !important;
}

/* The dot – always stays at the very end of the TRACK, not the fill */
.progress::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -8px;
    /* distance from the right edge of the track */
    width: 16px;
    height: 16px;
    background-color: #259b9c;
    border: 4px solid #ffffff;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

/* Optional: make the dot follow the fill when progress < 100% (more advanced) */
.progress-bar::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -8px;
    width: 16px;
    height: 16px;
    background-color: #259b9c;
    border: 4px solid #ffffff;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    z-index: 11;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Hide the moving dot when progress reaches 100% (optional – remove if you don’t want this) */
.progress-bar[aria-valuenow="100"]::after,
.progress-bar.rounded-pill[style*="100%"]::after {
    opacity: 0;
}

.progress-bar {
    background-color: #259b9c !important;
}

.progress-bar-container {
    width: 100%;
    margin-bottom: 10px;
}

.song-info img {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 5px;
}

.song-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.song-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 0.5;
    gap: 15px;
}

.play-button-custom {
    position: absolute;
    width: 48px;
    height: 48px;
    line-height: 48px;
    background: var(--theme-color);
    color: var(--color-white);
    border-radius: 50px;
    text-align: center;
    font-size: 20px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: var(--box-shadow);
    z-index: 1;
}

i.fas.fa-play:hover {
    color: #fff;
}

.play-button-custom i::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: var(--theme-color);
    border-radius: 50px;
    animation: ripple-wave 1s linear infinite;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all 0.5s ease-in-out;
}

.volume-control {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
}

.menu-icons {
    cursor: pointer;
}

.volume-control .volume-slider {
    position: absolute;
    bottom: 36px;
    right: 4px;
    background: #2c3136;
    border-radius: 8px;
    padding: 15px;
    display: none;
    z-index: 10000;
}

.vertical-slider {
    height: 100px;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    position: relative;
    border-radius: 10px;
}

.slider-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    border-radius: 10px;
    transition: height 0.1s ease;
}

.slider-thumb {
    width: 16px;
    height: 4px;
    background-color: white;
    position: absolute;
    left: -7px;
    border-radius: 4px;
    cursor: pointer;
    z-index: 2;
}

.vertical-range {
    transform: rotate(-90deg);
    transform-origin: center;
    position: absolute;
    height: 2px;
    width: 100px;
    left: -49px;
    top: 49px;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.volume-bridge {
    position: absolute;
    width: 30px;
    height: 40px;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
}

.expand-audio {
    color: #fff;
    position: fixed;
    bottom: 0px;
    left: -5px;
    padding: 15px !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    background-color: #259b9c;
    color: #ffffff;
    z-index: 1000;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    animation: slide-in 0.3s ease-in-out;
}

.expand-audio:hover {
    background-color: #B1966B;
    /* transform: translateX(5px); */
}

.expanded-tab {
    position: fixed;
    bottom: 65px;
    left: 0;
    width: 100%;
    height: 345px;
    background-color: #343a40db;
    color: white;
    display: none;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 3;
    padding: 20px;
}

.expanded-tab.active {
    display: flex;
}

.expanded-tab .left-section {
    flex: 0.3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    align-content: center;
    justify-content: center;
}

.expanded-tab .left-section img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
}

.who-we-are-image {
    margin-bottom: 0px !important;
}

.expanded-tab .right-section {
    flex: 0.7;
    margin-left: 10px;
    max-height: 240px;
}

.expand-audio i {
    font-size: 24px;
}

.expanded-tab .queue-container {
    max-height: 240px;
    overflow-y: auto;
}

.expanded-tab .queue-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #fff;
    justify-content: space-between;
}

.expanded-tab .queue-item:last-child {
    border-bottom: none;
}

.expanded-tab .queue-item img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    margin-right: 10px;
}

.expanded-tab .queue-item .song-info {
    flex-grow: 1;
}

.expanded-tab .queue-item .song-title {
    font-size: 14px;
    flex-grow: 0.5;
    font-weight: 500;
    color: #f8f9fa;
}

.expanded-tab .queue-item .song-time {
    font-size: 14px;
    color: #fff;
}

.expanded-tab .queue-item .play-button {
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.expanded-tab .queue-item .play-button:hover {
    color: #2d9cdb;
}

#nextBtn,
#prevBtn {
    cursor: pointer;
}

.sleep-timer {
    cursor: pointer;
}

.progress {
    cursor: pointer;
}

/* more option  */
.more-options-popup {
    position: fixed;
    bottom: 95px;
    right: 4px;
    background: #343a40;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
}

.popup-menu {
    padding: 8px 0;
}

.menu-item {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #fff;
    transition: background-color 0.2s;
}

.home-slides.owl-theme .owl-nav [class*=owl-] {
    line-height: 46px !important;
}

.menu-item i {
    width: 20px;
    text-align: center;
}

.menu-item.active {
    color: #259b9c;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    background-color: #259b9c !important;
    color: #fff !important;
    cursor: pointer;
}

span.carousel-prev {
    background-color: #259b9c;
    font-size: larger;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    padding-inline: 15px;
    border-radius: 50%;
}


span.carousel-next {
    background-color: #259b9c;
    font-size: larger;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    padding-inline: 15px;
    border-radius: 50%;
}

/* more option end */
/* Mobile responsiveness */
@media (min-width: 768px) {
    .more-option {
        display: none;
    }
}

@media (max-width: 768px) {
    .expanded-tab {
        flex-direction: column;
        height: auto;
    }

    .owl-carousel .owl-nav button.owl-prev {
        left: -15px !important;
    }

    .option-item-for-trial .upgrade-btn {
        padding: 2px 5px !important;
        border-radius: 5px !important;
        font-size: 8px !important;
    }

    .option-item-for-trial1 .subscribe-now-btn {
        padding: 6px 10px !important;
        border-radius: 5px !important;
        font-size: 10px !important;
    }

    .free-trail-text {
        font-size: 10px;
    }

    .option-item-for-trial {
        bottom: 25px !important;
        gap: 0px !important;
        flex-direction: row !important;
        align-items: center !important;
    }

    .option-item-for-trial1 {
        bottom: 10px !important;
        gap: 0px !important;
        flex-direction: column !important;
        align-items: end !important;
    }

    .owl-carousel .owl-nav button.owl-next {
        right: -15px !important;
    }

    .left-section {
        display: none !important;
    }

    .close_icon {
        position: absolute;
        right: 9px;
        top: 6px;
    }

    .queue-item-header {
        justify-content: space-between;
    }

    .more-option {
        display: none;
    }

    .queue-header-duration {
        margin-left: 10rem !important;
    }

    .expanded-tab .left-section,
    .expanded-tab .right-section {
        width: 100%;
    }

    .expanded-tab .queue-container {
        max-height: 224px;
        overflow-y: auto;
    }

    .expanded-tab .right-section {
        margin-left: 0px !important;
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .song-title {
        max-width: 120px;
        overflow: hidden;
        font-size: 10px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .song-info img {
        height: 40px;
        width: 40px;
        margin-left: 0px;
    }

    .app-footer {
        padding: 10px;
    }

    .fa-redo {
        display: none;
    }

    .fa-random {
        display: none;
    }

    .song-controls {
        gap: 10px;
    }

    .control-icon {
        font-size: 0.875rem;
    }

    .volume-control {
        display: none;
    }

    .more-option {
        display: block;
    }

    #expandToggle {
        display: none;
    }

    .volume-control {
        padding: 5px;
    }

    .progress-bar-container {
        position: absolute;
        top: 0px;
    }

    .sleep-timer {
        display: none;
    }

    .volume-control i {
        font-size: 1.2rem;
    }

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

    .menu-icons {
        display: none;
    }
}

.forward-rewind {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 10px;
}

/* For medium devices (tablets) */
@media (min-width: 577px) and (max-width: 768px) {
    .song-controls {
        gap: 5px;
    }

    .song-info img {
        height: 45px;
        width: 45px;
    }

    .volume-control i {
        font-size: 1.5rem;
    }
}

@media (min-width: 350px) and (max-width: 470px) {
    .song-title {
        max-width: 60px;
        font-size: 10px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .song-info img {
        height: 40px;
        width: 40px;
        margin-left: 0px;
    }

    .app-footer {
        padding: 10px;
    }

    .fa-redo {
        display: none;
    }

    .fa-random {
        display: none;
    }

    .song-controls {
        gap: 5px;
    }

    .control-icon {
        font-size: 0.875rem;
    }

    .volume-control {
        display: none;
    }

    .progress-bar-container {
        position: absolute;
        top: 0px;
    }

    .volume-control i {
        font-size: 1.2rem;
    }

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

    .audio-length {
        font-size: 13px;
        display: flex;
        justify-content: end;
        margin-right: 10px;
        margin-left: 15px;
    }

    .menu-icons {
        display: none;
    }
}

/* For very small devices (under 350px) */
@media (max-width: 350px) {
    .song-title {
        max-width: 70px;
        overflow: hidden;
        font-size: 10px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    /* Hide all elements except title, image, and play/pause button */
    .song-info {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .volume-control,
    .menu-icons,
    .audio-length {
        display: none;
    }

    .song-title {
        font-size: 1.2rem;
        /* Adjust title size */
        text-align: center;
    }

    .song-info img {
        margin-bottom: 5px;
        /* Add space between image and title */
    }

    .btn {
        font-size: 1.5rem;
        /* Increase button size for better touch interaction */
    }
}

/* For screens under 250px */
@media (max-width: 250px) {
    .song-title {
        font-size: 0.8rem;
        /* Adjust title size for very small screens */
        text-align: center;
        max-width: 20px;
        /* Initially show only one letter */
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        /* Add ellipsis to the title when overflowed */
    }

    /* Reveal more characters as screen size increases */
    @media (min-width: 250px) and (max-width: 300px) {
        .song-title {
            font-size: 0.8rem;
            /* Adjust title size for very small screens */
            text-align: center;
            max-width: 40px;
            /*tially show only one letter */
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            /* Add ellipsis to the title when overflowed */
        }
    }

    @media (min-width: 300px) and (max-width: 350px) {
        .song-title {
            max-width: 80px;
            /* Show more characters */
        }
    }

    @media (min-width: 350px) {
        .song-title {
            max-width: none;
            /* Show full title on larger screens */
        }
    }
}

.site-title {
    font-size: 20px !important;
}

/* Mobile Devices (up to 768px width) */
@media only screen and (max-width: 768px) {

    .site-title,
    .site-heading-inline .site-title {
        font-size: 14px !important;
    }

    .home-slides.owl-theme .owl-nav [class*=owl-].owl-next {
        right: 0px !important;
    }

    .home-slides.owl-theme .owl-nav [class*=owl-].owl-prev {
        left: 0px !important;
    }
}

/* Other existing media queries remain unchanged */
@media (max-width: 350px) {
    .song-info {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .volume-control,
    .menu-icons,
    .audio-length {
        display: none;
    }

    .song-title {
        font-size: 10px;
        text-align: center;
    }

    .song-info img {
        margin-bottom: 5px;
    }

    .btn {
        font-size: 1.5rem;
    }
}

@media(max-width:60px) {

    .volume-control,
    .menu-icons,
    .audio-length,
    .song-title,
    .song-controls {
        display: none;
    }
}

@media(max-width:100px) {

    .volume-control,
    .menu-icons,
    .audio-length,
    .song-title,
    .fa-random,
    .fa-backward {
        display: none;
    }
}

@media(max-width:180px) {

    .volume-control,
    .menu-icons,
    .audio-length,
    .song-title {
        display: none;
    }
}

.go-top.active {
    bottom: 80px !important;
    right: 10px !important;
}

.footer-area {
    z-index: 0 !important;
}

.cancel-icon {
    cursor: pointer;
}

.cancel-icon {
    cursor: pointer;
    padding: 15px;
}

.cancel-icon i {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
}

.cancel-icon:hover i {
    color: #dc3545;
}

.audio-player-hidden {
    display: none !important;
}


/* Container styling */
.language-tab-container {
    display: flex;
    justify-content: space-between;
    width: 50%;
    border: 2px solid #259b9c;
    border-radius: 8px;
    display: inline-block;
    padding: 10px;
    background-color: #f8f9fa;
}

.language-tab {
    display: inline-block;
    margin: 0;
    height: 36px;
    line-height: 15px;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}

.freestories-language-tab {
    display: inline-block;
    margin: 0;
    height: 36px;
    line-height: 15px;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}

.language-tab-package {
    display: inline-block;
    margin: 0;
    height: 36px;
    line-height: 15px;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}

/* Active tab styling */
.language-tab.active-tab {
    background-color: #259b9c !important;
    color: white !important;
    border-radius: 5px;
    font-weight: bold !important;
    height: 36px;
    line-height: 15px;
}

.language-tab:hover {
    background-color: #259b9c !important;
    color: #fff !important;
    height: 36px;
    line-height: 15px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #259b9c;
}

.language-tab-package:hover {
    background-color: #259b9c !important;
    color: #fff !important;
    height: 36px;
    line-height: 15px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #259b9c;
}

.freestories-language-tab.active-tab {
    background-color: #259b9c !important;
    color: white !important;
    border-radius: 5px;
    font-weight: bold !important;
    height: 36px;
    line-height: 15px;
}

.language-tab-package.active {
    background-color: #259b9c !important;
    color: white !important;
    border-radius: 5px;
    font-weight: bold !important;
    height: 36px;
    line-height: 15px;
}

.freestories-language-tab:hover {
    background-color: #259b9c !important;
    color: #fff !important;
    height: 36px;
    line-height: 15px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #259b9c;
}

.site-heading {
    margin-bottom: 25px !important;
}

/* Medium Devices (up to 1024px) */
@media only screen and (max-width: 1024px) {
    .language-tab-container {
        width: auto;
        /* Adjust the width for tablets */
        padding: 8px;
    }

    .language-tab {
        font-size: 15px;
        /* Slightly smaller text for tablets */
    }

    .freestories-language-tab {
        font-size: 15px;
        /* Slightly smaller text for tablets */
    }

    .language-tab.active-tab {
        font-size: 15px;
        /* Adjust active tab font size */
    }

    .freestories-language-tab.active-tab {
        font-size: 15px;
        /* Adjust active tab font size */
    }
}

/* iPhone SE, small phones (320px - 374px) */
@media only screen and (max-width: 374px) {
    .storyimage-css {
        height: 25px !important;
        width: 25px !important;
    }

    .story-number1,
    .forward-rewind,
    .song-controls {
        font-size: 12px !important;
        gap: 5px;
    }
}

/* Most phones (375px - 424px, e.g., iPhone 11, Galaxy S8) */
@media only screen and (min-width: 375px) and (max-width: 424px) {
    .storyimage-css {
        height: 28px !important;
        width: 28px !important;
    }

    .story-number1,
    .forward-rewind,
    .song-controls {
        font-size: 12px !important;
        gap: 10px;
    }
}

/* Large phones and small tablets (425px - 599px) */
@media only screen and (min-width: 425px) and (max-width: 599px) {
    .storyimage-css {
        height: 30px !important;
        width: 30px !important;
    }

    .story-number1,
    .forward-rewind,
    .song-controls {
        font-size: 11px !important;
        gap: 6px;
    }
}

/* Tablets portrait (600px - 767px) */
@media only screen and (min-width: 600px) and (max-width: 767px) {
    .storyimage-css {
        height: 32px !important;
        width: 32px !important;
    }

    .story-number1,
    .forward-rewind,
    .song-controls {
        font-size: 12px !important;
        gap: 6px;
    }
}

/* Tablets landscape and medium devices (768px - 1024px) */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .storyimage-css {
        height: 35px !important;
        width: 35px !important;
    }

    .story-number1,
    .forward-rewind,
    .song-controls {
        font-size: 13px !important;
        gap: 7px;
    }
}

/* Small Devices (up to 768px) */
@media only screen and (max-width: 768px) {
    .language-tab-container {
        width: auto;
        /* Make the container span most of the screen */
        padding: 6px;
    }

    .default-btn {
        border-radius: 5px !important;
        padding: 5px 20px !important;
        font-size: 10px !important;
    }

    .expanded-tab .right-section {
        max-height: 280px !important;
    }

    .page-banner-area {
        background-attachment: scroll !important;
    }

    .storyimage-css {
        height: 30px !important;
        width: 30px !important;
    }

    .language-tab {
        font-size: 14px;
        /* Smaller font size for mobile devices */
    }

    .language-tab.active-tab {
        font-size: 14px;
    }
}

/* Extra Small Devices (up to 576px) */
@media only screen and (max-width: 576px) {
    .language-tab-container {
        width: auto;
        /* Full width on small phones */
        padding: 5px;
    }

    .language-tab {
        font-size: 12px;
        /* Smallest font size for compact devices */
        height: 30px;
        /* Reduced height */
        line-height: 14px;
        /* Adjust line height */
    }

    .language-tab.active-tab {
        font-size: 12px;
        height: 30px;
        line-height: 14px;
    }
}

/* Fullscreen Mode for Expanded Tab */
.expanded-tab.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #121212;
    /* Dark background */
    z-index: 999;
    padding: 20px;
    color: white;
}

/* Fullscreen Overlay (Dark Background) */
.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* Dark transparent overlay */
    z-index: 998;
    display: none;
    /* Hidden by default */
}

/* Sticky Footer for Fullscreen */
.app-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #121212;
    /* Dark background for footer */
    z-index: 1100;
}

/* Disable Scroll in Fullscreen */
html,
body {
    overflow: auto;
    /* Default: Scroll enabled */
}

.expanded-tab.fullscreen html,
.expanded-tab.fullscreen body {
    overflow: hidden;
    /* Disable scroll */
}

/* Dark Effect for Navbar in Fullscreen */
.main-navbar {
    transition: background-color 0.3s ease, pointer-events 0.3s ease;
}

.expanded-tab.fullscreen .main-navbar {
    background-color: #121212;
    /* Dark background for navbar */
    pointer-events: none;
    /* Disable navbar interactions */
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-menu {
    left: -70px !important;
}

/* Adjust Footer Icons and Controls in Fullscreen */
.app-footer .song-controls i,
.app-footer .song-title,
.app-footer .volume-control i {
    color: white;
}

.navbar-nav {
    margin: 0px !important;
}

.option-item-for-trial {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.option-item-for-trial1 {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.option-item-for-trial .upgrade-btn {
    background: linear-gradient(45deg, #e57025, #bc2026);
    display: inline-block;
    padding: 5px 20px;
    color: #ffffff !important;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500 !important;
    overflow: hidden;
    outline: none;
    border: none;
    transition: all 0.5s;
}

.option-item-for-trial1 .subscribe-now-btn {
    background-color: #c53d47;
    display: inline-block;
    padding: 7px 20px;
    color: #ffffff !important;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500 !important;
    overflow: hidden;
    outline: none;
    border: none;
    position: relative;
    transition: all 0.5s;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(197, 61, 71, 0.5);
}

body {
    color: black !important;
}

.option-item-for-trial .upgrade-btn:hover {
    background-color: rgb(245, 119, 41);
    /* Darker orange shade for hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Subtle shadow on hover */
}

.option-item-for-trial1 .subscribe-now-btn:hover {
    background-color: #CC0000;
    /* Darker orange shade for hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Subtle shadow on hover */
}

@media only screen and (max-width: 1198px) {
    .option-item-for-trial {
        position: absolute;
        right: 68px;
        flex-direction: row;
        bottom: 13px;
        gap: 14px;
        justify-content: center;
        align-items: center;
    }
}

.collapse.navbar-collapse.mean-menu {
    justify-content: space-between !important;
}


.others-option-for-responsive .new-menu {
    padding: 0 10px;
    height: 30px;
    cursor: pointer;
    z-index: 9991;
    position: absolute;
    right: 60px;
    top: -28px;
}

.storyimage-css {
    border-radius: 10px;
    text-align: center;
    height: 50px;
    display: flex;
    width: 60px;
    background: #259b9c;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.storyimage-css3 {
    border-radius: 50px;
    text-align: center;
    height: 100px;
    display: flex;
    width: 100px;
    background: #259b9c;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.story-number1 {
    font-size: 25px;
    text-transform: capitalize;
    background: linear-gradient(180deg, rgb(4 4 4) 1%, rgb(37 36 36 / 25%) 100%, rgba(255, 255, 255, 1) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    color: #eee;
    -webkit-text-stroke: 6px transparent;
}

.story-number3 {
    font-size: 40px;
    text-transform: capitalize;
    background: linear-gradient(180deg, rgb(4 4 4) 1%, rgb(37 36 36 / 25%) 100%, rgba(255, 255, 255, 1) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    color: #eee;
    -webkit-text-stroke: 6px transparent;
}

.story-number2 {
    font-size: 18px;
    padding: 5px;
    text-transform: capitalize;
    background: linear-gradient(180deg, rgb(4 4 4) 1%, rgb(37 36 36 / 25%) 100%, rgba(255, 255, 255, 1) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    color: #eee;
    -webkit-text-stroke: 6px transparent;
}

.storyimage-css2 {
    border-radius: 10px;
    text-align: center;
    height: 40px;
    display: flex;
    margin-right: 10px;
    width: 50px;
    background: #259b9c;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.fullscreen .right-section {
    flex: 0.7;
    margin-left: 10px;
    max-height: 620px !important;
}

.fullscreen .queue-container {
    max-height: 600px !important;
    overflow-y: auto;
}

.fullscreen .left-section {
    margin-top: 20px !important;
}

.default-btn {
    padding: 4px 33px;
}

i.custom-pro-icon {
    font-size: 40px;
}

@media only screen and (max-width: 768px) {
    .others-option-for-responsive .new-menu {
        top: -34px !important;
    }

    .others-option-for-responsive .dot-menu {
        right: 35px !important;
    }

    .others-option-for-responsive .container .container {
        max-width: 200px !important;
    }

    .mean-container a.meanmenu-reveal {
        width: 25px !important;
    }

    .custom-pro-icon {
        font-size: 30px !important;
    }

}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .others-option-for-responsive .new-menu {
        top: -30px !important;
    }

    .others-option-for-responsive .dot-menu {
        right: 40px !important;
    }

    .option-item-for-trial {
        right: 100px !important;
    }

    .others-option-for-responsive .container .container {
        max-width: 250px !important;
    }

    .mean-container a.meanmenu-reveal {
        width: 30px !important;
    }

    .custom-pro-icon {
        font-size: 32px !important;
    }
}

@media only screen and (max-width: 768px) {
    .default-btn {
        bottom: -4px;
        border-radius: 5px !important;
        padding: 5px 20px !important;
        font-size: 10px !important;
    }
}

/* Star Effect */
.option-item-for-trial1 .subscribe-now-btn::before,
.option-item-for-trial1 .subscribe-now-btn::after {
    content: "✦";
    position: absolute;
    font-size: 18px;
    color: #fff;
    opacity: 0;
    animation: blink-stars 1.5s infinite alternate;
}

.option-item-for-trial1 .subscribe-now-btn::before {
    top: -5px;
    left: 3px;
}

.option-item-for-trial1 .subscribe-now-btn::after {
    bottom: -5px;
    right: 3px;
    animation-delay: 0.75s;
}

/* Blinking Animation */
@keyframes blink-stars {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}


body {
    color: black !important;
}

.option-item-for-trial .upgrade-btn:hover {
    background-color: rgb(245, 119, 41);
    /* Darker orange shade for hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Subtle shadow on hover */
}

.option-item-for-trial1 .subscribe-now-btn:hover {
    background-color: #CC0000;
    /* Darker orange shade for hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Subtle shadow on hover */
}

.login-form form .form-group label {
    display: block;
    margin-bottom: 10px;
    color: #000;
    font-weight: 500;
    font-size: 16px;
}

.parent-content {
    display: flex;
}

.flex-direction-column {
    flex-direction: column !important;
}

.testimonial-quote p {
    color: #000 !important;
    font-size: 16px !important;
}

.captcha_refersh {
    border: none;
    background: none;
    line-height: 55px;
    border: none;
    margin-top: 0px !important;
    padding: 15px 30px;
    width: auto !important;
    border-radius: 5px;
    cursor: pointer;
    background-color: transparent !important;
    color: #ffffff;
    margin-bottom: 10px;
}

.login-form form button {
    font-size: medium;
    margin-top: 10px;
}

.login-form {
    padding: 40px 45px;
    border-radius: 5px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
    box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
    max-width: 600px !important;
    margin: auto;
}

section.login-area {
    background: #edf2fa !important;
}

.login-form form .form-group .form-control {
    height: 46px !important;
}

.login-form form .form-group {
    margin-bottom: 5px !important;
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-weight: 500;
    color: #d32f2f;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.video-link i {
    font-size: 18px;
}

.video-link:hover {
    color: #b71c1c;
    text-decoration: underline;
}

/* ===== Style Block 2 ===== */
.popup-header {
    background: linear-gradient(135deg, #259b9c, #259b9c, #191414);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.carousel-container {
    /* padding: 20px; */
    text-align: center;
}

.slide-image {
    height: 120px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto 15px;
    width: 80%;
}

.slide-title {
    font-size: 18px;
    font-weight: bold;
    color: #259b9c;
    margin-bottom: 10px;
}

.slide-text {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 2.4;
}

.cta-button {
    background-color: #259b9c;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    margin: 10px 0;
}

.cta-button:hover {
    background-color: #c53d47;
    color: #fff;
    transform: scale(1.05);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    padding: 15px 0;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background-color: #259b9c;
    transform: scale(1.2);
}

.language-note {
    font-size: 12px;
    color: #666;
    margin-top: 40px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.warning-banner {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    padding: 15px;
    margin: 20px;
    border-radius: 6px;
    font-size: 16px;
}

.progress {
    cursor: pointer;
    touch-action: none;
    /* Prevents browser default touch behaviors */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.progress-bar {
    transition: width 0.1s ease;
    /* Smooth transition for better UX */
}

/* Make the progress bar area larger on mobile for easier touching */
@media (max-width: 768px) {
    .progress {
        /* Increase height for easier touch */
        margin: 5px 0;
        /* Add some margin for easier targeting */
    }
}

.progress {
    /* Increase height for easier touch */
    margin: 5px 0;
    /* Add some margin for easier targeting */
}

/* New styles for visitor counter */
.story-marquee-container {
    background-color: #fef6e4;
    padding: 10px;
    overflow: hidden;
    position: relative;
}

.story-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.story-track {
    display: inline-block;
    animation: scroll-left 20s linear infinite;
}

.story-text {
    display: inline-block;
    padding-right: 50px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.visitor-text {
    color: #1e8a8c;
    /* Custom color for visitor message */
    font-weight: 600;
    font-size: 13px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Optional responsive tweaks */
@media (max-width: 768px) {
    .story-text {
        font-size: 12px;
    }

    .visitor-text {
        font-size: 11.5px;
    }
}

.visitor-counter-box-sleek {
    background: linear-gradient(135deg, #1e7a7b, #b02e38);
    padding: 6px 12px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    font-family: 'Segoe UI', Roboto, sans-serif;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: slideIn 0.6s ease-out forwards;
}

.visitor-counter-box-sleek::before {
    content: "📊";
    font-size: 16px;
}

.visitor-counter-title-sleek {
    font-weight: 500;
    letter-spacing: 0.4px;
}

.visitor-counter-number-sleek {
    font-weight: bold;
    font-size: 15px;
    animation: pulseSleek 2s infinite ease-in-out;
}

@keyframes pulseSleek {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Style Block 3 ===== */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.popup-container {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Full image mode for promotional slides */
.popup-container.full-image-mode {
    padding: 0;
    background: transparent;
}

.popup-container.full-image-mode .carousel-container {
    padding: 0;
    min-height: auto;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.popup-subtitle {
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
}

.carousel-container {
    /* padding: 20px 30px; */
    min-height: 400px;
}

.carousel-slide {
    display: none;
    text-align: center;
}

/* Full image slides */
.full-image-slide {
    padding: 0;
    min-height: auto;
}

.promotional-slide {
    padding: 0;
}

.promo-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.promo-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px 16px 0 0;
}

/* Promotional Footer */
.promo-footer {
    display: none;
    background: #d3e3fd;
    padding: 10px;
    border-radius: 0 0 16px 16px;
    text-align: center;
}

.promo-footer.active {
    display: block;
}

.promo-footer-button {
    display: inline-block;
    padding: 5px 50px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    margin-bottom: 15px;
}

/* Dynamic button styling based on slide */
.promo-footer-button.corporate-offer {
    background: linear-gradient(135deg, #C9A961 0%, #B8860B 100%);
    color: #2D1B4E;
}

.promo-footer-button.corporate-offer:hover {
    background: linear-gradient(135deg, #DAB572 0%, #C9941C 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(201, 169, 97, 0.4);
}

.promo-footer-button.festive-offer {
    background: linear-gradient(135deg, #6B2D8E 0%, #4A1B6B 100%);
    color: #FFFFFF;
}

.promo-footer-button.festive-offer:hover {
    background: linear-gradient(135deg, #7C3E9F 0%, #5B2C7C 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(107, 45, 142, 0.4);
}

.promo-footer-button.testimonial-cta {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    /* Red to darker red */
    color: #FFFFFF;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.4);
}

.promo-footer-button.testimonial-cta:hover {
    background: linear-gradient(135deg, #e53935 0%, #d32f2f 100%);
    /* Slightly lighter red on hover */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.5);
}

.free-trial-btn {
    background: linear-gradient(135deg, #259b9c 0%, #1a7a7b 100%);
    color: #ffffff;
    border: none;
    margin-left: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(37, 155, 156, 0.45);
}

.free-trial-btn:hover {
    background: linear-gradient(135deg, #1a7a7b 0%, #145f60 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 155, 156, 0.55);
}

/* Dots styling */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 20px;
}

.promo-dots {
    padding: 0;
    margin-top: 10px;
}

.regular-dots {
    display: none;
}

.regular-dots.active {
    display: flex;
}

.dot.active {
    width: 20px;
    border-radius: 6px;
}

.dot:hover {
    background: #999;
}

.language-note {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .popup-container {
        width: 95%;
    }

    .promo-footer-button {
        padding: 14px 24px;
        font-size: 16px;
        min-width: 280px;
    }

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

    .popup-subtitle {
        font-size: 14px;
    }

    .promo-footer {
        padding: 15px 20px 20px;
    }
}

@media (max-width: 480px) {
    .promo-footer-button {
        padding: 12px 20px;
        font-size: 14px;
        min-width: 240px;
    }

    .popup-close {
        width: 35px;
        height: 35px;
        font-size: 24px;
    }

    .promo-footer {
        padding: 12px 15px 15px;
    }
}

/* ============================================= */
/* COMPLETE POPUP & TESTIMONIAL CSS – FINAL VERSION */
/* Uses only #259b9c (teal) and #d32f2f (red)     */
/* ============================================= */

/* ===== REDESIGNED TESTIMONIAL SLIDES ===== */
.testimonial-slide {
    color: white;
    text-align: center;
    background: linear-gradient(160deg, #0f2c45 0%, #1a4a6e 50%, #0f2c45 100%);
    padding: 35px 30px 25px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

/* Decorative top accent bar */
.testimonial-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #259b9c, #f0a848, #c53d47, #259b9c);
    background-size: 200% auto;
    animation: shimmer-bar 3s linear infinite;
}

@keyframes shimmer-bar {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Faint quote watermark */
.testimonial-slide::after {
    content: '\201C';
    position: absolute;
    top: -10px; left: 15px;
    font-size: 180px;
    line-height: 1;
    color: rgba(255,255,255,0.05);
    font-family: Georgia, serif;
    pointer-events: none;
}

p.quote.popup {
    color: #e8f4f8 !important;
}

.testimonial-item-popup .author-img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #259b9c;
    margin-bottom: 14px;
    box-shadow: 0 0 0 5px rgba(37,155,156,0.2), 0 8px 25px rgba(0,0,0,0.45);
    position: relative;
    z-index: 1;
}

.testimonial-item-popup .author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-item-popup h4 {
    font-size: 22px;
    margin: 0 0 4px 0;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

.testimonial-item-popup h4 span {
    display: inline-block;
    font-size: 13px;
    color: #259b9c;
    font-weight: 600;
    margin-top: 4px;
    background: rgba(37,155,156,0.15);
    padding: 2px 12px;
    border-radius: 20px;
    letter-spacing: 0.4px;
}

/* Star rating decoration */
.testimonial-item-popup h4::after {
    content: '★★★★★';
    display: block;
    font-size: 16px;
    color: #f0a848;
    margin-top: 6px;
    letter-spacing: 3px;
}

.testimonial-item-popup .quote {
    font-size: 16px;
    line-height: 1.75;
    max-width: 520px;
    margin: 14px auto 18px;
    font-style: italic;
    color: #cde8f0;
    opacity: 1;
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.04);
    border-left: 3px solid #259b9c;
    padding: 10px 16px;
    border-radius: 0 10px 10px 0;
    text-align: left;
}

/* Watch Video Button – Vibrant redesign */
.testimonial-video-btn {
    background: linear-gradient(135deg, #c53d47 0%, #e05a40 100%);
    color: white;
    border: none;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 18px rgba(197, 61, 71, 0.45);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

.testimonial-video-btn:hover {
    background: linear-gradient(135deg, #e05a40 0%, #c53d47 100%);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px rgba(197, 61, 71, 0.55);
}

.testimonial-video-btn i {
    font-size: 18px;
}

/* VIDEO PLAYER – Hidden by default, perfect center */
.testimonial-video-player {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 51%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    padding: 20px;
    box-sizing: border-box;
}

.testimonial-video-player.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-video-player .video-wrapper {
    position: relative;
    width: 95%;
    max-width: 400px;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8);
}

.testimonial-video-player video {
    width: 100%;
    height: auto;
    max-height: 85vh;
    display: block;
    border-radius: 18px;
}

.popup-close-video {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #d32f2f;
    color: white;
    width: 40px;
    height: 40px;
    border: none;
    font-weight: bold;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    transition: 0.3s;
}

.popup-close-video:hover {
    background: #c21818;
    transform: scale(1.1);
}

/* Mobile friendly */
@media (max-width: 768px) {
    .testimonial-item-popup .author-img {
        width: 76px;
        height: 76px;
    }

    .testimonial-item-popup h4 {
        font-size: 19px;
    }

    .testimonial-item-popup h4 span {
        font-size: 12px;
    }

    .testimonial-item-popup .quote {
        font-size: 14px;
        padding: 8px 12px;
        margin: 10px auto 14px;
    }

    .testimonial-slide {
        padding: 28px 18px 20px;
    }

    .testimonial-slide::after {
        font-size: 130px;
    }

    .promo-footer.always-visible {
        min-width: 300px;
        padding: 15px 25px;
        bottom: 15px;
    }

    .promo-footer-button {
        font-size: 16px;
        padding: 12px 28px;
    }

    .testimonial-video-player .video-wrapper {
        width: 98%;
    }
}

/* ===== Style Block 4 ===== */
.sound-wave {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    height: 70px;
}

.sound-wave span {
    width: 7px;
    height: 20px;
    background: #d32f2f;
    border-radius: 4px;
    animation: wave 1.4s ease-in-out infinite;
}

.sound-wave span:nth-child(1) {
    animation-delay: 0s;
    height: 10px;
}

.sound-wave span:nth-child(2) {
    animation-delay: 0.2s;
    height: 40px;
    background: #259b9c;
}

.sound-wave span:nth-child(3) {
    animation-delay: 0.4s;
    height: 60px;
}

.sound-wave span:nth-child(4) {
    animation-delay: 0.6s;
    height: 45px;
    background: #259b9c;
}

.sound-wave span:nth-child(5) {
    animation-delay: 0.8s;
    height: 20px;
}

@keyframes wave {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(2.2);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 25px rgba(211, 47, 47, 0.5);
    }

    70% {
        box-shadow: 0 10px 35px rgba(211, 47, 47, 0.8);
    }

    100% {
        box-shadow: 0 10px 25px rgba(211, 47, 47, 0.5);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

.bg-teal-subtle {
    background: rgba(37, 155, 156, 0.1);
}

.bg-red-subtle {
    background: rgba(211, 47, 47, 0.1);
}

.text-teal {
    color: #259b9c !important;
}

.ecard-nav-button1 {
    background: #e57025;
    color: white;
    border: none;
    padding: 0 22px;
    /* Horizontal padding only */
    height: 40px;
    /* Fixed height as requested */
    line-height: 36px;
    /* Vertically center text */
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 6px 15px rgba(229, 112, 37, 0.4);
    transition: all 0.3s ease;
    animation: pulseGlow 2s infinite alternate;
    cursor: pointer;
    text-align: center;
    min-width: 180px;
    /* Ensures it stays wide enough */
}

a.navbar-brand {
    max-width: 200px !important;
}

/* Hover */
.ecard-nav-button1:hover {
    background: #d15f20;
    box-shadow: 0 10px 30px rgba(229, 112, 37, 0.6);
}

/* Shooting Star Sparkle Effect – Diagonal from Top-Left to Bottom-Right */
.ecard-nav-button1::before {
    content: "✦";
    font-size: 20px;
    color: #fff;
    pointer-events: none;
    animation: shootingStar 3.5s infinite linear;
}

/* Shooting Star Animation */
@keyframes shootingStar {
    0% {
        transform: translateX(-50px) translateY(-30px);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    30% {
        opacity: 1;
        transform: translateX(80px) translateY(30px);
    }

    50% {
        opacity: 0.4;
    }

    100% {
        transform: translateX(200px) translateY(80px);
        opacity: 0;
    }
}

/* Gentle pulsing glow */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 6px 15px rgba(229, 112, 37, 0.4);
    }

    100% {
        box-shadow: 0 8px 30px rgba(229, 112, 37, 0.7);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .ecard-nav-button1 {
        padding: 0 24px;
        font-size: 14px;
        min-width: 180px;
        height: 38px;
        line-height: 38px;
    }
}

@media (max-width: 480px) {
    .ecard-nav-button1 {
        padding: 0 18px;
        font-size: 13px;
        min-width: 160px;
        height: 36px;
        line-height: 36px;
    }
}


/* ============================================================
   campaign-stories.php styles
   ============================================================ */

/* ----- campaign-stories: Block 1 ----- */
.expand-audio.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

/* ----- campaign-stories: Block 2 ----- */
.episode-player-custom .player-btn {
    width: 42px;
    height: 42px;
    background: var(--theme-color);
    color: var(--color-white);
    border: none;
    padding: 14px;
    padding-left: 16px;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: var(--box-shadow);
}

.story-model {
    font-weight: 600;
    color: #259b9c;
    font-size: medium;
}

#storyImage,
#currentSongImage {
    border-radius: 50% !important;
    padding: 5px !important;
}

.expanded-tab .left-section {
    border-radius: 7px;
    background-image: linear-gradient(to right, #fff, #fff, #fff);
    height: 250px;
}

.song-details {
    color: #259b9c;
}

.queue-img {
    border-radius: 50% !important;
    padding: 5px !important;
}

.page-banner-area {
    background-image: url('assets/img/main-banner/<?= $is_donor_package_user ? "Sundara_Khanda_Parayana_Package_pic_jpg.jpeg" : "comic-banner.png" ?>') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.page-banner-area .d-table {
    position: relative;
    z-index: 1;
}

.page-banner-content h2 {
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
}

.page-banner-content ul li,
.page-banner-content ul li a {
    color: rgba(255, 255, 255, .85) !important;
}

@media only screen and (max-width:1024px) {
    .page-banner-area {
        background-size: cover;
        background-position: center;
        height: 250px;
    }
}

@media only screen and (max-width:768px) {
    .page-banner-area {
        background-size: cover;
        background-position: top center;
        height: 200px;
    }
}

@media only screen and (max-width:576px) {
    .page-banner-area {
        background-size: cover;
        background-position: top center;
        height: 150px;
    }

    .page-banner-content h2 {
        font-size: 20px;
    }

    .page-banner-content ul {
        font-size: 14px;
    }
}

.pagination span.page-link {
    line-height: 40px !important;
    font-size: 16px !important;
}

.episode-content h4 a {
    font-size: 18px !important;
}

/* ----- campaign-stories: Block 3 ----- */
/* ── Page wrapper ── */
.bv-page-wrap {
    background: #f4f7f6;
    min-height: 60vh;
    padding: 36px 0 60px;
}

/* ── Main Tab Bar ── */
.bv-tab-bar {
    display: flex;
    gap: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(13, 74, 75, .10);
    overflow: hidden;
    margin-bottom: 32px;
}

.bv-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 10px;
    font-size: 15px;
    font-weight: 700;
    color: #6b7280;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all .25s;
    border-bottom: 3px solid transparent;
}

.bv-tab-btn i {
    font-size: 17px;
}

.bv-tab-btn.active {
    color: #259b9c;
    border-bottom: 3px solid #259b9c;
    background: linear-gradient(180deg, #f0fdfd 0%, #fff 100%);
}

.bv-tab-btn:hover:not(.active) {
    color: #0d4a4b;
    background: #f9fafb;
}

.bv-tab-pane {
    display: none;
}

.bv-tab-pane.active {
    display: block;
}

/* ── Language Pills ── */
.bv-lang-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.bv-lang-pill {
    padding: 7px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    border: 2px solid #259b9c;
    color: #259b9c;
    background: #fff;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
}

.bv-lang-pill.active,
.bv-lang-pill:hover {
    background: #259b9c;
    color: #fff;
}

/* ── Category Block ── */
.bv-cat-block {
    margin-bottom: 36px;
}

.bv-cat-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(13, 74, 75, .07);
    margin-bottom: 16px;
    border-left: 5px solid #259b9c;
}

.bv-cat-header img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #259b9c;
    flex-shrink: 0;
}

.bv-cat-header-text h5 {
    margin: 0;
    font-size: 17px;
    font-weight: 800;
    color: #0d4a4b;
}

.bv-cat-header-text small {
    color: #259b9c;
    font-size: 12px;
    font-weight: 600;
}

/* ── Subcategory Label ── */
.bv-subcat-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0 6px 8px;
    margin: 18px 0 10px;
}

.bv-subcat-label::before {
    content: '';
    display: block;
    width: 4px;
    height: 18px;
    border-radius: 4px;
    background: linear-gradient(180deg, #259b9c, #0d4a4b);
    flex-shrink: 0;
}

.bv-subcat-label span {
    font-size: 13px;
    font-weight: 700;
    color: #259b9c;
    text-transform: uppercase;
    letter-spacing: .6px;
}

/* ── Story Card ── */
.bv-story-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 3px 14px rgba(13, 74, 75, .08);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bv-story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(13, 74, 75, .15);
}

.bv-story-thumb {
    position: relative;
    overflow: hidden;
    height: 160px;
}

.bv-story-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.bv-story-card:hover .bv-story-thumb img {
    transform: scale(1.06);
}

.bv-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 74, 75, .42);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s;
    cursor: pointer;
}

.bv-story-card:hover .bv-play-overlay {
    opacity: 1;
}

.bv-play-overlay i {
    font-size: 34px;
    color: #fff;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .4));
}

.bv-story-num {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(37, 155, 156, .85);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
}

.bv-story-body {
    padding: 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bv-story-title {
    font-size: 14px;
    font-weight: 700;
    color: #0d4a4b;
    margin: 0 0 8px;
    line-height: 1.4;
}

.bv-story-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.bv-story-meta span {
    font-size: 11px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 4px;
}

.bv-story-meta span i {
    color: #259b9c;
}

.bv-story-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.bv-btn-play {
    flex: 1;
    background: linear-gradient(135deg, #259b9c, #0d4a4b);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: opacity .2s;
}

.bv-btn-play:hover {
    opacity: .88;
}

.bv-btn-info {
    background: #f0fdfd;
    color: #259b9c;
    border: 2px solid #c8eaea;
    border-radius: 30px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all .2s;
    white-space: nowrap;
}

.bv-btn-info:hover {
    background: #259b9c;
    color: #fff;
    border-color: #259b9c;
}

/* ── Empty State ── */
.bv-empty {
    text-align: center;
    padding: 60px 20px;
}

.bv-empty-icon {
    font-size: 3.5rem;
    color: #c8eaea;
    margin-bottom: 16px;
    display: block;
}

.bv-empty h5 {
    color: #6b7280;
    font-weight: 700;
}

.bv-empty p {
    color: #9ca3af;
    font-size: 14px;
}

/* ══════════════════════════════════════════════
   CAMPAIGN — redesigned
   ══════════════════════════════════════════════ */

/* Hero banner */
.camp-hero {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 28px;
    position: relative;
    box-shadow: 0 8px 32px rgba(160, 50, 10, .22);
}

.camp-hero-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    filter: brightness(.82);
}

.camp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(160, 50, 10, .78) 0%, rgba(13, 74, 75, .68) 100%);
    display: flex;
    align-items: center;
    padding: 32px 40px;
    gap: 24px;
}

.camp-hero-seal {
    flex-shrink: 0;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: 2px solid rgba(255, 255, 255, .38);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
}

.camp-hero-text h3 {
    margin: 0 0 6px;
    font-size: 1.55rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
}

.camp-hero-text p {
    margin: 0;
    color: rgba(255, 255, 255, .85);
    font-size: 13.5px;
    line-height: 1.6;
}

/* Steps track */
.camp-steps-track {
    display: flex;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 14px rgba(13, 74, 75, .08);
    overflow: hidden;
    margin-bottom: 28px;
}

.camp-step {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-right: 1px solid #f0f0f0;
}

.camp-step:last-child {
    border-right: none;
}

.camp-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e0f7f7;
    color: #259b9c;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .3s;
}

.camp-step.done .camp-step-num {
    background: #e8f5e9;
    color: #2e7d32;
}

.camp-step.active .camp-step-num {
    background: #259b9c;
    color: #fff;
}

.camp-step-label {
    font-size: 12px;
    font-weight: 700;
    color: #9ca3af;
    line-height: 1.3;
}

.camp-step.done .camp-step-label {
    color: #2e7d32;
}

.camp-step.active .camp-step-label {
    color: #0d4a4b;
}

/* Activity card */
.camp-activity-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 30px rgba(13, 74, 75, .10);
    overflow: hidden;
}

.camp-activity-header {
    background: linear-gradient(135deg, #0d4a4b, #259b9c);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.camp-activity-header h4 {
    margin: 0;
    font-weight: 900;
    color: #fff;
    font-size: 1.05rem;
}

.camp-activity-header small {
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
}

.camp-activity-body {
    padding: 28px 32px;
}

/* Download row */
.camp-dl-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: #f0fdfd;
    border-radius: 14px;
    border: 1.5px solid #c8eaea;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.camp-dl-row .fa-file-pdf {
    font-size: 2rem;
    color: #c0392b;
    flex-shrink: 0;
}

.camp-dl-row-text {
    flex: 1;
    min-width: 140px;
}

.camp-dl-row-text strong {
    display: block;
    color: #0d4a4b;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 2px;
}

.camp-dl-row-text span {
    color: #6b7280;
    font-size: 12px;
}

.camp-dl-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Submission tiles */
.camp-sub-tile {
    background: #f8fafb;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px 20px;
    height: 100%;
}

.camp-sub-tile-title {
    font-size: 13px;
    font-weight: 700;
    color: #0d4a4b;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.camp-sub-approved {
    border-color: #a5d6a7 !important;
    background: #f1fdf3 !important;
}

.camp-sub-rejected {
    border-color: #ffcdd2 !important;
    background: #fff5f5 !important;
}

/* Action strip */
.camp-action-strip {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px 28px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

/* Status badge */
.camp-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
}

.badge-pending {
    background: #fff8e1;
    color: #f57c00;
}

.badge-approved {
    background: #e8f5e9;
    color: #2e7d32;
}

.badge-rejected {
    background: #fce4ec;
    color: #c62828;
}

.badge-none {
    background: #f3f4f6;
    color: #666;
}

/* Upload zone */
.upload-zone {
    border: 2px dashed #259b9c;
    border-radius: 14px;
    padding: 28px;
    text-align: center;
    cursor: pointer;
    transition: background .2s;
    background: #f0fdfd;
}

.upload-zone:hover {
    background: #e0f7f7;
}

.upload-zone input[type=file] {
    display: none;
}

/* Submission previews (legacy compat) */
.sub-preview-box {
    background: #f8fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px 18px;
}

/* Buttons */
.btn-primary-teal-camp {
    background: #259b9c;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s;
}

.btn-primary-teal-camp:hover {
    background: #0d4a4b;
    color: #fff;
}

.btn-outline-teal-camp {
    background: transparent;
    color: #259b9c;
    border: 2px solid #259b9c;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
}

.btn-outline-teal-camp:hover {
    background: #259b9c;
    color: #fff;
}

.btn-cert {
    background: linear-gradient(90deg, #e07b2a, #c0392b);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity .2s;
}

.btn-cert:hover {
    opacity: .9;
}

/* ══════════════════════════════════════════════
   CERTIFICATE MODAL — redesigned & compression-fixed
   ══════════════════════════════════════════════ */

/* ── Outer certificate wrapper ── */
#certPreview {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 32px rgba(0, 0, 0, .20);
    /* Fixed aspect ratio close to A4 landscape view: 680×480 */
    width: 680px;
    min-height: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

/* ── HEADER: full-width three-photo strip ── */
.cert-header-strip {
    width: 100%;
    height: 210px;
    overflow: hidden;
    flex-shrink: 0;
    display: block;
    background: linear-gradient(135deg, #c0392b, #0d4a4b);
}

.cert-header-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

/* ── TWO-COLUMN BODY ── */
.cert-body-row {
    display: flex;
    flex-direction: row;
    flex: 1;
    min-height: 340px;
}

/* ── LEFT: Red panel — unique branded design ── */
.cert-col-left {
    width: 36%;
    flex-shrink: 0;
    background: #c0392b;
    position: relative;
    overflow: hidden;
    padding: 18px 14px 0 18px;
    display: flex;
    flex-direction: column;
}

/* Decorative circles for depth */
.cert-left-circle {
    position: absolute;
    border-radius: 50%;
    border: 10px solid rgba(255, 255, 255, 0.07);
    pointer-events: none;
}

/* Dark top accent band */
.cert-left-top-band {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: rgba(0, 0, 0, 0.16);
    pointer-events: none;
}

/* Gold divider line below brand text */
.cert-left-divider {
    width: 85%;
    height: 1px;
    background: rgba(255, 215, 0, 0.50);
    margin: 10px 0 8px 0;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

/* Sanskrit label below divider */
.cert-left-mantra {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

/* Hanuman tree watermark — visible but subordinate */
.cert-wm {
    position: absolute;
    bottom: 0;
    left: -5px;
    width: 110%;
    height: 72%;
    pointer-events: none;
    z-index: 1;
}

.cert-wm img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom left;
    display: block;
    /* Remove background: use mix-blend-mode to drop white bg from jpeg */
    mix-blend-mode: multiply;
    opacity: 0.90;
}

/* Gold footer bar at bottom of left panel */
.cert-left-gold-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 215, 0, 0.32);
    z-index: 3;
}

/* Brand text — sits above watermark */
.cert-left-brand {
    position: relative;
    z-index: 2;
    color: #fff;
    font-family: 'Roboto', Arial, sans-serif;
    flex-shrink: 0;
}

.cert-left-brand .clb-reg {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.3;
    display: block;
    color: rgba(255, 255, 255, 0.85);
}

.cert-left-brand .clb-bold {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.15;
    display: block;
    margin-top: 3px;
    color: #fff;
}

.cert-left-brand .clb-sub {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.4;
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.90);
}

.cert-left-brand .clb-year {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.4;
    display: block;
    color: rgba(255, 255, 255, 0.90);
}

/* ── RIGHT: White content panel ── */
.cert-col-right {
    flex: 1;
    background: #ffffff;
    padding: 16px 22px 14px 20px;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Faint corner accent top-right */
.cert-col-right::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(192, 57, 43, 0.05);
    pointer-events: none;
}

/* Logo row at top-center */
.cert-top-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 6px;
    min-height: 36px;
}

.cert-top-logo img {
    height: 32px;
    display: inline-block;
    object-fit: contain;
}

/* Red rule under heading */
.cert-heading-rule {
    width: 80px;
    height: 2px;
    background: #c0392b;
    margin: 0 auto 10px auto;
}

.cert-main-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Palatino Linotype', 'Book Antiqua', Georgia, serif;
    line-height: 1.3;
    margin-bottom: 4px;
    letter-spacing: 1.5px;
}

/* "Proudly presented to" */
.cert-presented {
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    color: #999;
    margin-bottom: 4px;
    font-family: 'Roboto', Arial, sans-serif;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

/* Student name + long underline */
.cert-name-underline {
    border-bottom: 1px solid #dddddd;
    padding-bottom: 8px;
    margin-bottom: 12px;
    min-height: 28px;
    width: 100%;
}

.cert-student-name {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    font-family: 'Palatino Linotype', 'Book Antiqua', Georgia, serif;
    text-transform: capitalize;
    word-break: break-word;
    line-height: 1.2;
}

/* Body paragraphs */
.cert-body-text {
    font-size: 12px;
    color: #555;
    line-height: 1.85;
    text-align: center;
    flex: 1;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    margin-bottom: 4px;
}

.cert-body-text strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Bottom row: sig left | website center | logos right */
.cert-bottom-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 10px;
    gap: 8px;
}

.cert-sig-left {
    flex: 0 0 auto;
}

.cert-sig-center {
    flex: 1;
    text-align: center;
    font-size: 10px;
    color: #777;
    font-family: 'Roboto', Arial, sans-serif;
    letter-spacing: 0.5px;
    padding-bottom: 2px;
}

.cert-sig-right {
    flex: 0 0 auto;
    display: flex;
    gap: 6px;
    align-items: flex-end;
}

/* Signature image */
.cert-sig-img {
    height: 26px;
    display: block;
    margin-bottom: 3px;
}

.cert-sig-label {
    font-size: 11px;
    color: #555;
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.5;
}

.cert-sig-label strong {
    display: block;
    color: #1a1a1a;
    font-size: 11.5px;
    font-weight: 700;
}

/* Baala Veda + Baalayana logos — fixed to sane size */
.cert-sig-right img {
    height: 85px;
    display: block;
    object-fit: contain;
}

/* ── FOOTER: red bar at bottom ── */
.cert-footer-bar {
    display: block;
    width: 100%;
    height: 7px;
    background: #c0392b;
    flex-shrink: 0;
}

/* ── Responsive ── */
@media(max-width:576px) {
    .bv-tab-btn span {
        display: none;
    }

    .bv-tab-btn i {
        font-size: 20px;
    }

    .camp-hero-overlay {
        flex-direction: column;
        padding: 24px 20px;
        align-items: flex-start;
    }

    .camp-hero-img {
        height: 200px;
    }

    .camp-hero-text h3 {
        font-size: 1.15rem;
    }

    .camp-steps-track {
        flex-direction: column;
    }

    .camp-step {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }

    .camp-activity-body {
        padding: 18px 16px;
    }

    .camp-action-strip {
        padding: 16px;
    }

    .cert-body-row {
        flex-direction: column;
    }

    .cert-col-left {
        width: 100%;
        min-height: 130px;
        padding-bottom: 16px;
    }

    .cert-wm {
        height: 80%;
    }

    .cert-header-strip {
        height: 150px;
    }

    #certPreview {
        width: 100%;
        min-height: unset;
    }

    .cert-main-title {
        font-size: 15px;
        letter-spacing: 0.8px;
    }

    .cert-student-name {
        font-size: 18px;
    }

    .cert-bottom-row {
        flex-wrap: wrap;
        gap: 10px;
    }

    .cert-sig-center {
        order: 3;
        width: 100%;
        text-align: center;
    }

    .cert-top-logo img {
        height: 26px;
    }

    .cert-sig-right img {
        height: 28px;
    }
}

/* Removed custom inline audio player CSS */

/* ===== Shared Package Card Styles (index.php & subscription_plans.php) ===== */

/* Pricing card base */
.pricing-card {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-header h2 {
    margin: 0;
    font-size: 20px !important;
    text-transform: uppercase;
    font-weight: bold;
}

.packg-header { font-size: 20px !important; }
.packg-sub { font-size: 14px !important; color: #000 !important; font-weight: 600; }

.price-badge {
    position: absolute;
    bottom: -55px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #259b9c, #259b9c94);
    color: #fff;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 4px solid #fff;
}

.price-badge sub { font-size: 12px; vertical-align: top; margin-right: 2px; }

.card-body { padding: 60px 25px 20px; height: 200px; }

.features { list-style: none; padding: 0; margin: 0 0 20px; }
.features li { margin: 12px 0; font-size: 14px; color: #555; position: relative; padding-left: 24px; }
.features li::before { position: absolute; left: 0; top: 2px; font-size: 16px; }
.features .included::before { content: "✔"; color: #259b9c; }
.features .excluded::before { content: "✖"; color: #c53d47; }

.card-footer {
    background: linear-gradient(90deg, #259b9c, #259b9c94);
    padding: 20px;
    text-align: center;
    border-top: 4px solid #d25438;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.card-footer a {
    background: linear-gradient(90deg, #c53d47, #ffa500);
    color: #fff;
    text-decoration: none;
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s;
}

.card-footer a:hover { background: linear-gradient(90deg, #c53d47, #ffa500); }

/* Swiper */
.swiper-container { overflow: hidden; padding-block: 15px; }

.swiper-button-prev, .swiper-button-next {
    margin: 0;
    position: absolute;
    transform: translateY(-40%);
    padding: 0;
    background: #259b9c;
    color: #ffffff;
    border-radius: 50px;
    transition: 0.5s;
    width: 50px;
    height: 50px;
    line-height: 65px;
    text-align: center;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after { font-size: larger; font-weight: bold; }

/* Featured package highlight (gold — annual ₹2000) */
.featured-package {
    box-shadow: 0 0 25px rgba(240, 175, 73, 0.4) !important;
    transform: scale(1.00);
    transition: all 0.3s ease;
}
.featured-package:hover { transform: scale(1.05); box-shadow: 0 15px 40px rgba(240, 175, 73, 0.4) !important; }
.featured-package .price-badge {
    background: linear-gradient(135deg, rgb(213, 110, 50), rgb(240, 175, 73));
    border-color: rgb(240, 175, 73);
    animation: pkg-pulse-glow 2s infinite;
}
@keyframes pkg-pulse-glow {
    0%, 100% { box-shadow: 0 4px 12px rgba(240, 175, 73, 0.4); }
    50%       { box-shadow: 0 4px 20px rgba(240, 175, 73, 0.7); }
}
.card-footer.featured-package {
    background: linear-gradient(135deg, rgb(213, 110, 50), rgb(240, 175, 73));
    border-top: 4px solid #d97635;
}
.featured-package a {
    background: linear-gradient(90deg, #3a170e, #3a170e70);
    color: #fff;
    text-decoration: none;
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s;
}
.featured-package a:hover { background: linear-gradient(90deg, #3a170e, #3a170e70); }
ul.features.featured-package { border: none; box-shadow: unset !important; }
.featured-package i.fas.fa-check-circle.me-1 { color: #d97735 !important; }
span.tooltip-package { color: #d97735 !important; }
div.tooltip-package { background-color: #d97735 !important; }

/* Donor package highlight (#c53d47 theme) */
.donor-package {
    box-shadow: 0 0 25px rgba(197, 61, 71, 0.35) !important;
    transform: scale(1.00);
    transition: all 0.3s ease;
}
.donor-package:hover { transform: scale(1.05); box-shadow: 0 15px 40px rgba(197, 61, 71, 0.45) !important; }
.donor-package .price-badge {
    background: linear-gradient(135deg, #c53d47, #e87b55);
    border-color: #c53d47;
    animation: donor-pulse-glow 2s infinite;
}
@keyframes donor-pulse-glow {
    0%, 100% { box-shadow: 0 4px 12px rgba(197, 61, 71, 0.35); }
    50%       { box-shadow: 0 4px 20px rgba(197, 61, 71, 0.65); }
}
.card-footer.donor-package {
    background: linear-gradient(135deg, #c53d47, #e06060);
    border-top: 4px solid #a52030;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.donor-package a {
    background: linear-gradient(90deg, #5a0a10, #5a0a1080);
    color: #fff;
    text-decoration: none;
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s;
}
.donor-package a:hover { background: linear-gradient(90deg, #5a0a10, #5a0a1080); }
.donor-package button {
    background: linear-gradient(90deg, #5a0a10, #5a0a1080);
    color: #fff;
    width: 225px;
    text-decoration: none;
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s;
}
.donor-package button:hover { background: linear-gradient(90deg, #5a0a10, #5a0a1080); }
ul.features.donor-package { border: none; box-shadow: unset !important; }
.donor-package i.fas.fa-check-circle.me-1 { color: #c53d47 !important; }
span.tooltip-donor { color: #c53d47 !important; }
div.tooltip-donor { background-color: #c53d47 !important; }

/* Special Offer Badge */
.special-offer-badge {
    position: absolute;
    top: -8px; left: -8px;
    z-index: 10;
    width: 120px; height: 120px;
    overflow: hidden;
}
.special-offer-badge::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 200%; height: 200%;
    background: linear-gradient(135deg, rgba(239,28,96,0.46) 0%, rgb(239,28,96) 50%, rgb(58,23,14) 100%);
    transform: rotate(-45deg) translate(-50%, -50%);
    transform-origin: top left;
}
.special-offer-badge span {
    position: absolute;
    top: 35px; left: -23px;
    width: 150px;
    background: rgb(239,28,96);
    color: #fff;
    text-align: center;
    font-size: 11px;
    font-weight: bold;
    padding: 5px 0;
    transform: rotate(-45deg);
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
    border-top: 1px solid rgb(244,243,241);
    border-bottom: 1px solid rgb(244,243,241);
}

/* btn-pulse */
.btn-pulse:hover { animation: pkg-pulse 1.5s infinite; }
@keyframes pkg-pulse {
    0%   { transform: scale(1);    box-shadow: 0 0 0 0 #c53d47; }
    70%  { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(155,89,182,0); }
    100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(155,89,182,0); }
}

/* Language toggle */
.toggle-switch { position: relative; width: 80px; height: 40px; background: #eaeaea; border-radius: 30px; cursor: pointer; display: flex; align-items: center; padding: 0 5px; transition: background 0.3s ease; }
.toggle-ball { width: 30px; height: 30px; background: #40bdf2; border-radius: 50%; transition: transform 0.3s ease; }
.toggle-labels { position: absolute; width: 100%; display: flex; justify-content: space-between; font-size: 12px; padding: 0 8px; color: #333; }
.toggled .toggle-ball { transform: translateX(40px); }

/* Package section responsive */
@media (max-width: 767px) {
    .pricing-card { width: 100%; margin: 0 15px; }
    .price-badge { width: 80px; height: 80px; font-size: 24px; bottom: -45px; }
    .swiper-wrapper { align-items: center; }
    .card-header h2 { font-size: 20px; }
    .card-body { padding: 40px 20px 15px; }
    .features li { font-size: 12px; }
    .features li::before { font-size: 12px; top: 0px; }
    .card-footer { padding: 15px; }
    .card-footer a { padding: 8px 20px; }
    .swiper-button-prev, .swiper-button-next { width: 40px; height: 40px; line-height: 50px; }
    .swiper-button-prev:after, .swiper-button-next:after { font-size: 18px; }
    .swiper-button-prev { left: 10px; }
    .swiper-button-next { right: 10px; }
    .swiper-container { overflow: hidden; padding-left: 0px; }
    .special-offer-badge { width: 100px; height: 100px; }
    .special-offer-badge span { font-size: 9px; width: 130px; padding: 4px 0; top: 18px; left: -22px; }
}

@media (max-width: 480px) {
    .price-badge { width: 70px; height: 70px; font-size: 20px; bottom: -40px; }
    .pricing-card { width: 100%; margin: 10px; }
    .card-header h2 { font-size: 18px; }
    .card-body { padding: 40px 15px 10px; }
    .features li { font-size: 11px; }
    .features li::before { font-size: 11px; top: 0px; }
    .card-footer { padding: 10px; }
    .card-footer a { padding: 6px 15px; }
    .swiper-button-prev, .swiper-button-next { width: 35px; height: 35px; line-height: 45px; }
    .swiper-button-prev:after, .swiper-button-next:after { font-size: 16px; }
    .swiper-button-prev { left: 5px; }
    .swiper-button-next { right: 5px; }
    .swiper-container { overflow: hidden; padding-left: 0px; }
    .special-offer-badge { width: 90px; height: 90px; }
    .special-offer-badge span { font-size: 8px; width: 120px; padding: 3px 0; top: 16px; left: -20px; }
}

@media (min-width: 768px) and (max-width: 1400px) {
    .card-body { height: 200px; }
}.sponsor-cta-banner {
    position: relative; overflow: hidden;
    background: linear-gradient(120deg, #7b2500 0%, #c53d47 50%, #e57025 100%);
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 6px 28px rgba(197,61,71,0.28);
    border: 1.5px solid rgba(229,112,37,0.3);
}
/* Shimmer sweep across banner */
.sponsor-cta-banner::before {
    content: '';
    position: absolute; top: 0; left: -100%;
    width: 55%; height: 100%;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.11) 50%, transparent 60%);
    animation: bannerShimmer 3.2s ease-in-out infinite;
    pointer-events: none; z-index: 1;
}
/* Glow orb top-right */
.sponsor-cta-banner::after {
    content: '';
    position: absolute; top: -30px; right: -30px;
    width: 110px; height: 110px; border-radius: 50%;
    background: radial-gradient(circle, rgba(229,112,37,0.4) 0%, transparent 70%);
    animation: orbPulse 2.5s ease-in-out infinite alternate;
    pointer-events: none; z-index: 0;
}
@keyframes bannerShimmer { 0%{left:-100%} 60%{left:140%} 100%{left:140%} }
@keyframes orbPulse { 0%{transform:scale(1);opacity:.5} 100%{transform:scale(1.3);opacity:.9} }
.sponsor-cta-inner {
    position: relative; z-index: 2;
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap;
    gap: 10px; padding: 12px 22px;
}
.sponsor-cta-left {
    display: flex; align-items: center; gap: 11px;
}
.sponsor-cta-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.14);
    border: 1.5px solid rgba(255,255,255,0.28);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
    animation: iconBeat 1.8s ease-in-out infinite;
}
@keyframes iconBeat {
    0%,100%{ transform:scale(1); box-shadow:0 0 0 0 rgba(229,112,37,.5); }
    50%    { transform:scale(1.14); box-shadow:0 0 0 8px rgba(229,112,37,0); }
}
.sponsor-cta-text {
    display: flex; flex-direction: column; gap: 1px;
}
.sponsor-cta-text strong {
    font-size: 13.5px; font-weight: 800; color: #fff;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2); line-height: 1.3;
}
.sponsor-cta-text small {
    font-size: 11px; color: rgba(255,255,255,0.72); line-height: 1.3;
}
/* ── Animated CTA Button ── */
.sponsor-cta-btn {
    position: relative; overflow: hidden;
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: #c53d47;
    font-size: 13px; font-weight: 800;
    padding: 9px 20px; border-radius: 50px; border: none;
    text-decoration: none; white-space: nowrap; flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    /* continuous idle bounce */
    animation: btnBounce 2s ease-in-out infinite;
    transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s, color 0.2s;
}
/* shimmer sweep on button */
.sponsor-cta-btn::before {
    content: '';
    position: absolute; top: 0; left: -80%;
    width: 55%; height: 100%;
    background: linear-gradient(105deg, transparent 30%, rgba(197,61,71,0.14) 50%, transparent 70%);
    animation: btnShimmer 2.2s ease-in-out infinite;
    pointer-events: none;
}
/* gradient fill overlay on hover */
.sponsor-cta-btn::after {
    content: '';
    position: absolute; inset: 0; border-radius: 50px;
    background: linear-gradient(135deg, #c53d47, #e57025);
    opacity: 0; transition: opacity 0.25s;
}
.sponsor-cta-btn:hover::after  { opacity: 1; }
.sponsor-cta-btn:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 10px 28px rgba(197,61,71,0.45);
    animation: none;
}
.sponsor-cta-btn i,
.sponsor-cta-btn span { position: relative; z-index: 1; }
@keyframes btnBounce {
    0%,100% { transform: translateY(0); }
    45%     { transform: translateY(-4px); }
    55%     { transform: translateY(-4px); }
}
@keyframes btnShimmer {
    0%   { left: -80%; }
    60%  { left: 130%; }
    100% { left: 130%; }
}
@media (max-width: 600px) {
    .sponsor-cta-inner { padding: 11px 14px; }
    .sponsor-cta-btn { width: 100%; justify-content: center; }
}

/* ── Ribbon: only on card-header inside donor card ── */
.pricing-card.donor-package .card-header::before {
    content: '🎁 SPONSOR PACKAGE';
    position: absolute;
    top: 14px; left: 0;
    background: linear-gradient(90deg, #c53d47, #e57025);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.1px;
    padding: 5px 16px 5px 10px;
    border-radius: 0 20px 20px 0;
    z-index: 10;
    box-shadow: 2px 2px 10px rgba(197,61,71,0.5);
    animation: donorRibbonPop 2.5s ease-in-out infinite alternate;
    pointer-events: none;
}
@keyframes donorRibbonPop {
    0%   { transform: translateX(0);   box-shadow: 2px 2px 8px  rgba(197,61,71,0.4); }
    100% { transform: translateX(4px); box-shadow: 5px 2px 18px rgba(229,112,37,0.65); }
}

/* ── Price badge ── */
.pricing-card.donor-package .price-badge {
    background: linear-gradient(135deg, #8b1c25, #c53d47, #e57025);
    border-color: #c53d47;
    animation: donorPriceGlow 1.8s ease-in-out infinite;
}
@keyframes donorPriceGlow {
    0%, 100% { box-shadow: 0 4px 12px rgba(197,61,71,0.4), 0 0 0 0   rgba(229,112,37,0.5); }
    50%       { box-shadow: 0 6px 24px rgba(197,61,71,0.7), 0 0 0 10px rgba(229,112,37,0);   }
}