.elementor-28 .elementor-element.elementor-element-fb900de{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-28 .elementor-element.elementor-element-8b6b586{--display:flex;}.elementor-28 .elementor-element.elementor-element-4d49c16{--display:flex;}.elementor-28 .elementor-element.elementor-element-c8d1a33{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-ed330db */// ================= ULTRA-RICH ROYAL THEME VARIABLES =================
$saffron-main: #FF9933;
$saffron-dark: #C04E00;
$saffron-ticker-1: #FF8A1E;
$saffron-ticker-2: #FF9F50;
$gold-accent: #D4AF37;
$gold-metallic: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
$royal-blue: #0A1128;
$deep-brown: #2C1B18;
$paper-bg: #FFFBF5; 
$card-bg: #FFFFFF;

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    scroll-behavior: smooth; 
}

body {
    font-family: 'Alegreya', serif;
    background-color: $paper-bg;
    color: $deep-brown;
    line-height: 1.8;
    overflow-x: hidden;
    background-image: url('[https://www.transparenttextures.com/patterns/cream-paper.png](https://www.transparenttextures.com/patterns/cream-paper.png)'); 
}

/* Typography */
h1, h2, h3, .cinzel-font { font-family: 'Cinzel', serif; }
.poppins-font { font-family: 'Poppins', sans-serif; }

/* Ornamental Background Pattern */
.bg-pattern {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient($gold-accent 1px, transparent 1px);
    background-size: 40px 40px; opacity: 0.15; z-index: -1;
}

/* ================= TOP NAVIGATION ================= */
.top-nav {
    background: #fff;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1000;

    .brand-logo {
        font-size: 1.8rem; font-weight: 800; color: #6D2E14;
        text-decoration: none; display: flex; align-items: center; gap: 10px;
        i { color: $saffron-main; }
    }
    
    .brand-tagline {
        font-size: 0.9rem; color: #8D6E63;
        font-family: 'Alegreya', serif; font-weight: 700;
    }
}

/* ================= NEW TICKER ================= */
.news-ticker {
    height: 50px; width: 100%; overflow: hidden; position: relative; z-index: 100;
    background: linear-gradient(135deg, $saffron-ticker-1, $saffron-ticker-2);
    box-shadow: 0 4px 15px rgba(255, 138, 30, 0.25);
    border-bottom: 3px solid $gold-accent;

    .ticker-container { 
        display: flex; height: 100%; animation: scroll-news 30s linear infinite; 
    }
    
    @keyframes scroll-news { 
        0% { transform: translateX(0%); } 
        100% { transform: translateX(-50%); } 
    }

    .news-item { 
        display: flex; align-items: center; padding: 0 30px; color: white; 
        font-weight: 600; white-space: nowrap; font-family: 'Poppins', sans-serif;
    }

    .news-content { display: flex; align-items: center; gap: 15px; }

    .news-icon {
        font-size: 22px;
        animation: pulse 2s ease-in-out infinite;
    }
    
    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.15); }
    }

    .news-text { font-size: 15px; letter-spacing: 0.5px; }

    .news-btn {
        background: $gold-metallic; color: $deep-brown;
        padding: 6px 15px; border-radius: 20px; font-weight: 800;
        text-decoration: none; font-size: 13px; transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        
        &:hover { 
            background: white; color: $saffron-ticker-1; transform: translateY(-2px); 
        }
    }
}

/* ================= PODCAST HERO SECTION (AUTO SCROLL CAROUSEL) ================= */
.podcast-hero-section {
    max-width: 1200px;
    margin: 50px auto 30px;
    padding: 0 20px;
    text-align: center;
    animation: fadeUp 1s ease-out;

    .peetham-carousel {
        width: 100%;
        overflow: hidden;
        position: relative;
        padding: 10px 0;
        margin-bottom: 20px;

        /* Fading Edges for a smooth look */
        &::before, &::after {
            content: '';
            position: absolute;
            top: 0;
            width: 80px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }
        &::before {
            left: 0;
            background: linear-gradient(to right, $paper-bg 0%, transparent 100%);
        }
        &::after {
            right: 0;
            background: linear-gradient(to left, $paper-bg 0%, transparent 100%);
        }
    }

    .carousel-track {
        display: flex;
        gap: 20px;
        width: max-content;
        animation: scroll-carousel 25s linear infinite;

        &:hover {
            animation-play-state: paused;
        }
    }

    @keyframes scroll-carousel {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-50% - 10px)); } /* Scroll half width for infinite loop */
    }

    .carousel-item {
        position: relative;
        width: 280px;
        height: 380px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        border: 3px solid $gold-accent;
        flex-shrink: 0;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            transition: transform 0.5s ease;
        }

        &:hover img {
            transform: scale(1.08);
        }

        .carousel-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(to top, $royal-blue 50%, transparent);
            color: #fff;
            padding: 30px 15px 15px;
            font-family: 'Cinzel', serif;
            font-weight: 700;
            font-size: 1.1rem;
            text-shadow: 0 2px 5px rgba(0,0,0,0.8);
            text-align: center;
        }
    }

    .hero-content {
        margin-top: 35px;
        padding: 20px;
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        border-bottom: 5px solid $saffron-main;
        
        h1 {
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 10px;
            font-weight: 800;
            color: $royal-blue;
        }

        h2 {
            font-size: 1.2rem;
            font-weight: 600;
            color: $saffron-dark;
            margin-bottom: 20px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        p {
            font-size: 1.15rem;
            line-height: 1.8;
            max-width: 900px;
            margin: auto;
            color: #4a3a37;
            font-family: 'Poppins', sans-serif;
        }
    }
}

/* ================= PODCAST PLAYER SECTION ================= */
.podcast-section {
    padding: 40px 20px 80px;
}

.podcast-container {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border: 2px solid $gold-accent;
    position: relative;
    overflow: hidden;
    animation: fadeUp 1.2s ease-out;

    &::before {
        content: ''; position: absolute; top: 0; left: 0; width: 6px; height: 100%;
        background: $gold-metallic;
    }

    h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 1.5rem;
        color: #1DB954; /* Spotify Green Accent */
        margin-bottom: 10px;
        font-weight: 700;
        display: flex; align-items: center; gap: 10px;
    }

    h3 {
        font-family: 'Cinzel', serif;
        font-size: 2.2rem;
        color: $deep-brown;
        margin-bottom: 20px;
        line-height: 1.3;
        font-weight: 800;
        
        span {
            font-size: 1.4rem;
            color: $saffron-dark;
            display: block;
            margin-top: 5px;
        }
    }

    .podcast-description {
        font-family: 'Alegreya', serif;
        font-size: 1.2rem;
        color: #555;
        margin-bottom: 30px;
        padding: 20px;
        background: linear-gradient(to right, #FFFDE7, #FFF8E1);
        border-left: 4px solid $saffron-main;
        border-radius: 0 10px 10px 0;
    }

    .spotify-embed {
        margin-bottom: 30px;
        border-radius: 12px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        overflow: hidden;
    }

    .podcast-cta {
        text-align: center;
        
        a {
            display: inline-block;
            background: #1DB954; /* Spotify Green */
            color: #fff;
            padding: 12px 30px;
            border-radius: 30px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: 0.3s;
            box-shadow: 0 5px 15px rgba(29, 185, 84, 0.4);
            
            &:hover {
                background: #179b46;
                transform: translateY(-3px);
            }
        }
    }
}

@keyframes fadeUp { 
    from { opacity: 0; transform: translateY(30px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* Responsive */
@media (max-width: 768px) {
    .podcast-hero-section {
        .peetham-carousel {
            &::before, &::after { width: 30px; }
        }
        .carousel-item {
            width: 240px;
            height: 320px;
        }
        .hero-content {
            padding: 15px;
            h1 { font-size: 2rem; }
        }
    }
    
    .podcast-container {
        padding: 25px;
        h3 { font-size: 1.8rem; span { font-size: 1.2rem; } }
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3fcdb27 */// ================= ULTRA-RICH ROYAL THEME VARIABLES =================
$saffron-main: #FF9933;
$saffron-dark: #C04E00;
$saffron-ticker-1: #FF8A1E;
$saffron-ticker-2: #FF9F50;
$gold-accent: #D4AF37;
$gold-metallic: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
$royal-blue: #0A1128;
$deep-brown: #2C1B18;
$paper-bg: #FFFBF5; 
$card-bg: #FFFFFF;

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    scroll-behavior: smooth; 
}

body {
    font-family: 'Alegreya', serif;
    background-color: $paper-bg;
    color: $deep-brown;
    line-height: 1.8;
    overflow-x: hidden;
    background-image: url('[https://www.transparenttextures.com/patterns/cream-paper.png](https://www.transparenttextures.com/patterns/cream-paper.png)'); 
}

/* Typography */
h1, h2, h3, .cinzel-font { font-family: 'Cinzel', serif; }
.poppins-font { font-family: 'Poppins', sans-serif; }

/* Ornamental Background Pattern */
.bg-pattern {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient($gold-accent 1px, transparent 1px);
    background-size: 40px 40px; opacity: 0.15; z-index: -1;
}

/* ================= TOP NAVIGATION ================= */
.top-nav {
    background: #fff;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1000;

    .brand-logo {
        font-size: 1.8rem; font-weight: 800; color: #6D2E14;
        text-decoration: none; display: flex; align-items: center; gap: 10px;
        i { color: $saffron-main; }
    }
    
    .brand-tagline {
        font-size: 0.9rem; color: #8D6E63;
        font-family: 'Alegreya', serif; font-weight: 700;
    }
}

/* ================= NEW TICKER ================= */
.news-ticker {
    height: 50px; width: 100%; overflow: hidden; position: relative; z-index: 100;
    background: linear-gradient(135deg, $saffron-ticker-1, $saffron-ticker-2);
    box-shadow: 0 4px 15px rgba(255, 138, 30, 0.25);
    border-bottom: 3px solid $gold-accent;

    .ticker-container { 
        display: flex; height: 100%; animation: scroll-news 30s linear infinite; 
    }
    
    @keyframes scroll-news { 
        0% { transform: translateX(0%); } 
        100% { transform: translateX(-50%); } 
    }

    .news-item { 
        display: flex; align-items: center; padding: 0 30px; color: white; 
        font-weight: 600; white-space: nowrap; font-family: 'Poppins', sans-serif;
    }

    .news-content { display: flex; align-items: center; gap: 15px; }

    .news-icon {
        font-size: 22px;
        animation: pulse 2s ease-in-out infinite;
    }
    
    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.15); }
    }

    .news-text { font-size: 15px; letter-spacing: 0.5px; }

    .news-btn {
        background: $gold-metallic; color: $deep-brown;
        padding: 6px 15px; border-radius: 20px; font-weight: 800;
        text-decoration: none; font-size: 13px; transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        
        &:hover { 
            background: white; color: $saffron-ticker-1; transform: translateY(-2px); 
        }
    }
}

/* ================= PODCAST HERO SECTION ================= */
.podcast-hero-section {
    max-width: 1100px;
    margin: 50px auto 30px;
    padding: 0 20px;
    text-align: center;
    animation: fadeUp 1s ease-out;

    .hero-image img {
        width: 100%;
        max-height: 520px;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        border: 4px solid $gold-accent;
    }

    .hero-content {
        margin-top: 35px;
        padding: 20px;
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        border-bottom: 5px solid $saffron-main;
        
        h1 {
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 10px;
            font-weight: 800;
            color: $royal-blue;
        }

        h2 {
            font-size: 1.2rem;
            font-weight: 600;
            color: $saffron-dark;
            margin-bottom: 20px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        p {
            font-size: 1.15rem;
            line-height: 1.8;
            max-width: 900px;
            margin: auto;
            color: #4a3a37;
            font-family: 'Poppins', sans-serif;
        }
    }
}

/* ================= PODCAST PLAYER SECTION ================= */
.podcast-section {
    padding: 40px 20px 80px;
}

.podcast-container {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border: 2px solid $gold-accent;
    position: relative;
    overflow: hidden;
    animation: fadeUp 1.2s ease-out;

    &::before {
        content: ''; position: absolute; top: 0; left: 0; width: 6px; height: 100%;
        background: $gold-metallic;
    }

    h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 1.5rem;
        color: #1DB954; /* Spotify Green Accent */
        margin-bottom: 10px;
        font-weight: 700;
        display: flex; align-items: center; gap: 10px;
    }

    h3 {
        font-family: 'Cinzel', serif;
        font-size: 2.2rem;
        color: $deep-brown;
        margin-bottom: 20px;
        line-height: 1.3;
        font-weight: 800;
        
        span {
            font-size: 1.4rem;
            color: $saffron-dark;
            display: block;
            margin-top: 5px;
        }
    }

    .podcast-description {
        font-family: 'Alegreya', serif;
        font-size: 1.2rem;
        color: #555;
        margin-bottom: 30px;
        padding: 20px;
        background: linear-gradient(to right, #FFFDE7, #FFF8E1);
        border-left: 4px solid $saffron-main;
        border-radius: 0 10px 10px 0;
    }

    .spotify-embed {
        margin-bottom: 30px;
        border-radius: 12px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        overflow: hidden;
    }

    .podcast-cta {
        text-align: center;
        
        a {
            display: inline-block;
            background: #1DB954; /* Spotify Green */
            color: #fff;
            padding: 12px 30px;
            border-radius: 30px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: 0.3s;
            box-shadow: 0 5px 15px rgba(29, 185, 84, 0.4);
            
            &:hover {
                background: #179b46;
                transform: translateY(-3px);
            }
        }
    }
}

@keyframes fadeUp { 
    from { opacity: 0; transform: translateY(30px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* Responsive */
@media (max-width: 768px) {
    .podcast-hero-section .hero-content {
        padding: 15px;
        h1 { font-size: 2rem; }
    }
    .podcast-container {
        padding: 25px;
        h3 { font-size: 1.8rem; span { font-size: 1.2rem; } }
    }
}/* End custom CSS */