/* General Reset */

body, html {
    margin: 0;
    padding: 0;
    overflow-y: auto; /* Prevent scrolling if canvas overflows */
    overflow-x: hidden;
}

body {
        color: #eee;

}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;

    background-color: #1a1a1a;
}

header .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00ff00; /* Bright green for the logo */
}

nav a {
    color: #66ff66; /* Light green */
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #00ff00; /* Bright green on hover */
}

.hero {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(34, 34, 34, 0.8)) no-repeat center center;
    background-size: cover;
    color: #00ff00; /* Bright green for text */
}

.hero h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.cta-button {
    padding: 1rem 2rem;
    background-color: #00cc00; /* Bright button color */
    border: none;
    cursor: pointer;
    color: #000; /* Black text */
    font-size: 1.2rem;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #00ff00; /* Lighter on hover */
    transform: scale(1.05);
}

.features-container, .pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    padding: 0 2rem;
}

.feature, .plan {
    background: #1f1f1f; /* Dark card background */
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.feature:hover, .plan:hover {
    transform: translateY(-5px);
}

.premium {
    border: 2px solid #00ff00; /* Bright border for premium plan */
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: #1a1a1a;
    color: #ccc;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Keep it behind other content */
    pointer-events: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
    }
}

/* Section Titles */
section h2 {
    font-size: 2rem;
    color: #00ff00; /* Bright neon green */
    text-align: center;
    margin: 2rem 0 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.6), 0 0 12px rgba(0, 255, 0, 0.4);
    position: relative;
}

/* Divider Line */
section h2::before,
section h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 100px;
    height: 2px;
    background-color: #00ff00;
    opacity: 0.6;
}

section h2::before {
    left: -120px; /* Left divider line */
}

section h2::after {
    right: -120px; /* Right divider line */
}


@media (max-width: 480px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav a {
        margin: 0.5rem 0;
    }

    .features-container, .pricing-container {
        grid-template-columns: 1fr; /* Stack cards on small screens */
    }
}

#testimonials {
    padding: 3rem 1rem;
    background-color: #111; /* Dark background to match the Matrix theme */
    color: #ddd; /* Light text for contrast */
    text-align: center;
}

#testimonials h2 {
    font-size: 2rem;
    color: #00ff00; /* Neon green title to match theme */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.6);
}

.testimonial {
    max-width: 600px;
    margin: 1.5rem auto;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.8); /* Slightly transparent background */
    border-left: 4px solid #00ff00; /* Green border to indicate quote */
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 255, 0, 0.3); /* Glow effect */
    position: relative;
}

.testimonial .quote {
    font-style: italic;
    font-size: 1.2rem;
    color: #ddd;
    position: relative;
    padding-left: 1rem;
    line-height: 1.6;
}

.testimonial .quote::before {
    content: "“";
    font-size: 2rem;
    color: #00ff00;
    position: absolute;
    left: -20px;
    top: -10px;
}

.testimonial .quote::after {
    content: "”";
    font-size: 2rem;
    color: #00ff00;
    position: absolute;
    right: -20px;
    bottom: -10px;
}

.testimonial .author {
    margin-top: 1rem;
    font-weight: bold;
    color: #00ff00;
    font-size: 1rem;
}
