/* (1)********************************************************************** - index.html */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
        background: #000;
        color: #fff;
        line-height: 1.6;
    }

    /* Header and Navbar */
    header {
        background: #000;
        padding: 1rem 2rem;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }

    .logo a {
        text-decoration: none;
        color: #fff;
        font-size: 1.8rem;
        font-weight: bold;
    }

    .logo .highlight {
        color: #17ef97;
    }

    .logo-img {
    height: 50px;
    width: auto;
    display: block;
    }

    .nav-menu {
        display: flex;
        gap: 2rem;
    }

    .nav-menu a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 1.2rem;
    }

    .nav-menu a:hover {
        color: #17ef97;
    }

    .hamburger {
        display: none;
        font-size: 1.5rem;
        cursor: pointer;
    }

    /* Home Section */
    .home-section {
        padding: 8rem 2rem 4rem;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        gap: 2rem;
        padding-top: 10rem;
    }

    .home-text, .home-art {
        flex: 1;
    }

    .home-text h1 {
        font-size: 3.2rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        letter-spacing: 0.5px;
    }

    .home-text p {
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        color: #f0f0f0;
    }

    .cta-btn {
        display: inline-block;
        padding: 0.9rem 2.2rem;
        background: #17ef97;
        color: #000;
        text-decoration: none;
        border-radius: 25px;
        margin-top: 1rem;
        transition: transform 0.3s ease;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .cta-btn:hover {
        transform: scale(1.05);
    }

    .home-art {
        background: none; /* Remove the previous gradient background */
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 15px;
        min-height: 300px;
        transition: transform 0.3s ease;
    }

    .home-art img.head-svg {
        max-width: 100%;
        height: auto;
}

    .home-art:hover {
        transform: translateY(-10px);
    }

    /* Ebook Collection */
    .ebook-section {
        padding: 4rem 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .ebook-section h2 {
        text-align: center;
        margin-bottom: 2rem;
    }

    .ebook-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .ebook-card {
        background: #fff;
        color: #000;
        padding: 1.5rem;
        border-radius: 15px;
        text-align: center;
    }

    .ebook-cover {
        height: 455px;
        border-radius: 10px;
        margin-bottom: 1rem;
        overflow: hidden;
    }

    .ebook-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Promotion Section */
    .promo-section {
        padding: 4rem 2rem;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        gap: 2rem;
    }

    .promo-text, .promo-image {
        flex: 1;
    }

    /* Promotion Section Enhancements */
.promo-section h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.promo-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #f0f0f0;
}

.promo-image {
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.promo-section .cta-btn {
    margin-top: 1.5rem;
}

    /* Testimonials */
    .testimonials-section {
        padding: 4rem 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .testimonial p::before {
        content: none;
        font-size: 2rem;
        position: absolute;
        left: -1rem;
        top: -0.5rem;
    }

    .testimonial span {
        color: #fff;
        font-weight: bold;
    }

    /* Testimonials Section Improvements */
.testimonials-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-section .highlight {
    color: #17ef97;
}

.testimonial {
    background-color: #111111;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.2rem;
    position: relative;
}

.testimonial .author {
    color: #fff;
    font-weight: 600;
    display: block;
    font-size: 1.1rem;
}

    /* Footer */

footer {
    padding: 4rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    flex: 1;
    min-width: 300px;
}

.footer-logo a {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    display: inline-block;
    text-decoration: none;
    color: #fff;
}

.footer-brand p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    max-width: 350px;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    margin-bottom: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid #333;
    border-radius: 25px 0 0 25px;
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: #17ef97;
    color: #000;
    border: none;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.social-icons img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    flex: 2;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h3 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer-column a {
    color: #999;
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #17ef97;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #999;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: #17ef97;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-icons img {
    width: 20px;
    height: 20px;
}

.social-icons a:hover {
    transform: translateY(-3px);
    background-color: #f5f5f5;
}

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .hamburger {
            display: block;
        }

        .nav-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #000;
            padding: 1rem;
            flex-direction: column;
        }

        .nav-menu.active {
            display: flex;
        }

        .logo-img {
            height: 40px;
        }

        .footer-logo .logo-img {
            height: 50px;
        }

        .home-section, .promo-section {
            flex-direction: column;
        }

        .ebook-grid {
            grid-template-columns: 1fr;
        }

        .testimonials-grid {
            grid-template-columns: 1fr;
        }

        .footer-grid {
            grid-template-columns: 1fr;
        }

        .home-art {
            display: none; /* Hide the SVG on mobile */
        }
    
        .home-section {
            padding-bottom: 1rem; /* Reduce padding between sections */
        }
    
        .ebook-section {
            padding-top: 2rem; /* Adjust padding to close gap */
        }

        .footer-top {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-brand {
        width: 100%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-column {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom p {
        text-align: center;
    }
    
    .footer-bottom-links {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
    }
    