* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #0a192f;
    color: #ffffff;
}

/* Update header and logo styles */
header {
    background-color: #0d1b2a;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* Enhanced logo styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.5rem 0;
}

.logo-image {
    width: 80px;  /* Increased logo size */
    height: 80px;
    transition: transform 0.3s ease;
}

.logo-text {
    font-size: 2.5rem;  /* Larger text */
    font-weight: 700;
    background: linear-gradient(45deg, #2196f3, #64ffda);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

/* Adjusted header for larger logo */
header {
    /* Update header and navigation styles */
    header {
        background: linear-gradient(to right, #0d1b2a, #1a2634);
        padding: 1rem;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
    }
    
    nav {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 2rem;
    }
    
    /* Adjust main content padding to prevent overlap */
    body {
        padding-top: 120px;  /* Increased to prevent overlap */
    }
    
    /* Mobile navigation improvements */
    @media (max-width: 768px) {
        .nav-links {
            position: fixed;
            inset: 0 0 0 20%;
            background: rgba(13, 27, 42, 0.98);
            padding: 8rem 2rem 2rem;
            transform: translateX(100%);
            transition: transform 350ms ease-out;
            z-index: 100;
        }
    
        .nav-links[data-visible="true"] {
            transform: translateX(0%);
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        }
    
        .mobile-nav-toggle {
            position: fixed;
            right: 1.5rem;
            top: 1.5rem;
            z-index: 200;
        }
    
        .nav-links a {
            font-size: 1.2rem;
            padding: 1rem;
            margin: 0.5rem 0;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
    
        .nav-links a:hover {
            background: rgba(100, 255, 218, 0.1);
            transform: translateX(10px);
        }
    }
    
    /* Additional responsive adjustments */
    @media (max-width: 480px) {
        body {
            padding-top: 100px;
        }
    
        nav {
            padding: 0 1rem;
        }
    
        .logo-container {
            gap: 1rem;
        }
    }
}

/* Enhanced service items */
.service-item {
    background: linear-gradient(145deg, #112240, #1a2634);
    border: 1px solid rgba(100, 255, 218, 0.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transform: translateY(0);
    transition: all 0.4s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    border-color: #64ffda;
    box-shadow: 0 12px 25px rgba(100, 255, 218, 0.2);
}

/* Enhanced hero section */
.services-hero {
    background: linear-gradient(rgba(10, 25, 47, 0.95), rgba(10, 25, 47, 0.85)),
                url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b');
    background-size: cover;
    background-position: center;
    padding: 10rem 2rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #64ffda, #2196f3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.services-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #b3e5fc;
}

/* Enhanced service items */
.services-grid {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    background: rgba(17, 34, 64, 0.3);
    border-radius: 20px;
}

.service-item {
    background: linear-gradient(145deg, #112240, #1a2634);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    border-color: #64ffda;
    box-shadow: 0 15px 35px rgba(100, 255, 218, 0.2);
}

.service-item i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #64ffda, #2196f3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #64ffda;
}

.service-item p {
    color: #b3e5fc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-item ul {
    list-style: none;
    padding: 0;
}

.service-item ul li {
    padding: 0.75rem 0;
    color: #ffffff;
    position: relative;
    padding-left: 2rem;
    transition: transform 0.3s ease;
}

.service-item ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #64ffda;
    transition: transform 0.3s ease;
}

.service-item ul li:hover {
    transform: translateX(5px);
}

.service-item ul li:hover:before {
    transform: translateX(5px);
}

/* Enhanced responsive adjustments for services page */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 8rem 1.5rem 4rem;
    }

    .services-hero h1 {
        font-size: 3rem;
    }

    .services-hero p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }

    .service-item {
        padding: 2rem;
    }

    .service-item i {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 6rem 1rem 3rem;
    }

    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .services-grid {
        padding: 2rem 1rem;
    }

    .service-item {
        padding: 1.5rem;
    }

    .service-item h3 {
        font-size: 1.3rem;
    }

    .service-item i {
        font-size: 2rem;
    }

    .service-item ul li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
        padding-left: 1.5rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    header {
        padding: 0.8rem 1rem;
    }
}

/* Update color scheme */
:root {
    --primary-color: #2196f3;
    --secondary-color: #1565c0;
    --background-dark: #0d1b2a;
    --card-background: #1a2634;
    --text-primary: #ffffff;
    --text-secondary: #b3e5fc;
}

body {
    background-color: var(--background-dark);
    color: var(--text-primary);
    padding-top: 80px;
    font-family: 'Poppins', sans-serif;
}

.service-item, .podcast-card {
    background: var(--card-background);
    border: 1px solid rgba(33, 150, 243, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-item i, .service-item h3 {
    color: var(--primary-color);
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #64ffda;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #64ffda;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(rgba(10,25,47,0.9), rgba(10,25,47,0.9)), 
                url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b') center/cover;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #64ffda;
}

.services {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #112240;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #64ffda;
    margin-bottom: 1rem;
}

footer {
    background-color: #112240;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #64ffda;
    color: #0a192f;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 2rem;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #45e0c0;
}

/* Podcast Styles */
/* Podcast page header spacing */
.podcast {
    padding: 8rem 2rem 4rem;  /* Increased top padding to prevent overlap */
    background-color: #0a192f;
}

@media (max-width: 768px) {
    .podcast {
        padding: 7rem 1.5rem 3rem;
    }
    
    .podcast-container h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .podcast {
        padding: 6rem 1rem 2rem;
    }
    
    .podcast-container h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
}

.podcast-container {
    max-width: 1200px;
    margin: 0 auto;
}

.podcast-container h2 {
    text-align: center;
    color: #64ffda;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.podcast-card {
    background-color: #112240;
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s;
}

.podcast-card:hover {
    transform: translateY(-5px);
}

.podcast-card h3 {
    color: #64ffda;
    margin-bottom: 1rem;
}

.video-container {
    margin-bottom: 1.5rem;
}

.audio-player {
    padding: 1rem;
    background-color: #1a365d;
    border-radius: 5px;
}

.audio-player h4 {
    color: #64ffda;
    margin-bottom: 0.5rem;
}

audio {
    width: 100%;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .podcast-grid {
        grid-template-columns: 1fr;
    }
}

/* Add to your existing nav-links styles */
.nav-links a.active {
    color: #64ffda;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 4px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.footer-section h4 {
    color: #64ffda;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #64ffda;
}

.contact-info li {
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #ffffff;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #64ffda;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
        text-align: center;
    }

    .footer-section ul {
        padding: 0;
    }

    .footer-section ul li {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-section {
        margin-bottom: 2rem;
    }

    .footer-bottom {
        margin-top: 1rem;
    }
}

/* Contact Form Styles */
.contact-hero {
    background: linear-gradient(rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.9)),
                url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b');
    background-size: cover;
    background-position: center;
    padding: 8rem 2rem 4rem;
    text-align: center;
    color: #ffffff;
}

.contact-hero h1 {
    color: #64ffda;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

/* Contact form styles */
.contact-form-section {
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
}

.contact-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    background: #112240;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        max-width: 800px;
        gap: 2rem;
    }

    .contact-info-box {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 2rem 1rem;
    }

    .contact-container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 1rem;
    }
}

.contact-info-box {
    padding: 2rem;
    background: rgba(100, 255, 218, 0.05);
    border-radius: 10px;
}

.contact-info-box h3 {
    color: #64ffda;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: #64ffda;
    font-size: 1.2rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #64ffda;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 5px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #64ffda;
    box-shadow: 0 0 0 2px rgba(100, 255, 218, 0.1);
}

.submit-btn {
    background: #64ffda;
    color: #0a192f;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #45e0c0;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    /* Contact form responsive styles */
    @media (max-width: 1024px) {
        .contact-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            padding: 2rem;
        }
    
        .contact-info-box {
            max-width: 600px;
            margin: 0 auto;
        }
    }
    
    @media (max-width: 768px) {
        .contact-hero {
            padding: 6rem 1rem 3rem;
        }
    
        .contact-hero h1 {
            font-size: 2.5rem;
        }
    
        .contact-hero p {
            font-size: 1.1rem;
            padding: 0 1rem;
        }
    
        .contact-form-section {
            padding: 2rem 1rem;
        }
    
        .contact-container {
            padding: 1.5rem;
        }
    
        .form-group {
            margin-bottom: 1rem;
        }
    
        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 0.75rem;
            font-size: 1rem;
        }
    }
    
    @media (max-width: 480px) {
        .contact-hero h1 {
            font-size: 2rem;
        }
    
        .contact-container {
            padding: 1rem;
        }
    
        .contact-info-box {
            padding: 1rem;
        }
    
        .info-item {
            flex-direction: row;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }
    
        .info-item i {
            margin-top: 0.25rem;
        }
    
        .form-group label {
            font-size: 0.9rem;
        }
    
        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 0.7rem;
            font-size: 0.95rem;
        }
    
        .submit-btn {
            width: 100%;
            padding: 0.875rem;
            font-size: 1rem;
        }
    }
}

@media (max-width: 768px) {
    .contact-container {
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .nav-links a {
        margin: 0;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .services {
        padding: 0 1rem;
    }
    
    .podcast {
        padding: 2rem 1rem;
    }
    
    .contact-form-section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .logo-container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .services-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .service-item,
    .podcast-card {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
    }
    
    .submit-btn {
        width: 100%;
    }
}

/* Add responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Add responsive video containers */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Mobile Navigation Styles */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
}

.mobile-nav-toggle:hover {
    color: #64ffda;
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
        position: absolute;
        right: 1rem;
        top: 1.5rem;
        z-index: 2000;
    }
}

.hero {
    text-align: center;
    padding: 8rem 2rem 4rem;  /* Increased top padding */
    background: linear-gradient(rgba(10,25,47,0.9), rgba(10,25,47,0.9)), 
                url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b') center/cover;
    position: relative;
    z-index: 1;  /* Add z-index */
}

@media (max-width: 768px) {
    .hero {
        padding: 7rem 1rem 3rem;  /* Adjusted padding for mobile */
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 1rem 2.5rem;
    }
}

/* Podcast page header spacing */
.podcast {
    padding: 8rem 2rem 4rem;
    background-color: #0a192f;
    position: relative;
    z-index: 1;
}

.podcast-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

@media (max-width: 768px) {
    .podcast {
        padding: 7rem 1rem 3rem;
    }
    
    .podcast-container h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding-top: 2rem;
    }
}

@media (max-width: 480px) {
    .podcast {
        padding: 6rem 1rem 2rem;
    }
    
    .podcast-container h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        padding-top: 1.5rem;
    }
}