        /* Global Box-Sizing Reset for consistent layout */
        *, *::before, *::after {
            box-sizing: border-box;
        }

        body, html {
            overflow-x: hidden;
        }
        
        main {
            padding-top: 92px;
            background-color: #010101;
        }
        @media (max-width: 768px) {
        main {
            padding-top: 103px;
            }
        }

        /* Myanmar Jojar Pro Font Definition */
        /* Note: The font files (MyanmarJojarPro.woff2, MyanmarJojarPro.woff) must be hosted in a 'fonts' directory relative to this HTML file for the font to display correctly. */
        @font-face {
            font-family: 'Myanmar Jojar Pro';
            src: url('fonts/MyanmarJojarPro.woff2') format('woff2'),
                 url('fonts/MyanmarJojarPro.woff') format('woff');
            font-weight: normal;
            font-style: normal;
            font-display: swap; /* Ensures text remains visible during font loading */
        }
        
        /* YoeYar-One Font Definition */
        @font-face {
            font-family: 'YoeYar-One';
            src: url('fonts/YoeYar-One.woff2') format('woff2'),
                 url('fonts/YoeYar-One.woff') format('woff');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'MyanmarSquare';
            src: url('fonts/MyanmarSquare.woff2') format('woff2'),
                 url('fonts/MyanmarSquare.woff') format('woff');
            font-weight: bold;
            font-style: normal;
        }

        @font-face {
            font-family: 'MyanmarSquareLight';
            src: url('fonts/MyanmarSquareLight.woff2') format('woff2'),
                 url('fonts/MyanmarSquareLight.woff') format('woff');
            font-weight: normal;
            font-style: normal;
        }

        /* Ubuntu Font Definition (for English body text) */
        @import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap');
        /* Merienda Font Definition (for English headings) */
        @import url('https://fonts.googleapis.com/css2?family=Merienda:wght@700&display=swap');


        /* Dark Mode Styles with Myanmar Jojar Pro as primary font */
        body {
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #1a1a1a; /* Dark background */
            color: #e0e0e0; /* Light text */
            line-height: 1.6;
            overflow-x: hidden; 
        }

        /* START: CSS rule for Myanmar font */
        body.lang-my #hero h1,
        body.lang-my .section-title,
        body.lang-my .dj-card h3,
        body.lang-my .podcast-card h3,
        body.lang-my .sponsorship-info-box h3,
        body.lang-my .branches-card h3,
        body.lang-my .service-item h3,
        body.lang-my .terms-title h3,
        body.lang-my footer h3,
        body.lang-my .btn {
            font-family: 'Myanmar Jojar Pro', sans-serif;
        }

        body.lang-my p,
        body.lang-my #hero p,
        body.lang-my .dj-card p,
        body.lang-my .podcast-card p,
        body.lang-my .card-content p,
        body.lang-my .podcast-blackbox p,
        body.lang-my .sponsorship-info-box p,
        body.lang-my .branches-card p,
        body.lang-my .service-item p,
        body.lang-my .terms-description p,
        body.lang-my footer p,
        body.lang-my .form-group input,
        body.lang-my .form-group textarea ,
        body.lang-my .btn-song-request{
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif;
            font-size: 1.1rem;
        }
         /* END: CSS rule for Myanmar font */
         
        /* START: CSS rule for English font */
        body.lang-en {
            font-family: "Handlee", cursive;
            font-weight: normal;
            font-style: normal;
        }

        body.lang-en h1,
        body.lang-en .section-title,
        body.lang-en .dj-card h3,
        body.lang-en .podcast-card h3,
        body.lang-en .sponsorship-info-box h3,
        body.lang-en .branches-card h3,
        body.lang-en .service-item h3,
        body.lang-en .terms-title h3,
        body.lang-en header nav ul li a {
            font-family: 'Merienda', cursive;
        }

        body.lang-en .card-content h3 {
            font-family: 'Merienda', cursive;
            font-size: 1.3rem;
        }

        body.lang-en footer h3 {
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif;
            font-size: 1.3rem;
        }

        body.lang-en p,
        body.lang-en #hero p,
        body.lang-en .dj-card p,
        body.lang-en .podcast-card p,
        body.lang-en .card-content p,
        body.lang-en .sponsorship-info-box p,
        
        body.lang-en .service-item p,
        body.lang-en .terms-description p,
        body.lang-en .form-group input,
        body.lang-en .form-group textarea,
        body.lang-en .btn-song-request {
            font-family: "Handlee", cursive;
            font-size: 1.25rem;
        }

        body.lang-en .branches-card p,
        body.lang-en .podcast-blackbox p,
        body.lang-en footer p {
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif;
            font-size: 1.1rem;
        }
        /* END: CSS rule for English font */

        /* Container for content centering and padding */
        .container {
            max-width: 1200px;
            margin: auto;
            padding: 0 4vw; /* Responsive padding for better mobile fit */
        }

        .mini-nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }

        /* Header Styles */
        header {
            background: #0c0c0c; /* Darker header background */
            padding: .5rem 0;
            border-bottom: 1px solid #3a3a3a; /* Darker border */
            top: 26px;
            position: fixed; /* Sticky header for navigation */
            width: 100%;
            z-index: 1000; /* Ensures header stays on top */
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative; /* Needed for absolute positioning of menu-toggle and nav ul */
        }

        #logo img {
            height: 50px;
            vertical-align: middle;
            filter: brightness(0) invert(1);
            /*filter: brightness(0.8) contrast(1.2); /* Adjust logo for dark mode if needed */
            /* Note: 'logo.png' must be in the same directory as this HTML file. */
        }

        #logo img:hover {
            filter: none; /* hover လုပ်ရင် filter ကို ဖျက်လိုက်မယ် */
        }

        /* Hamburger Menu Icon (hidden on larger screens) */
        .menu-toggle {
            display: none; /* Hide by default for web view */
            cursor: pointer;
            font-size: 2rem;
            color: #e0e0e0;
            position: relative;
            z-index: 1001;
            padding: 5px 10px;
        }

        /* Desktop Navigation Styles */
        header nav {
            display: block; /* Show navigation by default on desktop */
        }

        header nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex; /* Arrange menu items horizontally */
            align-items: center;
        }

        header nav ul li {
            margin-left: 20px; /* Spacing between main menu items */
            position: relative; /* For dropdown positioning */
        }

        header nav ul li a {
            color: #e0e0e0;
            font-size: 1rem;
            text-decoration: none;
            display: block;
            padding: 10px 0;
            transition: color 0.3s ease;
            font-weight: bold;
        }

        header nav ul li a:hover {
            color: #c90909;
        }

        /* Dropdown menu styles for desktop */
        header nav .dropdown {
            display: none; /* Hidden by default */
            position: absolute;
            top: 100%; /* Position below the parent link */
            left: 0;
            background-color: #0c0c0c; /* Same as header background */
            min-width: 200px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
            z-index: 1000;
            border-radius: 5px;
            padding: 10px 0;
        }

        header nav .dropdown li {
            margin: 0; /* No horizontal margin for dropdown items */
        }

        header nav .dropdown li a {
            padding: 8px 20px; /* Padding for dropdown links */
            font-size: 1rem;
            color: #b0b0b0; /* Slightly muted color for sub-links */
            white-space: nowrap; /* Prevent text wrapping */
        }

        header nav .dropdown li a:hover {
            background-color: rgba(255,255,255,0.05);
            color: #c90909;
        }

        /* Show dropdown on hover for desktop */
        header nav li.has-dropdown:hover .dropdown {
            display: block;
        }

        /* Arrow icon for dropdown parent links on desktop */
        header nav li.has-dropdown > a::after {
            content: '\25BC'; /* Unicode down arrow */
            font-size: 0.7em;
            margin-left: 8px;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        header nav li.has-dropdown:hover > a::after {
            transform: rotate(180deg); /* Rotate arrow when dropdown is active */
        }


        /* Full-screen Overlay Fix */
        .full-screen-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw; /* Ensures full viewport width */
            height: auto; /* Ensures full viewport height */
            background-color: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            display: flex;
            flex-direction: column;
            justify-content: flex-start; /* Aligns content to the top */
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-100%);
            transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, visibility 0.5s;
            z-index: 9999;
        }

        .full-screen-overlay.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* This will ensure the close button is visible */
        .close-overlay-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 2rem;
            color: #fff;
            cursor: pointer;
            z-index: 10000; /* Must be higher than the overlay to be clickable */
            transition: transform 0.3s ease;
        }

        .close-overlay-btn:hover {
            transform: rotate(90deg);
        }

        /* Fix the content alignment and padding */
        .overlay-content {
            width: 90%;
            max-width: 500px;
            padding: 20px;
            color: #fff;
            text-align: center;
            display: flex;
            flex-direction: column;
            height: 100%;
            box-sizing: border-box; /* Crucial for padding to not affect height */
            /* You may need to remove margin-top: auto from the nav inside if you've added it */
        }

        /* New: Make the language switcher sticky to the top of the overlay */
        .overlay-lang-switcher {
            width: 100%;
            display: flex;
            justify-content: flex-end; /* Align icons to the right */
            align-items: center;
            padding: 15px 20px; /* Add some padding around the icons */
            top: 0;
            z-index: 10000; /* Ensure it's on top of the menu items */
        }

        /* New Menu List Styles */
        .full-screen-overlay nav {
            margin-top: 0;
        }

        .full-screen-overlay nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: center;
        }

        .full-screen-overlay nav ul li {
            margin: 1.5rem 0;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
        }

        /* Animate list items in when the menu opens */
        .full-screen-overlay.active nav ul li {
            opacity: 1;
            transform: translateY(0);
        }

        /* Add a slight delay to each item for a staggered effect */
        .full-screen-overlay.active nav ul li:nth-child(1) { transition-delay: 0.1s; }
        .full-screen-overlay.active nav ul li:nth-child(2) { transition-delay: 0.2s; }
        .full-screen-overlay.active nav ul li:nth-child(3) { transition-delay: 0.3s; }
        .full-screen-overlay.active nav ul li:nth-child(4) { transition-delay: 0.4s; }
        .full-screen-overlay.active nav ul li:nth-child(5) { transition-delay: 0.5s; }

        .full-screen-overlay nav ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: bold;
            display: block;
            transition: color 0.3s ease;
        }

        .full-screen-overlay nav ul li a:hover {
            color: #e60000; /* Padamyar red */
        }

        /* Style for the dropdown sub-menu in mobile */
        .full-screen-overlay .dropdown {
            height: 0;
            opacity: 0;
            overflow: hidden;
            transition: height 0.5s ease-in-out, opacity 0.5s ease-in-out;
        }

        .full-screen-overlay .dropdown.active {
            height: auto; /* Use auto to allow content to expand */
            opacity: 1;
        }

        .full-screen-overlay .dropdown ul {
            list-style: none;
            padding: 10px 0 0 20px;
            margin: 0;
            text-align: left;
        }

        .full-screen-overlay .dropdown ul li a {
            font-size: 1.2rem;
            font-weight: normal;
            padding: 10px 0;
        }

        /* Style for the language switcher in the mobile menu */
        .overlay-lang-switcher {
            margin-top: 10px;
            border-top: none;
            padding-top: 0;
        }

        .overlay-lang-switcher a {
            color: #fff;
            text-decoration: none;
            font-size: 1.2rem;
        }

        .overlay-lang-switcher a.active {
            color: #e60000;
        }

        /* Close button style */
        .close-overlay-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 2rem;
            color: #fff;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .close-overlay-btn:hover {
            transform: rotate(90deg);
        }

        /* Mobile-specific styles for the hamburger menu */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            .main-nav {
                display: none;
            }
            .mini-nav-container {
                justify-content: flex-end; /* Ensure language icons stay on the right */
                padding-right: 20px;
            }
        }

        /* Mini Navigation Bar */
        .mini-nav {
            background-color: black; /* A dark color for the top bar */
            padding: 0.25rem 0;
            width: 100%;
            height: 26px;
            position: fixed;
            z-index: 1000; /* Ensure it's on top of other content */
            border-bottom: 1px solid #1a1a1a;
        }

        .mini-nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: flex-end; /* Align links to the right */
        }

        .mini-nav-links {
            display: flex;
            gap: 15px; /* Spacing between the icons */
        }

        .lang-icon {
            display: inline-block;
            width: 24px;
            height: 24px;
            color: #888; /* Inactive color */
            transition: color 0.3s ease;
        }

        .lang-icon svg {
            display: block;
            width: 100%;
            height: 100%;
            fill: currentColor;
        }

        .lang-icon:hover {
            color: #fff; /* Hover color */
        }

        .lang-icon.active {
            color: #e60000; /* Active color, e.g., Padamyar red */
        }

        /* You might need to adjust the main nav to not overlap with the new mini-nav */
        .header-wrapper {
            /* Add padding-top to the main header if necessary to avoid collision */
            padding-top: 50px; /* Example: adjust based on the height of your mini-nav */
        }

        /* Hero Section Styles */
        #hero {
            background-color: rgba(0,0,0,.7); /* Default dark overlay */
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover;
            /* Added for smooth background image transitions */
            transition: background-image 1s ease-in-out, opacity 1s ease-in-out; 

            color: #fff;
            height: 60vh; /* Responsive height */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            
            padding-bottom: 2rem; 
            position: relative; /* To allow overlay for background image transitions */
        }

        /* Overlay for fade transition */
        #hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7); /* Dark overlay */
            z-index: 1;
        }

        /* Ensures content is above the overlay */
        #hero > *:not(.hero-bg-transition-layer) { 
            z-index: 2;
            position: relative;
        }

        /* Layer for smooth background image transition */
        .hero-bg-transition-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover;
            opacity: 0;
            transition: opacity 1s ease-in-out; /* Fade transition for images */
            z-index: 0; /* Below overlay and content */
        }
        .hero-bg-transition-layer.active {
            opacity: 1;
        }

        #hero h1 {
            font-size: 3rem;
            margin-bottom: 10px;
        }

        #hero p {
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        /* Button Styles */
        .btn {
            display: inline-block;
            background: transparent; /* Original button color */
            color: #fff;
            padding: 2px 2px;
            border-radius: 2px;
            text-decoration: none;
            font-weight: 700;
            transition: background .3s ease;
            cursor: pointer;
            border: none;
            font-family: sans-serif; /* Specific font for slider text */
            font-size: 1rem;
            margin-bottom: 20px; /* Add margin below the button */
        }

        .btn:hover {
            color: #d80101;
        }
        
        .icon {
            width: 4rem;
            height: 4rem;
        }

        /* CSS for the spinner animation */
        @keyframes spin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        
        /* Apply the animation to the loading icon */
        #loadingIcon.spinner {
            animation: spin 0.5s linear infinite;
            transform-origin: center;
        }

        .nowplaying {
            max-width: 1000px;
            margin: auto;
            padding: 0 2vw;
        }

        .nowplaying-full-width {
            font-size: 1.1rem;
            font-weight: bold;
            position: relative;
            overflow: hidden;
            width: 100%;
            line-height: 1.25rem;
            color: #2c2c2c;
            display: flex;
            align-items: center;
            padding: 0.2rem 0px;
            border-radius: 5px;
        }

        .boxonair {
            color: #fff;
            border-radius: 4px;
            padding: 10px;
            font-family: "Bebas Neue", sans-serif;
            font-size: 1.5  rem;
            font-weight: 400;
            font-style: normal;
            text-align: center;
        }

        .text-container {
            padding-left: 10px;
        }

        .stream-title-song {
            /* Original font styles */
            font-family: 'MyanmarSquare';
            font-size: 1.1rem;
            line-height: 1.5rem;

            /* Marquee container styles */
            overflow: hidden; 
            white-space: nowrap; 
            box-sizing: border-box;
        }   

        .stream-title-artist {
            /* Original font styles */
            color: #464646b0;
            font-family: 'MyanmarSquareLight';
            font-size: 0.8rem;

            /* Marquee container styles */
            overflow: hidden; 
            white-space: nowrap; 
            box-sizing: border-box;
        }

        /* Marquee animation styles for the inner element */
        .stream-title-song span,
        .stream-title-artist span {
            display: inline-block;
            padding-left: 100%;
            animation: scroll-left 15s linear infinite; 
        }

        /* Define the animation keyframes */
        @keyframes scroll-left {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-100%);
            }
        }  


        
        /* Styles for the text slider now inside #hero */
        .text-slider {
            position: relative;
            width: 100%;
            max-width: 600px;
            overflow: hidden; 
            height: 2.2rem; /* Fixed height to prevent layout shifts */
            line-height: 1.2rem;
            margin-top: 10px;
            color: #ffffff;
            background-color: rgba(0, 0, 0, 0.4);
            padding: 0.5rem 20px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-item {
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            width: 100%;
            text-align: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            font-family: 'Myanmar Text', sans-serif; /* Specific font for slider text */
            font-style: normal;
            font-weight: normal;
            color: inherit;
        }

        .slider-item.active {
            opacity: 1;
        }

        .section-anchor {
            scroll-margin-top: 26px;
        }

        /* General Section Styles */
        .section {
            padding: 4rem 0;
            scroll-margin-top: 26px;
            min-height: 100px; /* Added min-height for sections, helps with Firefox rendering on some viewports */
        }
        

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1.5rem; /* Reduced margin to make space for date */
            color: #c90909; /* Brighter title color for contrast */
            font-family: 'Myanmar Jojar Pro', sans-serif;
        }

        /* Date display below section title */
        .section-date {
            text-align: center;
            font-size: 1.1rem;
            color: #b0b0b0; /* Muted color for the date */
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif;
        }

        /* Myanmar Calendar Styles */
        .mmcalc {
            text-align: center;
            font-size: 0.9rem;
            color: #b0b0b0; /* Muted color for the date */
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif;
            margin-bottom: 0.8rem; /* Space below the date */
        }


        /* Schedule Timeline Styles */
        #schedule {
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif;
            color: #e0e0e0;
        }

        /* Style for the card wrapper */
        .schedule-card-wrapper {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }

        /* Style for each card */
        .schedule-card {
            /*background-image: linear-gradient(to bottom right, rgb(36, 2, 2), rgba(177, 0, 0, 0.397), rgba(71, 0, 21, 0.397), #00000052); */
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            flex: 1 1 300px; /* Allows cards to grow/shrink, minimum width 300px */
            max-width: 800px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        /* .schedule-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.5);
        } 
        */

        .schedule-card .timeline {
            position: relative;
            padding: 20px 0 20px 10px;
            list-style: none;
            margin: 0;
        }

        .schedule-card .timeline:before {
            content: '';
            position: absolute;
            top: 0;
            left: 10px; /* Adjust based on dot size */
            height: 100%;
            width: 2px;
            background: #4a4a4a; /* Darker border for the line */
        }

        .schedule-card .timeline > li {
            margin-bottom: 20px;
            position: relative;
            padding-left: 40px; /* Space for the line and dot */
        }

        .schedule-card .timeline > li:before {
            content: '';
            position: absolute;
            left: -10px;
            top: 5px;
            width: 22px;
            height: 22px;
            line-height: 22px;
            font-size: 10px;
            text-align: center;
            background: #4a4a4a; /* Darker background for dots */
            color: #e0e0e0; /* Light text for dots */
            border-radius: 50%;
            /* border: 2px solid #c90909; Original header color */
        }

        .schedule-card .timeline > li.current-program:before {
            background: #00cc00; /* Changed background for current program */
            border-color: #4a4a4a;
            animation: blink 2s linear infinite; /* Blinking effect */
        }

        .schedule-card .timeline > li.current-program h3 {
            margin: 0;
            font-size: 1em;
            font-weight: bold;
            color: #00cc00;
            animation: blink 2s linear infinite; /* Blinking effect */
        }

        .schedule-card .timeline > li.current-program p{
            margin: 5px 0 0;
            font-size: 1em;
            font-weight: bold;
            color: #00cc00;
            animation: blink 2s linear infinite; /* Blinking effect */
        }

        .schedule-card .timeline .timeline-time h3 {
            margin: 0;
            font-size: 1em;
            color: #b0b0b0;
        }

        .schedule-card .timeline .timeline-content p {
            margin: 5px 0 0;
            font-size: 1em;
            color: #e0e0e0;
        }


        /* Blinking animation */
        @keyframes blink {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }

        /* Loading row style */
        .schedule-card .timeline .loading-row {
            text-align: center;
            color: #808080;
            font-style: italic;
            list-style: none;
            padding-left: 0;
        }

        .schedule-card .timeline .loading-row:before {
            display: none;
        }

        .podcast-grid {
            display: flex;
            /* Removed flex-wrap to keep cards in a single row */
            flex-direction: row;
            /* Removed justify-content to prevent centering and allow left alignment */
            gap: 30px;
            margin-top: 40px;
            padding: 0 4vw; /* Add horizontal padding for a better visual experience */
        }

        .podcast-grid iframe {
            border-radius: 12px;
            width: 330px;
            height: 460px;
            border: none;
        }
        .podcast-grid iframe:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.5);
        }

        /* Style for each card */
        .podcast-card {
            text-align: center;
            padding: 1.2rem;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,.3); /* Darker shadow */
            transition: transform .3s ease;
            color: #e0e0e0; /* Light text in card */
            max-width: 320px;
            flex-shrink: 0;
            max-width: 320px;
            min-width: 300px; /* Adjust this value as needed based on your card design */
            /* Add any other card styles here */
        }

        .podcast-card h3 {
            color: #c90909;
            font-size: 1.5rem;
            margin-top: 0;
            margin-bottom: 0rem;
        }

        .podcast-card p {
            font-size: 1rem;
            line-height: 1.2;
            color: #b0b0b0;
            margin-bottom: 0rem;
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif;
        }

        .podcast-card iframe {
            border-radius: 12px;
            width: 100%;
            height: 450px;
            border: none;
        }

        .podcast-quo, .podcast-rsg, .podcast-ld, .podcast-nbl, .podcast-boc, .podcast-kb, .podcast-nbl, .podcast-hl, .podcast-gl {
            display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-top: 40px; border-radius: 8px;
        }
        .podcast-blackbox {
            background: #00000065; /* Darker card background */
            text-align: center;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,.3); /* Darker shadow */
            transition: transform .3s ease;
            color: #e0e0e0; /* Light text in card */
        
        }

        .card-image-container img {
            max-width: 200px;
            height: auto;
            border-radius: 8px;
        }


        #map {
            width: 100%;
            height: 600px; /* Fixed height for the map */
            background-color: #121622; /* Fallback background color */
            border-radius: 8px; /* Consistent with other sections */
            overflow: hidden; /* Ensure map content stays within bounds */
            box-shadow: 0 4px 10px rgba(0,0,0,0.3); /* Darker shadow */
            margin-top: 2rem;
            margin-bottom: 2rem;
        }

        /* Map specific styles */
        #map_canvas {
            width: 100%;
            height: 600px; /* Fixed height for the map */
            background-color: #121622; /* Fallback background color */
            border-radius: 8px; /* Consistent with other sections */
            overflow: hidden; /* Ensure map content stays within bounds */
            box-shadow: 0 4px 10px rgba(0,0,0,0.3); /* Darker shadow */
            margin-top: 2rem;
            margin-bottom: 2rem;
        }

        /* Styles for the map type selection dropdown */
        .map-controls {
            text-align: center;
            margin-top: 20px;
        }

        .map-controls select {
            padding: 8px;
            border-radius: 5px;
            border: 1px solid #3a3a3a; /* Darker border */
            background-color: #282828; /* Darker background */
            color: #e0e0e0; /* Light text */
            font-size: 1rem;
            cursor: pointer;
        }

        .map-controls select:focus {
            outline: none;
            border-color: #c90909; /* Highlight on focus */
        }
        
        /* Schedule Table Styles */
        #schedule table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            box-shadow: 0 2px 5px rgba(0,0,0,.2); /* Slightly darker shadow */
        }

        #schedule th,
        #schedule td {
            padding: 15px;
            border-bottom: 1px solid #4a4a4a; /* Darker border for table cells */
            color: #e0e0e0; /* Light text for table */
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif; /* Applied YoeYar-One font */
            /* Remove global text-align: center; from here */
        }

        /* Specific alignment for the first column (time) */
        #schedule th:first-child, /* Add this line for the header of the first column */
        #schedule td:first-child {
            text-align: center; /* Keep time centered */
        }

        /* Specific alignment for the second column (program) */
        #schedule th:nth-child(2), /* Add this line for the header of the second column */
        #schedule td:nth-child(2) {
            text-align: left; /* Align program names to the left */
        }

        #schedule thead {
            background: #c90909; /* Original header color */
            color: #fff;
        }

        #schedule tbody tr:nth-child(even) {
            background: #2a2a2a; /* Darker background for even rows */
        }

        #schedule tbody tr:hover {
            background: #3a3a3a; /* Darker hover for table rows */
        }

        /* Blinking animation for current program */
        @keyframes blink {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }

        /* DJ Grid Styles */
        .dj-grid {
          display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-top: 40px;
            
        }

        .dj-card {
            background: #282828; /* Darker card background */
            text-align: center;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,.3); /* Darker shadow */
            transition: transform .3s ease;
            color: #e0e0e0; /* Light text in card */
            max-width: 315px;
        }

        .dj-card:hover {
            transform: translateY(-5px);
        }

        .dj-card img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
            filter: brightness(0.9); /* Slightly dim images for dark mode */
            /* Note: DJ images must be in a 'djs' directory. */
        }

        .dj-card h3 {
            color: #ffffffab;
            font-size: 1.5rem;
            margin-top: 0;
            margin-bottom: 1rem;
        }

        .dj-card p {
            color: #000000a6;;
        }

        /* Client Logos Section */
        .client-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 2rem;
        }

        /* NEW: Style for each client-logo item to limit to 5 per row */
        .client-logo { 
            /* Calculate flex-basis to allow exactly 5 items per row, accounting for the gap */
            /* (100% / 5 items) - ( (5-1) * gap / 5 items ) = 20% - (4 * 2.5rem / 5) = 20% - 2rem */
            flex-basis: calc(20% - 2rem); 
            /* Ensure the image inside is centered if the div is wider than the image */
            display: flex;
            justify-content: center;
            align-items: center;
            /* Optional: Add a min-width to prevent them from becoming too small on very narrow screens before wrapping */
            min-width: 100px; /* Adjust this value if logos become too small on mobile */
        }

        .client-logo img {
            max-width: 140px;
            height: auto;
            /* Invert for dark mode, then apply grayscale and brightness */
            filter: grayscale(100%) brightness(0.7); 
            opacity: .7;
            transition: all .3s ease;
            /* Note: Client logos must be in a 'clients' directory. */
        }

        .client-logo img:hover {
            /* Reset all filters to original appearance on hover */
            filter: none; 
            transform: scale(1.5);
            opacity: 1;
            z-index: 10;
        }



    .client-logos img {
        max-width: 140px;
        height: auto;
        /* Invert for dark mode, then apply grayscale and brightness */
        filter: grayscale(100%) brightness(0.7); 
        opacity: .7;
        transition: all .3s ease;
        /* Note: Client logos must be in a 'clients' directory. */
    }

    .client-logos img:hover {
        /* Reset all filters to original appearance on hover */
        filter: none; 
        transform: scale(1.5);
        opacity: 1;
        z-index: 10;
    }


        .sponsorship-content {
            display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-top: 40px;
        }

        .sponsorship-enquiry {
            position: relative;
            background-image: linear-gradient(to top, black, rgba(0, 0, 0, 0.849), transparent, transparent), url("https://padamyarfm.sirv.com/img/team.jpg?profile=team");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            margin: 10px;
            
            /* ဒီနေရာမှာ height (သို့မဟုတ်) min-height ထည့်ပေးပါ */
            min-height: 500px; /* ဥပမာအနေနဲ့ ပုံသေ height တစ်ခု သတ်မှတ်ခြင်း */
            width: 1020px;
            /* ဒါမှမဟုတ် */
            /* min-height: 300px; /* အနည်းဆုံး height သတ်မှတ်ပြီး content ပေါ်မူတည်ပြီး ကြီးလာစေခြင်း */
            
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            text-align: center;
        }

        /* စာသားတွေကို အောက်ဆုံးကပ်ဖို့ */
        .sponsorship-enquiry .enquiry-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            /* စာသားတွေကို ပိုပြီး ရှင်းလင်းအောင် */
            color: white; /* စာသားအရောင်ကို အဖြူပြောင်းခြင်း */
        }

        .sponsorship-info-box {
            background-color: #282828; padding: 25px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); text-align: center; max-width: 320px;
        }
        
        .sponsorship-info-box h3 {
            color: #ffffffab; margin-bottom: 15px; font-size: 1.5rem;            
        }

        .sponsorship-info-box p {
            color: #000000a6; font-size: 1rem;
        }

        .sponsorship-info-box:hover {
            transform: translateY(-5px);
        }

        /* Services Section Specific Styles */
        .service-item {
            background-color: #282828;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            text-align: center;
            max-width: 350px;
            flex: 1 1 auto; /* Allows items to grow and shrink, prevents overflow */
            margin: 10px; /* Spacing between service boxes */
        }

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

        .service-item h3 {
            color: #ffffffab;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .service-item p {
            color: #000000a6;
            font-size: 1rem;
            line-height: 1.5;
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif;
        }

        .services-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px; /* Space between flex items */
            margin-top: 40px;
        }

        /* Branches Styles */
        .branches-grid {
           display: flex;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 2rem;
        }

        .branches-card {
            max-width: 100%;
            margin: 0 auto;
            padding: 2rem;
            padding: 1.5rem;
            transition: transform .3s ease;
            color: #e0e0e0; /* Light text in card */
        }

        .branches-card img {
            width: 80%;
            height: auto;
            border-radius: 10px;
            object-fit: cover;
            margin-bottom: 1rem;
            filter: brightness(0.9); /* Slightly dim images for dark mode */
            /* Note: DJ images must be in a 'djs' directory. */
        }

        .branches-card h3 {
            margin-bottom: .5rem;
            color: #ffffff; /* Brighter heading in card */
        }

        .branches-card p {
            color: #b0b0b0;
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif;
        }

        .terms-title h2 {
            text-align: left; color: #ebebeb; max-width: 800px; margin: 0 auto 2rem auto;
        }

        .terms-description p {
            text-align: justify; line-height: 2; color: #e0e0e0; max-width: 800px; margin: 0 auto 2rem auto;
        }

        .post-card {
        width: 100%;
        }

        .post-card h2 {
            margin-top: 0;
            font-size: 1.8em;
            color: #e0e0e0;
        }
        .post-card .content {
            font-size: 1.1rem;
            color: #b0b0b0;
            word-wrap: break-word;
            text-align: justify;
        }

        .post-card .content img {
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        .post-card img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 10px 0;
        }
        /* Container for two images side-by-side */
        .image-row {
            display: flex;
            flex-wrap: wrap; /* Allows images to wrap on smaller screens */
            justify-content: center;
            gap: 20px; /* Space between the images */
            margin: 20px 0; /* Add some margin for spacing above and below the pair */
        }

        /* Styles for the images inside the new container */
        .image-row img {
            max-width: 48%; /* Each image takes up slightly less than half the container width */
            height: auto;
            border-radius: 8px; /* Consistent with other image styles */
            /* Remove individual image margins as they are now handled by the container gap */
            margin: 0;
        }
        .post-card .post-meta {
            font-size: 0.9em;
            color: #888;
            margin-top: 10px;
        }

        #loading {
            text-align: center;
            font-style: italic;
            color: #b0b0b0;
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }
        .pagination button {
            padding: 8px 16px;
            background: #c90909;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .pagination button:hover {
            background: #a10707;
        }
        .pagination button:disabled {
            background: #555;
            cursor: not-allowed;
        }

        /* Terms & Privacy Policy */
        .terms-section {
            padding: 4rem 0;
        }
        
        .terms-section .terms-item {
            margin-bottom: 2rem;
        }
        
        .terms-section h3 {
            font-size: 1.5rem;
            color: #fff;
        }
        
        .terms-section p {
            margin-top: 0.5rem; text-align: justify; 
        }

        .privacy-policy-section {
            padding: 4rem 0;
        }
        
        .privacy-policy-section .privacy-policy-item {
            margin-bottom: 2rem;
        }
        
        .privacy-policy-section h3 {
            font-size: 1.5rem;
            color: #fff;
        }
        
        .privacy-policy-section p {
            margin-top: 0.5rem; text-align: justify; 
        }

        /* Footer Styles */
        footer { /* Darker footer background */
            color: #e0e0e0; /* Light text */
            text-align: center;
            padding: 2rem 0;
            border-top: 1px solid #3a3a3a;
        }

        footer p {
            margin: 0;
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif;
        }

        footer h3 {
             font-family: 'Myanmar Jojar Pro', sans-serif;
        }

        .social-links {
            margin-top: 1rem;
            display: flex;
            justify-content: center;
            gap: 15px; /* Spacing between icons */
        }

        .social-links a img {
            height: 24px; /* Adjust size as needed */
            width: 24px;
            vertical-align: middle;
            filter: grayscale(100%) brightness(0.8) contrast(1.2); /* Adjust logo for dark mode if needed */
            transition: filter 0.3s ease, transform 0.3s ease;
            /* Note: Social media icons must be in an 'img' directory. */
        }

        .social-links a:hover img {
            filter: none; /* Remove filters on hover to show original color */
            transform: scale(1.1); /* Slightly enlarge on hover */
        }

        /* Styling for App Store and Google Play links in the footer */
        .app-store-links {
            margin-top: 1.5rem; /* Space above the app logos */
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem; /* Spacing between the logos */
            flex-wrap: wrap; /* Allow wrapping on small screens */
        }

        .app-store-links img {
            height: 40px; /* Standard height for both logos */
            width: auto; /* Maintain aspect ratio */
            filter: grayscale(100%) brightness(0.8); /* Greyscale effect like client logos */
            opacity: .8;
            transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
        }

        .app-store-links img:hover {
            filter: none; /* Remove filter on hover */
            opacity: 1;
            transform: scale(1.05); /* Slight zoom on hover */
        }

        @media (max-width: 768px) {

        /* Mobile/Tablet layout */
        .menu-toggle {
            display: block; /* Show hamburger on smaller screens */
        }

        header nav {
            display: none; /* Hide desktop navigation on smaller screens */
        }
        #hero {
            height: 60vh;
        }

        #hero h1 {
            font-size: 2.2rem;
        }

        #hero p {
            font-size: 1.2rem;
        }

        .section-title {
            font-size: 2rem;
        }

        /* Override client-logo styles for mobile view to show 2 per row */
 
     .client-logos {
        /* Reduce the gap between the logos */
        gap: 1rem;
        /* Add some padding to the left and right of the container */
        padding: 0 2rem;
        /* Ensure the container is centered and wraps correctly */
        justify-content: center;
        flex-wrap: wrap;
    }

    .client-logo {
        /* Calculate the width for two logos per row, accounting for the new gap */
        flex-basis: calc(50% - 0.5rem);
        /* Set a min-width to prevent logos from becoming too small */
        min-width: 100px;
    }
        

        /* Mobile schedule time formatting */
        #schedule td:first-child {
            white-space: pre-wrap;
            word-break: break-all;
        }

        /* Add this to control the width of the first column (time) on mobile */
        #schedule th:first-child,
        #schedule td:first-child {
            width: 35%;
        }

        /* Adjust the width of the second column (program) to fill the remaining space */
        #schedule th:nth-child(2),
        #schedule td:nth-child(2) {
            width: 65%;
        }

        /* Correct font assignment for Myanmar mobile view */
        body.lang-my #hero h1,
        body.lang-my .section-title,
        body.lang-my .dj-card h3,
        body.lang-my .podcast-card h3,
        body.lang-my .sponsorship-info-box h3,
        body.lang-my .sponsorship-enquiry h3,
        body.lang-my .branches-card h3,
        body.lang-my .service-item h3,
        body.lang-my .full-screen-overlay nav ul li a { /* Corrected selector for mobile menu */
            font-family: 'Myanmar Jojar Pro', sans-serif !important;
        }

        body.lang-my footer h3 {
            font-family: 'Myanmar Jojar Pro', sans-serif !important;
        }

        body.lang-my #hero p,
        /* body.lang-my .btn, */
        body.lang-my .dj-card p,
        body.lang-my .podcast-card p,
        body.lang-my .card-content p,
        body.lang-my .sponsorship-info-box p,
        body.lang-my .sponsorship-enquiry p,
        body.lang-my .branches-card p,
        body.lang-my .service-item p,
        body.lang-my .form-group input,
        body.lang-my .form-group textarea ,
        body.lang-my .btn-song-request{
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif !important;
        }
        body.lang-my .podcast-blackbox p,
        body.lang-my footer p {
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif !important;
            font-size: 1.1rem;
        }

        /* Correct font assignment for English mobile view */
        body.lang-en #hero h1,
        body.lang-en .section-title,
        body.lang-en .dj-card h3,
        body.lang-en .podcast-card h3,
        body.lang-en .sponsorship-info-box h3,
        body.lang-en .sponsorship-enquiry h3,
        body.lang-en .branches-card h3,
        body.lang-en .service-item h3,
        
        body.lang-en .full-screen-overlay nav ul li a { /* Corrected selector for mobile menu */
            font-family: 'Merienda', cursive !important;
        }

        body.lang-en footer h3 {
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif !important;
            font-size: 1.3rem;
        }

        body.lang-en #hero p,
        /* body.lang-en .btn, */
        body.lang-en .dj-card p,
        body.lang-en .podcast-card p,
        body.lang-en .card-content p,
        body.lang-en .sponsorship-info-box p,
        body.lang-en .sponsorship-enquiry p,
        body.lang-en .service-item p,
        body.lang-en .form-group input,
        body.lang-en .form-group textarea ,
        body.lang-en .btn-song-request{
            font-family: "Handlee", cursive !important;
        }

        body.lang-en .branches-card p,
        body.lang-en .podcast-blackbox p,
        body.lang-en footer p {
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif !important;
            font-size: 1.1rem;
        }

        .sponsorship-enquiry {
            position: relative;
            background-image: linear-gradient(to top, black, rgba(0, 0, 0, 0.849), transparent), url("https://padamyarfm.sirv.com/img/team.jpg?profile=team");
            
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            margin: 10px;
            width: 100%;
            min-height: 600px;
            /* ဒါမှမဟုတ် */
            /* min-height: 300px; /* အနည်းဆုံး height သတ်မှတ်ပြီး content ပေါ်မူတည်ပြီး ကြီးလာစေခြင်း */
            
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            text-align: center;
        }

        /* စာသားတွေကို အောက်ဆုံးကပ်ဖို့ */
        .sponsorship-enquiry .enquiry-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 300px;
            /* စာသားတွေကို ပိုပြီး ရှင်းလင်းအောင် */
            color: white; /* စာသားအရောင်ကို အဖြူပြောင်းခြင်း */
        }

        
}

    @media (min-width: 769px) {
        /* Desktop schedule time formatting (default is single line) */
        #schedule td:first-child {
            white-space: nowrap; /* Prevents line breaks */
        }
    }

        /* Song Request Form Styles */
        .form-container {
            max-width: 600px;
            margin: 0 auto;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }

        .form-container p {
            text-align: center;
            color: #b0b0b0;
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: #e0e0e0;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #3a3a3a;
            border-radius: 5px;
            background-color: #1a1a1a;
            color: #e0e0e0;
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif;
            font-size: 1rem;
            box-sizing: border-box;
        }

        .form-group input[type="checkbox"] {
            width: auto;
            margin-right: 5px;
            vertical-align: middle;
        }

        .form-group label {
            font-weight: normal;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #c90909;
        }

        .btn-song-request {
            width: 100%;
            height: 40px;
            border-radius: 10px;
            display: block;
            text-align: center;
            background-color: #e0e0e0;
            color: #444444;
        }

        /**
        .btn-song-request:hover{
            color: #e0e0e0;
            background-color: #c90909;
        }
        **/

        .btn-song-request[disabled] {
            cursor: not-allowed;
            background-color: #a0a0a0 !important; /* A neutral color for disabled state */
            color: #ffffff !important;           /* White text for disabled state */
            opacity: 0.6;                        /* Make it slightly transparent */
            border: none;
        }

        /* Ensure the mobile language switcher text uses the correct font based on the body's language class */
        body.lang-my .full-screen-overlay nav ul li a#lang-switcher-mobile {
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif !important;
        }

        body.lang-en .full-screen-overlay nav ul li a#lang-switcher-mobile {
            font-family: "Ubuntu", sans-serif !important;
        }

        /* Full-width line separator */
        .full-width-line {
            border: none;
            border-top: 1px solid #3a3a3a;
            width: 100%;
            margin-top: 1rem;
            margin-bottom: 1rem;
        }

        /* Footer Links */
        .footer-links {
            text-align: center;
            margin-top: 1rem;
            line-height: 1.5; /* Add some line height for better spacing */
        }

        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 0.9rem;
            padding: 0 0.5rem; /* Add horizontal padding for spacing */
        }

        .footer-links a:hover {
            color: #c90909;
            text-decoration: underline;
        }

        .link-separator {
            color: #e0e0e0;
            font-size: 1rem;
        }

        .lottie-container {
            display: flex;
            justify-content: center; 
        }

        .package {
            background: #333333;
            border: 1px solid #eee;
            border-radius: 6px;
            padding: 20px;
            margin-bottom: 20px;
        }
        .package h3 {
            color: #fff;
            margin-top: 0;
        }
        .package ul {
            list-style-type: none;
            padding: 0;
        }
        .package ul li {
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24"><path fill="green" d="M9 16.2l-3.5-3.5 1.4-1.4L9 13.4l7.1-7.1 1.4 1.4L9 16.2z"/></svg>') no-repeat left 5px;
            background-size: 16px;
            padding-left: 25px;
            margin-bottom: 8px;
        }

        .sales-team img {
            max-width: 140px;
            height: auto;
        }




        /* Custom Audio Player Styles */
.custom-audio-player {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background-color: #333;
    border-radius: 50px;
    margin-top: 15px;
}

.play-pause-btn {
    background: #c90909;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


.play-pause-btn svg {
    fill: #fff;
    width: 20px;
    height: 20px;
}

.progress-container {
    flex-grow: 1;
    height: 6px;
    background-color: #555;
    border-radius: 3px;
    overflow: hidden;
    position: relative; /* Needed for positioning the seekbar */
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-color: #808080;
    transition: width 0.1s linear;
}

/* New Seekbar Styles */
.seek-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    background: transparent;
    cursor: pointer;
}

/* Custom Audio Player Styles */
.custom-audio-player {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background-color: #333;
    border-radius: 50px;
    margin-top: 15px;
}

.play-pause-btn {
    background: #808080;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


.play-pause-btn svg {
    fill: #fff;
    width: 20px;
    height: 20px;
}

.progress-container {
    flex-grow: 1;
    height: 6px;
    background-color: #555;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-color: #c90909;
    transition: width 0.1s linear;
}

.seek-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    background: transparent;
    cursor: pointer;
}

.seek-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 14px;
    width: 14px;
    background-color: #c90909;
    border-radius: 50%;
    border: none;
    transform: scale(0);
    transition: transform 0.2s ease-in-out;
}

.seek-bar:hover::-webkit-slider-thumb,
.seek-bar:active::-webkit-slider-thumb {
    transform: scale(1);
}

.seek-bar::-moz-range-thumb {
    height: 14px;
    width: 14px;
    background-color: #c90909;
    border-radius: 50%;
    border: none;
    transform: scale(0);
    transition: transform 0.2s ease-in-out;
}

.seek-bar:hover::-moz-range-thumb,
.seek-bar:active::-moz-range-thumb {
    transform: scale(1);
}

.time-display {
    font-size: 0.9rem;
    color: #e0e0e0;
    font-family: monospace;
}

.icon.play-icon, .icon.pause-icon {
    display: block;
}

.listen-on {
    margin: 0 auto;
    padding-top: 20px;
}

.listen-on img{
    width: 49%;
}

/* Updated Podcast Link Button Styles */
.podcast-link-btn {
    font-size: small;
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    background-color: #303030;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin: 15px auto 0 auto; /* Centering the button */
}

.podcast-link-btn:hover {
    background-color: #c90909;
}   

.card-img-container {
    width: 100%;
    position: relative;
    padding-top: 100%; /* 1:1 aspect ratio အတွက် */
    overflow: hidden; /* ဒီနေရာမှာလည်း overflow: hidden; ထည့်ပေးပါ။ */
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}


.card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* ပုံကို container ထဲမှာ အပြည့်ဝင်အောင် လုပ်ပေးပါတယ်။ */
}

.card-title {
    overflow:visible;
}

.card-paragraph {
    padding-top: 3px;
    height: 100px;
    overflow: auto; /* This ensures the content is scrollable */
    font-size: 1rem !important;
    
}

.card-paragraph::-webkit-scrollbar {
  display: none;
}

.card-content h3, .card-content .card-paragraph{
    color: #ffffffab;
}

.card-content p {
    color: #000000a6;
    height: 60px;
}

        .box10 {
            background: linear-gradient(-45deg, #23d5ab, #ee7752, #e73c7e, #23a6d5, #23d5ab, #ee7752, #e73c7e, #23a6d5,#23d5ab,#ee7752);
            background-size: 400% 400%;
            animation: gradient-animation 15s ease infinite;
        }

        .box11 {
            background: linear-gradient(-45deg, #23d5ab, #ee7752, #e73c7e, #23a6d5);
            background-size: 400% 400%;
            animation: gradient-animation 15s ease infinite;
        }

        .box12 {
            background: linear-gradient(-45deg, #23a6d5, #23d5ab, #ee7752, #e73c7e);
            background-size: 400% 400%;
            animation: gradient-animation 15s ease infinite;
        }

        .box13 {
            background: linear-gradient(-45deg, #e73c7e, #23a6d5,#23d5ab,#ee7752);
            background-size: 400% 400%;
            animation: gradient-animation 15s ease infinite;
        }

        .box14 {
            background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
            background-size: 400% 400%;
            animation: gradient-animation 15s ease infinite;
        }

        .box15 {
            background: linear-gradient(-45deg, #23d5ab, #e73c7e, #ee7752, #23a6d5);
            background-size: 400% 400%;
            animation: gradient-animation 15s ease infinite;
        }

        .box1 {
            background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab, #ff00ff);
            background-size: 400% 400%;
            animation: gradient-animation 15s ease infinite;
        }
        
        .box2 {
            background: linear-gradient(-45deg, #e73c7e, #23a6d5, #23d5ab, #ff00ff, #ee7752);
            background-size: 400% 400%;
            animation: gradient-animation 15s ease infinite;
        }

        .box3 {
            background: linear-gradient(-45deg, #23a6d5, #23d5ab, #ff00ff, #ee7752, #e73c7e);
            background-size: 400% 400%;
            animation: gradient-animation 15s ease infinite;
        }

        .box4 {
            background: linear-gradient(-45deg, #23d5ab, #ff00ff, #ee7752, #e73c7e, #23a6d5);
            background-size: 400% 400%;
            animation: gradient-animation 15s ease infinite;
        }

        .box5 {
            background: linear-gradient(-45deg, #ff00ff, #ee7752, #e73c7e, #23a6d5, #23d5ab);
            background-size: 400% 400%;
            animation: gradient-animation 20s ease infinite;
        }

        .box6 {
            background: linear-gradient(-45deg, #ff00ff36, #ee775236, #e73c7e36, #23a6d536, #23d5ab36);
            background-size: 400% 400%;
            animation: gradient-animation 20s ease infinite;
        }

        .box7 {
            background: linear-gradient(-45deg, #ffffffb0, #ffffffd0, #feffcbcb);
            background-size: 400% 400%;
            animation: gradient-animation 20s ease infinite;
        }

        .boxonair {
            background: linear-gradient(-45deg, #ff0000, #990000);
            background-size: 400% 400%;
            animation: gradient-animation 5s ease infinite;
        }

        @keyframes gradient-animation {
        0% {
            background-position: 0% 50%; /* အစမှာ background ရဲ့ နေရာ */
        }
        50% {
            background-position: 100% 50%; /* အလယ်မှာ နေရာပြောင်းခြင်း */
        }
        100% {
            background-position: 0% 50%; /* အဆုံးမှာ အစနေရာကို ပြန်လာခြင်း */
        }
        }


        /* Slider Container */
/* Updated Slider Container */
.slider-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    user-select: none; /* Standard syntax */
    -webkit-user-select: none; /* For Safari */
    -ms-user-select: none; /* For Internet Explorer and Edge */
    -moz-user-select: none; /* For Firefox */

    /* Scrollbar ကို ဖျောက်ရန် */
    -ms-overflow-style: none; /* Internet Explorer and Edge */
    scrollbar-width: none;    /* Firefox */
}

.slider-wrapper img {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
}

/* Chrome, Safari, and Opera အတွက် */
.slider-wrapper::-webkit-scrollbar {
    display: none;
}

/* Styles for the inner track to contain the cards */
.slider-track {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    /* Add this line: make the track wide enough to overflow */
    width: max-content; 
}

@keyframes scroll-animation {
    0% {
        transform: translateX(-420px);
    }
    100% {
        transform: translateX(calc(-218px * 5)); /* Adjust this value based on your content */
    }
}



/* Pause the animation on hover */
.slider-track:hover {
    animation-play-state: paused;
}



/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .podcast-card {
        flex: 0 0 320px;
    }
}



/* START: Client Logos Section */
#clients {
    overflow: hidden; /* အပြင်ဘက်ကို ရွေ့ထွက်သွားတဲ့ ပုံတွေကို ဖုံးထားဖို့အတွက် */
}

.client-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px; /* တန်းနှစ်ခုကြား နေရာလွတ်ကို လျှော့ချလိုက်ပါတယ်။ */
    margin: 4rem auto;
    width: 100%;
}

.client-logo-row {
    display: flex;
    flex-wrap: nowrap;
}

.client-logo-row img {
    height: 60px; /* ပုံအမြင့်ကို လိုအပ်သလို ချိန်ညှိနိုင်ပါတယ် */
    width: auto;
    margin: 0 25px; /* လိုဂိုတစ်ခုနဲ့တစ်ခုကြား နေရာလွတ်ကို လျှော့ချလိုက်ပါတယ်။ */
    filter: grayscale(100%) opacity(50%);
    transition: filter 0.3s ease;
}

.client-logo-row img:hover {
    filter: grayscale(0%) opacity(100%);
}

/* Animation for the first row (right-to-left) */
.client-logo-row-2 {
    animation: moveLeft 30s linear infinite;
}

/* Animation for the second row (left-to-right) */
.client-logo-row-1 {
    animation: moveRight 30s linear infinite;
}

/* Keyframes for the left-moving animation */
@keyframes moveLeft {
    0% {
        transform: translateX(25%);
    }
    100% {
        transform: translateX(-25%); /* လိုဂိုအစုံတစ်ဝက်စာ ရွေ့အောင် ပြင်ထားပါတယ်။ */
    }
}

/* Keyframes for the right-moving animation */
@keyframes moveRight {
    0% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(25%); /* လိုဂိုအစုံတစ်ဝက်စာ ရွေ့အောင် ပြင်ထားပါတယ်။ */
    }
}
/* END: Client Logos Section */