this is my own styles.css below, look into it and make the adjustment from above code

styles.css

/* General reset for better consistency across browsers */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Header Section */
header {
    background: linear-gradient(to right, #8A2BE2, #FF69B4); /* Purple to pink gradient */
    height: 110vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0;
    position: relative;
}

/* Navigation Container */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    padding: 10 20px;
    position: relative;
    top: 20px;
    width: 100%;
    margin-right: 5%;
	z-index: 9999; /* Ensure it's on top */
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 150px;
    height: auto;
	margin-left: 20px;
}


/* Menu toggle button */
.menu-toggle {
    display: none; /* Hidden by default for larger screens */
    font-size: 24px;
    color: #fff;
    background: linear-gradient(145deg, #6C63FF, #8983FF); /* Shiny gradient */
    border: 2px solid #fff;
    border-radius: 8px; /* Rounded corners */
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    right: 20px;
    top: 10px; /* Adjust to create a nice balance */
}

/* Add hover effects for the toggle button */
.menu-toggle:hover {
    background: linear-gradient(145deg, #8983FF, #6C63FF);
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


nav.main-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-grow: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin-right: 30px;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s;
	cursor: pointer; /* Ensure cursor is set to pointer */
}

.nav-menu li a:hover {
    color: #FF69B4;
}

.btn-listen {
    background-color: #7a1fd4;
    padding: 10px 20px;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
	margin-right: 40px;
	
}

.btn-listen:hover {
    background-color: #5619a1;
}

/* Hero Section */
.header-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 60px;
    height: calc(100vh - 150px);
}

.header-text {
    max-width: 50%;
}

.header-text h1 {
    font-size: 3.5em;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.header-text p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.header-buttons {
    display: flex;
    gap: 20px;
}

.btn-main, .btn-outline {
    padding: 10px 25px;
    font-size: 1.2em;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-main {
    background-color: #7a1fd4;
    color: white;
    border: none;
}

.btn-main:hover {
    background-color: #5619a1;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline:hover {
    background-color: white;
    color: #7a1fd4;
}

/* Header Image Animation */
.header-image {
    max-width: 40%;
    text-align: right;
    animation: flashImage 3s infinite ease-in-out;
}

.header-image img {
    width: 100%;
    border-radius: 15px;
    opacity: 0;
    animation: fadeIn 2s forwards;
	margin-top: 70px;
}

/* Keyframes for Image Flashing Animation */
@keyframes flashImage {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/* Popup Overlay */
.popup-overlay {
	display: none; /* Hidden by default */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.popup-overlay.show {
    display: flex; /* Flex display when visible */
}

/* Popup Content */
.popup-content {
	background-color: #fff;
	padding: 20px;
	width: 300px;
	max-width: 90%;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	position: relative;
}

/* Close Button */
.close {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 24px;
	color: #333;
	cursor: pointer;
}

/* Podcast Icons */
.podcast-icons {
	display: flex;
	justify-content: space-around;
	margin-top: 20px;
}

.podcast-icons img {
	width: 40px;
	height: 40px;
	transition: transform 0.3s;
}

.podcast-icons img:hover {
	transform: scale(1.1);
}




/* Latest Podcast Section */
.latest-podcast {
    margin: 60px auto;
    padding: 70px 60px;
    background-color: #1e1e1e;
    border-radius: 15px;
    color: white;
    animation: fadeInUp 1.5s ease-in-out;
}

.section-header {
    max-width: 700px;
    margin-bottom: 30px;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.podcast-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.podcast-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
}

.podcast-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.podcast-info p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
}

.podcast-platforms {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.platform img {
    width: 100%;
    max-width: 150px;
    transition: transform 0.3s;
}

.platform img:hover {
    transform: scale(1.1);
}

/* Podcast Info Section */
.podcast-info-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 20px;
    background: url('assets/images/Bk2.jpg') center center no-repeat;
    background-size: cover;
    height: 300px;
    margin: 40px 5%;
    border-radius: 15px;
}

.podcast-info-box, .next-info-box {
    flex: 1;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    animation: zoomIn 1.5s ease-in-out;
	margin-left: 30px;
	margin-right: 30px;
}

.podcast-info-box a, .next-info-box a {
    color: #8A2BE2;
    text-decoration: none;
    transition: color 0.3s;
	margin-top: 30px;
}

.podcast-info-box a:hover, .next-info-box a:hover {
    color: #FF69B4;
}

/* Top Podcasts Section with Darker Background */
.top-podcasts {
    background-color: #2a2a2a; /* Light dark background to differentiate section */
    padding: 80px;
}

.top-podcasts .section-header {
    text-align: center;
    color: white;
}

.podcast-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 20px auto;
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.podcast-card {
    background-color: #383838; /* Lighter background for individual cards */
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 10px;
}

.podcast-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 5px solid #7a1fd4;
}

.podcast-details {
    padding: 15px;
}

.podcast-details h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.btn-listen {
    background-color: #7a1fd4;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-listen:hover {
    background-color: #5619a1;
}

/* Centered Button Styles */
.center-button-container {
    text-align: center;
    margin-top: 20px;
}

.btn-centered {
    display: inline-block;
    padding: 12px 30px;
    color: white;
    background-color: #7a1fd4;
    text-decoration: none;
    border-radius: 30px;
    text-align: center;
    font-size: 16px;
	transition: background-color 0.3s ease, transform 0.3s ease;
	cursor: pointer;
}

.btn-centered:hover {
    background-color: #5619a1;
	transform: scale(1.05);
}


/* Slider Navigation Arrows */
.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    z-index: 1;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-prev:hover, .slider-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
     100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Email Subscription Section */
.email-subscription {
    background-color: #1f1d39;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.subscription-container {
    background-color: white;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

.email-subscription h2 {
    color: #7a1fd4;
    font-size: 24px;
    margin-bottom: 10px;
}

.email-subscription p {
    color: #333;
    margin-bottom: 20px;
    font-size: 16px;
}

.subscription-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.email-input {
    padding: 12px 15px;
    width: 100%;
    max-width: 400px;
    border: 2px solid #7a1fd4;
    border-radius: 30px;
    outline: none;
    font-size: 16px;
}

.btn-subscribe {
    padding: 12px 30px;
    background-color: #7a1fd4;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-subscribe:hover {
    background-color: #5619a1;
    transform: scale(1.05);
}


/* Footer General Styles */
.footer {
    background-color: #0c0b19;
    color: white;
    padding: 40px 0;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Section */
.footer-logo img {
    max-width: 150px;
}

/* Links Section */
.footer-links {
    display: flex;
    gap: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    color: white;
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #bdbdbd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

/* Social Media Section */
.footer-social {
    text-align: right;
}

.footer-social h3 {
    margin-bottom: 15px;
    font-size: 16px;
    color: white;
}

.social-icons a {
    color: #bdbdbd;
    font-size: 20px;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #bdbdbd;
    font-size: 14px;
}


/* Mobile setup */

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show toggle button */
    }

    .nav-menu {
        display: none; /* Hidden by default */
        flex-direction: column;
        background-color: #000;
        position: absolute;
        top: 60px; /* Adjust based on your header height */
        right: 0;
        width: 40%;
        text-align: center;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 8px; /* Rounded corners for the dropdown */
        padding: 20px 0;
        animation: dropdownFade 0.4s ease-in-out; /* Add dropdown animation */
		text
    }

    .nav-menu.active {
        display: flex; /* Show when toggled */
    }
	
	.nav-menu li {
        margin: 10px 0; /* Add spacing between menu items */
    }
	
	.nav-menu li a {
        padding: 15px; /* Add padding for touch-friendly links */
        font-size: 18px;
    }

    .btn-listen {
        margin: 20px auto; /* Add spacing for mobile */
		padding: 10px;
    }
}

* Dropdown animation */
@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



 /* Mobile-specific styles */
@media (max-width: 768px) {
    /* Stack elements vertically for mobile */
    .header-banner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 60px 30px;
        text-align: center;
        margin-top: 0; /* Reset desktop-specific spacing */
    }

    /* Make the text take up full width */
    .header-text {
        max-width: 100%;
        margin-bottom: 20px;
    }

    /* Adjust font sizes for smaller screens */
    .header-text h1 {
        font-size: 2em;
        line-height: 1.3;
    }

    .header-text p {
        font-size: 1em;
        margin-bottom: 40px;
    }

    /* Adjust buttons for mobile */
    .header-buttons {
        flex-direction: row; /* Keep buttons side by side */
        justify-content: center;
        gap: 10px; /* Smaller spacing between buttons */
    }

    .btn-main, .btn-outline {
        padding: 6px 12px; /* Smaller padding for buttons */
        font-size: 0.9em; /* Reduce font size */
        border-radius: 20px; /* Slightly smaller rounding */
        width: auto; /* Remove large width */
    }

    /* Remove excessive space within the outline */
    .btn-outline {
        border-width: 1px; /* Thinner border */
    }
}

    /* Position the image inside the banner and below the buttons */
    .header-image {
        max-width: 60%; /* Reduce size for mobile */
        margin: 20px auto 0; /* Center image below the buttons */
        text-align: center;
    }

    .header-image img {
        width: 80%; /* Shrink image size */
        display: block;
        margin: 0 auto; /* Center the image */
    }
}



@media (max-width: 768px) {
    /* Popup Overlay Responsiveness */
    .popup-content {
        width: 90%; /* Ensure it takes most of the screen width */
        padding: 15px; /* Reduce padding */
        font-size: 0.9rem; /* Adjust font size */
    }

    .popup-icons img {
        width: 30px; /* Shrink icons */
        height: 30px;
    }

    /* Latest Podcast Section Responsiveness */
    .latest-podcast {
        padding: 30px 20px; /* Adjust padding for smaller screens */
    }

    .section-header h2 {
        font-size: 2rem; /* Reduce header font size */
    }

    .section-header p {
        font-size: 1rem; /* Adjust paragraph font size */
        margin-bottom: 20px;
    }

    .podcast-content {
        flex-direction: column; /* Stack content vertically */
        align-items: center; /* Center align items */
        gap: 20px; /* Reduce gap between elements */
    }

    .podcast-image img {
        width: 90%; /* Reduce image size */
        max-width: 400px;
    }

    .podcast-info {
        text-align: center; /* Center text */
    }

    .podcast-info h3 {
        font-size: 1.5rem; /* Reduce font size for mobile */
        margin-bottom: 15px;
    }

    .podcast-info p {
        font-size: 1rem; /* Adjust paragraph font size */
        margin-bottom: 20px;
    }

    .podcast-platforms {
        flex-wrap: wrap; /* Wrap icons if needed */
        justify-content: center; /* Center icons */
        gap: 15px; /* Adjust gap between icons */
    }

    .platform img {
        max-width: 200px; /* Shrink icons */
    }

    /* Listen Button Adjustments */
    .listen-watch .btn-listen {
        padding: 8px 15px; /* Reduce padding */
        font-size: 0.9rem; /* Adjust font size */
    }
}



@media (max-width: 768px) {
    /* Podcast Info Section Adjustments for Mobile */
    .podcast-info-container {
        flex-direction: column; /* Stack content vertically */
        height: auto; /* Allow dynamic height */
        padding: 50px;
        margin: 20px 5%; /* Reduce margin for smaller screens */
    }

    .podcast-info-box, .next-info-box {
        margin: 15px 0; /* Add spacing between stacked boxes */
        flex: none; /* Remove flex property to fit full width */
        width: 100%; /* Take full width for mobile */
    }

    .podcast-info-box a, .next-info-box a {
        font-size: 1rem; /* Adjust link font size */
    }
}


@media (max-width: 768px) {
    /* Adjust padding for the section */
    .top-podcasts {
        padding: 40px 20px; /* Reduce padding for smaller screens */
    }

    .top-podcasts .section-header h2 {
        font-size: 1.8rem; /* Reduce heading size */
        margin-bottom: 10px;
    }

    .top-podcasts .section-header p {
        font-size: 1rem; /* Adjust paragraph size */
        margin-bottom: 20px;
    }

    /* Make the podcast cards stack vertically */
    .podcast-grid {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px; /* Reduce spacing between cards */
    }

    .podcast-card img {
        height: 150px; /* Adjust image height for smaller screens */
    }

    .podcast-details h4 {
        font-size: 1rem; /* Reduce font size for titles */
        margin-bottom: 10px;
    }

    .btn-listen {
        font-size: 0.9rem; /* Adjust button size */
        padding: 8px 15px;
    }
}




@media (max-width: 768px) {
    /* Footer Container - Stack Elements Vertically */
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Footer Logo - Center Align */
    .footer-logo {
        margin-bottom: 20px;
    }

    /* Links Section - Stack Columns */
    .footer-links {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }

    .footer-column ul {
        margin-bottom: 20px; /* Add spacing between sections */
    }

    /* Social Media Section */
    .footer-social {
        margin-bottom: 20px;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 10px; /* Reduce spacing between icons */
    }

    .social-icons a {
        font-size: 18px; /* Slightly smaller icons for mobile */
        margin-right: 0; /* Remove extra spacing */
    }

    /* Footer Bottom */
    .footer-bottom {
        margin-top: 10px;
        padding-top: 10px;
    }

    .footer-bottom p {
        font-size: 12px; /* Adjust font size for smaller screens */
    }
}





















