/* Global Styles */

 * {
                  box-sizing: border-box;
            }

            body {
                  font-family: Arial, sans-serif;
                  margin: 0;
                  padding: 0;
                  box-sizing: border-box;
                  background: linear-gradient(to right, #ececec, #ffffff);
            }
header {
    background-color: #ffffff;
    color: #000000;
    padding: 20px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000; 
}

nav {
    text-align: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline-block;
    margin-right: 20px;
}

nav a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}

.logo img {
    width: 150px;
    height: 60px; 
}

footer {
    background-color: #fb8c00;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 1000; 
}

footer p {
    margin: 0;
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer li {
    display: inline-block;
    margin-right: 20px;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Hamburger menu */
.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1100; 
}

.menu-toggle div {
    width: 30px;
    height: 3px;
    background-color: #000;
    margin: 5px;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 20px 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        z-index: 1050; 
    }

    nav li {
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
    }

    nav a {
        padding: 10px;
        display: block;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active div:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active div:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active div:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    nav ul.active {
        display: flex;
    }
}

/* Styling for Meet Julius section */
.meet-julius {
    background-image: url('/images/Summit6.jpeg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    z-index: 900; 
}

.meet-julius .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    text-align: center;
    width: 100%;
}

.meet-julius h1 {
    margin: 0;
    font-size: 3em;
}

/* Styling for About Julius section */
.about-julius {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f4f4f4 50%, #fff 50%);
    position: relative;
    z-index: 800;
    font-family: 'Helvetica Neue', sans-serif;
    color: #333;
    border-top: 5px solid #fb8c00;
}

.about-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content .image-wrapper {
    max-width: 45%;
    flex: 1;
    position: relative;
}

.about-content img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.text-content {
    max-width: 50%;
    flex: 1;
}

.text-content h1 {
    font-size: 2.8em;
    color: #fb8c00;
    margin-bottom: 20px;
    border-bottom: 3px solid #fb8c00;
    display: inline-block;
}

.text-content p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.text-content p:last-of-type {
    margin-bottom: 0;
}




/* Media queries for smaller screen sizes */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    .about-content img {
        max-width: 100%;
        order: 1;
    }
    .text-content {
        max-width: 100%;
        order: 2;
    }
}

@media (max-width: 768px) {
    .about-julius {
        padding: 15px;
    }
    .about-content {
        gap: 10px;
    }
    .text-content p {
        font-size: 1em;
    }
}

@media (max-width: 576px) {
    .about-julius {
        padding: 10px;
    }
    .about-content {
        gap: 5px;
    }
    .text-content h1 {
        font-size: 1.2em;
    }
}

@media (max-width: 320px) {
    .about-julius {
        padding: 5px;
    }
    .about-content {
        gap: 0px;
    }
    .text-content p {
        font-size: 0.9em;
    }
}

/* Zillionaire section styles */
.register-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #fb8c00;
    border: 2px solid #fb8c00;
    padding: 15px 30px;
    font-size: 1.2rem;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.register-btn:hover {
    background-color: #fb8c00;
    color: #ffffff;
}

.gallery {
    background-color: #ffffff;
    padding: 50px 20px;
    text-align: center;
}

.gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.videos {
    background-color: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}

.videos h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.video-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.video-grid-item {
    display: flex;
    justify-content: center;
}

.video-grid-item iframe {
    width: 100%;
    height: 315px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.grid-item {
    display: flex;
    justify-content: center;
}

.grid-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.pitch {
    background-color: #fb8c00;
    color: #ffffff;
    padding: 50px 20px;
    text-align: center;
    position: relative;
}

.pitch h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.pitch p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Podcast section styles */
.podcast-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.podcast-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    width: 300px;
    margin: 20px;
}

.podcast-item img {
    width: 100%;
    height: auto;
}

.podcast-info {
    padding: 10px;
}

.play-button {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.gallery img {
    width: 100%;
    padding-bottom: 200px;
}

/* Discover Julius Section */
.discover-julius {
    background-color: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.discover-julius h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #333;
}

.discover-julius p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.discover-julius .discover-btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1.1rem;
    color: #fff;
    background-color: #fb8c00;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.discover-julius .discover-btn:hover {
    background-color: #fb8c00;
}


.about-julius .about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.about-julius .about-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.about-julius .about-content .text-content {
    max-width: 600px;
    margin-left: 20px;
    margin-right: 20px;
}

@media (max-width: 768px) {
    .about-julius .about-content {
        flex-direction: column;
    }

    .about-julius .about-content .text-content {
        margin-left: 0;
        margin-right: 0;
    }
}


/* Subsidiaries Logo Slider */
.subsidiaries {
    background-color: #ffffff;
    padding: 50px 20px;
    text-align: center;
}

.subsidiaries h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.logo-slider {
    display: flex;
    overflow: hidden;
    position: relative;
}

.logo-slide {
    flex: 0 0 25%; /* Adjusted to 25% for 4 logos */
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slide 20s linear infinite;
}

.logo-slide img {
    height: 80px;
    width: auto;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
/* Custom CSS for the coaching page */
            .intro-section,
            .bio-section,
            .services,
            .testimonials,
            .contact {
                  padding: 50px 0;
            }

            .profile-img {
                  border-radius: 50%;
                  max-width: 200px;
                  margin-bottom: 20px;
            }

            .cta-button {
                  background-color: #002147;
                  color: #fff;
                  padding: 15px 30px;
                  border-radius: 5px;
            }

            .gallery img {
                  border-radius: 10px;
                  transition: transform 0.3s ease-in-out;
            }

            .gallery img:hover {
                  transform: scale(1.05);
            }
.text-justify {
    text-align: justify;
}
.luxury-section {
    background-color: #2c3e50; /* Luxurious dark background */
    color: #ecf0f1; /* Light text color for contrast */
}

.hero-heading {
    font-family: 'Poppins', sans-serif; /* Luxurious typography */
    font-size: 2.5rem; /* Larger font size for the heading */
    font-weight: bold;
}

.supporting-paragraph {
    font-family: 'Poppins', sans-serif; /* Luxurious typography */
    font-size: 1.25rem; /* Medium font size for the paragraph */
    line-height: 1.5; /* Improved readability */
}

.btn-primary {
    background-color: #f39c12; /* Gold button color for luxury */
    border-color: #f39c12; /* Border color to match */
}

.btn-primary:hover {
    background-color: #e67e22; /* Darker ˙shade on hover */
    border-color: #d35400; /* Darker border on hover */
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 2rem; /* Responsive font size for smaller screens */
    }

    .supporting-paragraph {
        font-size: 1rem; /* Responsive font size for smaller screens */
    }
}
/* Custom CSS for Luxury Section */
    .zillionaire-cashflow-section {
        padding: 60px 0;
        background-color: #f8f9fa; /* Light background for contrast */
    }

    .hero-heading {
        font-weight: bold;
        text-transform: uppercase; /* Enhances the luxury feel */
    }

    .subheading-paragraph {
        line-height: 1.6; /* Better readability */
    }

    .btn {
        border-radius: 25px; /* Rounded button edges for elegance */
        padding: 12px 30px; /* Comfortable button size */
    }

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    color: #000000;
    background: #ffffff;
    transition: background 0.5s ease, color 0.5s ease;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 70px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
   
}

.header.scrolled {
    padding: 15px 70px;
    background: rgb(255, 255, 255);

}


.logo-img {
    height: 60px;
    transition: transform 0.3s ease;
}

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

.nav-list {
    display: flex;
    list-style: none;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    margin: 0 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fb8c00; /* Refined gold */
}



.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: #000000;
    margin: 5px 0;
    transition: all 0.4s ease;
}

/* Hero Section with Background Image */
.hero {
    position: relative;
    height: 100vh;
    background: url('/images/10.jpeg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem; /* Slightly larger for balance */
    font-weight: 300;
    max-width: 700px;
    margin-bottom: 40px;
    padding: 0 20px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.5s ease-out 0.5s backwards; /* Delayed animation for elegance */
    color: #e0e0e0; /* Softer white for a refined look */
}

.hero-cta {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #d4af37, #c79a2a); /* Gradient for a premium feel */
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px; /* Rounded edges for elegance */
    border: 2px solid #d4af37; /* Subtle border for depth */
    transition: all 0.4s ease; /* Smoother transition */
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4); /* Elegant shadow */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta:hover {
    background-color: #b8972e;
}

/* Responsive Design for Hero */
@media (max-width: 768px) {
    .hero {
        height: 80vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-cta {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* Podcast Section */
.podcast-section {
    padding: 100px 70px;
    max-width: 1400px;
    margin: 0 auto;
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 50px;
}

.podcast-card {
    position: relative;
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}



.podcast-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.podcast-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.podcast-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease;
}

.podcast-card:hover .podcast-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.podcast-content {
    position: relative;
    padding: 30px;
    z-index: 2;
}

.podcast-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fb8c00;
    margin-bottom: 15px;
}

.podcast-content p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 20px;
}



.podcast-player {
    width: 100%;
    margin-bottom: 20px;
    background: #2b2b2b;
    border-radius: 5px;
}

.podcast-actions {
    display: flex;
    gap: 20px;
}

.play-btn, .share-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.play-btn {
    background: #fb8c00;
    color: #1a1a1a;
}

.play-btn:hover {
    background: #b8860b;
    transform: scale(1.05);
}

.share-btn {
    background: transparent;
    border: 1px solid #fb8c00;
    color: #fb8c00;
    text-decoration: none;
}

.share-btn:hover {
    background: #fb8c00;
    color: #1a1a1a;
}

/* Subscribe Section */
.subscribe {
    padding: 100px 70px;
    background: linear-gradient(135deg, #575757, #2b2b2b);
    text-align: center;
}


.subscribe-container {
    max-width: 900px;
    margin: 0 auto;
}

.subscribe-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fb8c00;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.subscribe-text {
    font-size: 1.3rem;
    font-weight: 300;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.dark-mode .subscribe-text {
    color: #555;
}

.subscribe-form {
    display: flex;
    gap: 25px;
    max-width: 700px;
    margin: 0 auto;
}

.input-wrapper {
    position: relative;
    width: 65%;
}

.subscribe-form input {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #fb8c00;
    border-radius: 10px;
    font-size: 1.1rem;
    background: #000000;
    color: #e0e0e0;
    transition: box-shadow 0.3s ease;
}

.dark-mode .subscribe-form input {
    background: #fff;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.subscribe-form input:focus {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    outline: none;
}

.input-error {
    position: absolute;
    bottom: -30px;
    left: 25px;
    font-size: 0.9rem;
    color: #b21f1f;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.input-error.active {
    opacity: 1;
}

.subscribe-btn {
    padding: 18px 50px;
    background: #fb8c00;
    color: #1a1a1a;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.subscribe-btn:hover {
    background: #b8860b;
    transform: scale(1.05);
}

.subscribe-success {
    display: none;
    margin-top: 25px;
    font-size: 1.2rem;
    color: #fb8c00;
}

.subscribe-success.active {
    display: block;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #2b2b2b);
    color: #e0e0e0;
    padding: 70px 70px;
    text-align: center;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    height: 50px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-brand-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fb8c00;
}

.footer-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fb8c00;
}

.footer-social {
    display: flex;
    gap: 25px;
}

.social-link {
    color: #e0e0e0;
    font-size: 1.3rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    color: #fb8c00;
    transform: scale(1.1);
}

.footer-bottom {
    width: 100%;
    margin-top: 40px;
    border-top: 1px solid rgba(224, 224, 224, 0.1);
    padding-top: 25px;
}

.footer-copy {
    font-size: 0.9rem;
    font-weight: 300;
    color: #b0b0b0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 20px 20px;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        padding: 20px;
    }

    .nav-list.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 20px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .podcast-section {
        padding: 60px 20px;
    }

    .podcast-grid {
        grid-template-columns: 1fr;
    }

    .subscribe {
        padding: 60px 20px;
    }

    .subscribe-form {
        flex-direction: column;
        gap: 20px;
    }

    .input-wrapper {
        width: 100%;
    }

    .footer {
        padding: 50px 20px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Podcast Info Section */
.podcast-info {
    background: #0a0a0a;
    padding: 80px 70px;
    text-align: center;
    color: #e0e0e0;
}

.dark-mode .podcast-info {
    background: #f5f5f5;
    color: #1a1a1a;
}

.podcast-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.podcast-branding {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.podcast-title, .podcast-title-plus {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-left: 40px;
}

.podcast-title::before, .podcast-title-plus::before {
    content: '\1F4A1'; /* Light bulb emoji (💡) */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #d4af37;
}

.podcast-description {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.available-on {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

.platform-links {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.platform-link {
    color: #e0e0e0;
    font-size: 2.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.dark-mode .platform-link {
    color: #1a1a1a;
}

.platform-link:hover {
    color: #d4af37;
    transform: scale(1.1);
}

/* Responsive Design for Podcast Info */
@media (max-width: 768px) {
    .podcast-info {
        padding: 60px 20px;
    }

    .podcast-branding {
        flex-direction: column;
        gap: 20px;
    }

    .podcast-title, .podcast-title-plus {
        font-size: 2rem;
        padding-left: 30px;
    }

    .podcast-title::before, .podcast-title-plus::before {
        left: -5px;
        font-size: 1.2rem;
    }

    .podcast-description {
        font-size: 1rem;
    }

    .available-on {
        font-size: 1.2rem;
    }

    .platform-links {
        gap: 30px;
    }

    .platform-link {
        font-size: 2rem;
    }
}




/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
    transition: background 0.3s, color 0.3s;
}

body.dark-mode {
    background: #1a1a1a;
    color: #e0e0e0;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.dark-mode .header {
    background: #2c2c2c;
}

.logo-img {
    height: 50px;
    transition: transform 0.3s;
}

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

.nav-list {
    display: flex;
    list-style: none;
}

.nav-link {
    color: #333;
    text-decoration: none;
    margin: 0 20px;
    font-weight: 400;
    text-transform: uppercase;
    transition: color 0.3s;
}

.dark-mode .nav-link {
    color: #e0e0e0;
}

.nav-link:hover {
    color: #ffd700;
}

.theme-toggle {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: all 0.3s;
}

.dark-mode .menu-toggle span {
    background: #e0e0e0;
}


/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 20px;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
    }

    .dark-mode .nav-list {
        background: #2c2c2c;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-link {
        margin: 10px 0;
    }

    .menu-toggle {
        display: flex;
    }
.main .featured-episodes {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #002147 0%, #1a3c6d 100%);
    overflow: hidden;
}
<!-- Media Queries for Mobile Responsiveness -->
      <style>
            /* Tablet (max-width: 768px) */
            @media (max-width: 768px) {
                  /* Header */
                  .header {
                        padding: 10px 15px;
                        flex-direction: column;
                        align-items: flex-start;
                  }
                  .nav-list {
                        display: none;
                        width: 100%;
                        flex-direction: column;
                        text-align: center;
                  }
                  .nav-list.active {
                        display: flex;
                  }
                  .nav-link {
                        padding: 10px 0;
                        font-size: 16px;
                  }
                  .menu-toggle {
                        display: block;
                  }
                  .theme-toggle {
                        position: absolute;
                        top: 15px;
                        right: 15px;
                  }

                  /* Hero Section */
                  .hero {
                        min-height: 60vh;
                        padding: 40px 15px;
                  }
                  .hero-title {
                        font-size: 40px;
                        margin-bottom: 15px;
                  }
                  .hero-subtitle {
                        font-size: 18px;
                        margin-bottom: 30px;
                  }
                  .hero-cta {
                        padding: 12px 25px;
                        font-size: 12px;
                  }

                  /* Podcast Section */
                  .podcast-section .title {
                        font-size: 22px;
                        max-width: 280px;
                        margin: 20px auto;
                  }
                  .podcast-grid {
                        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                        gap: 15px;
                        padding: 0 10px;
                  }
                  .podcast-card h2 {
                        font-size: 18px;
                  }
                  .podcast-card p {
                        font-size: 14px;
                  }
                  .podcast-actions button, .podcast-actions a {
                        padding: 8px 15px;
                        font-size: 14px;
                  }

                  /* Featured Episodes Section */
                  .featured-episodes {
                        padding: 80px 0;
                  }
                  .featured-title {
                        font-size: 40px;
                        letter-spacing: 2px;
                  }
                  .featured-subtitle {
                        font-size: 18px;
                        margin-bottom: 40px;
                  }
                  .featured-card {
                        width: 100%;
                        max-width: 450px;
                  }
                  .featured-img-wrapper {
                        height: 250px;
                  }
                  .featured-content {
                        padding: 25px;
                  }
                  .featured-content h3 {
                        font-size: 26px;
                  }
                  .featured-desc {
                        font-size: 16px;
                  }
                  .featured-stats {
                        gap: 20px;
                        font-size: 14px;
                  }
                  .featured-actions {
                        flex-direction: column;
                        gap: 15px;
                  }
                  .featured-btn {
                        padding: 12px 25px;
                        font-size: 14px;
                  }

                  /* Podcast Info Section */
                  .podcast-info-container {
                        padding: 20px;
                  }
                  .podcast-title {
                        font-size: 28px;
                  }
                  .podcast-description {
                        font-size: 16px;
                  }
                  .available-on {
                        font-size: 20px;
                  }
                  .platform-links {
                        gap: 20px;
                  }
                  .platform-link i {
                        font-size: 24px;
                  }

                  /* Subscribe Section */
                  .subscribe-container {
                        padding: 20px;
                  }
                  .subscribe-title {
                        font-size: 28px;
                  }
                  .subscribe-text {
                        font-size: 16px;
                  }
                  .subscribe-form {
                        flex-direction: column;
                        gap: 15px;
                  }
                  .input-wrapper input {
                        width: 100%;
                        padding: 10px;
                        font-size: 14px;
                  }
                  .subscribe-btn {
                        padding: 12px 25px;
                        font-size: 14px;
                  }

                  /* Footer */
                  .footer-inner {
                        flex-direction: column;
                        text-align: center;
                        padding: 20px;
                  }
                  .footer-brand, .footer-nav, .footer-social, .footer-bottom {
                        margin-bottom: 20px;
                  }
                  .footer-links {
                        flex-direction: column;
                        gap: 10px;
                  }
                  .footer-social {
                        gap: 20px;
                  }
            }

            /* Phone (max-width: 480px) */
            @media (max-width: 480px) {
                  /* Header */
                  .header {
                        padding: 10px;
                  }
                  .logo-img {
                        width: 80px;
                  }
                  .nav-link {
                        font-size: 14px;
                  }
                  .theme-toggle {
                        font-size: 18px;
                  }

                  /* Hero Section */
                  .hero {
                        min-height: 50vh;
                        padding: 30px 10px;
                  }
                  .hero-title {
                        font-size: 28px;
                        letter-spacing: 1px;
                  }
                  .hero-subtitle {
                        font-size: 14px;
                        margin-bottom: 20px;
                  }
                  .hero-cta {
                        padding: 10px 20px;
                        font-size: 10px;
                  }

                  /* Podcast Section */
                  .podcast-section .title {
                        font-size: 18px;
                        max-width: 240px;
                  }
                  .podcast-grid {
                        grid-template-columns: 1fr;
                        gap: 10px;
                        padding: 0 5px;
                  }
                  .podcast-card h2 {
                        font-size: 16px;
                  }
                  .podcast-card p {
                        font-size: 12px;
                  }
                  .podcast-actions {
                        flex-direction: column;
                        gap: 10px;
                  }
                  .podcast-actions button, .podcast-actions a {
                        padding: 6px 12px;
                        font-size: 12px;
                  }

                  /* Featured Episodes Section */
                  .featured-episodes {
                        padding: 60px 0;
                  }
                  .featured-title {
                        font-size: 28px;
                        letter-spacing: 1px;
                  }
                  .featured-subtitle {
                        font-size: 14px;
                        margin-bottom: 30px;
                  }
                  .featured-card {
                        max-width: 300px;
                  }
                  .featured-img-wrapper {
                        height: 200px;
                  }
                  .featured-content {
                        padding: 20px;
                  }
                  .featured-content h3 {
                        font-size: 20px;
                  }
                  .featured-desc {
                        font-size: 14px;
                  }
                  .featured-stats {
                        flex-direction: column;
                        gap: 10px;
                        font-size: 12px;
                  }
                  .featured-btn {
                        padding: 10px 20px;
                        font-size: 12px;
                  }

                  /* Podcast Info Section */
                  .podcast-title {
                        font-size: 22px;
                  }
                  .podcast-description {
                        font-size: 14px;
                  }
                  .available-on {
                        font-size: 18px;
                  }
                  .platform-link i {
                        font-size: 20px;
                  }

                  /* Subscribe Section */
                  .subscribe-title {
                        font-size: 22px;
                  }
                  .subscribe-text {
                        font-size: 14px;
                  }
                  .input-wrapper input {
                        padding: 8px;
                        font-size: 12px;
                  }
                  .subscribe-btn {
                        padding: 10px 20px;
                        font-size: 12px;
                  }

                  /* Footer */
                  .footer-logo {
                        width: 60px;
                  }
                  .footer-brand-text {
                        font-size: 14px;
                  }
                  .footer-links li a {
                        font-size: 14px;
                  }
                  .footer-social a i {
                        font-size: 18px;
                  }
                  .footer-copy {
                        font-size: 12px;
                  }
            }