body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0a0a0a;
    color: #fff;
    overflow-x: hidden; /* Prevent horizontal scroll */
    background: radial-gradient(circle, rgba(30, 0, 255, 0.1), rgba(0, 160, 73, 0.1));
    animation: pulseBackground 10s infinite alternate;
}

@keyframes pulseBackground {
    0% {
        background-size: 100%;
    }
    100% {
        background-size: 110%;
    }
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
#hero {
    background: linear-gradient(to right, #1e00ff, #00ff95);
    padding: 100px 0;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 10px #00ff95;
    animation: gradientShift 10s infinite alternate;
}

@keyframes gradientShift {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 100%;
    }
}

#hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
}

#hero p {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #ddd;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(to right, #007bff, #663399);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 123, 255, 0.7);
}

/* How It Works Section */
#how-it-works {
    padding: 80px 0;
    text-align: center;
    background-color: #121212;
}

#how-it-works h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #fff;
}

.steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.step {
    width: 300px;
    margin-bottom: 40px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step img {
    width: 100%;
    max-width: 280px; /* Keep max-width for larger screens */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px #00ff95);
}

.step p {
    font-size: 1.2em;
    color: #eee;
}

/* Features Section */
#features {
    padding: 80px 0;
    background-color: #0a0a0a;
}

#features h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    text-align: center;
    color: #fff;
}

#features ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#features li {
    margin-bottom: 20px;
    font-size: 1.2em;
    color: #ddd;
    padding: 15px 30px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

#features li:hover {
    transform: translateX(10px);
}

/* Benefits Section */
#benefits {
    padding: 80px 0;
    background-color: #121212;
}

#benefits h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    text-align: center;
    color: #fff;
}

#benefits ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#benefits li {
    margin-bottom: 20px;
    font-size: 1.2em;
    color: #ddd;
    padding: 15px 30px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

#benefits li:hover {
    transform: translateX(-10px);
}

/* Testimonials Section */
#testimonials {
    padding: 80px 0;
    text-align: center;
    background-color: #0a0a0a;
}

#testimonials h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #fff;
}

.testimonial-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.testimonial-carousel {
    display: flex;
    gap: 20px; /* Add space between items */
    transition: transform 0.5s ease-in-out;
}

.testimonial {
    flex: 0 0 30%; /* Adjust width to be more flexible */
    box-sizing: border-box;
    padding: 30px;
    border: 1px solid #333;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 123, 255, 0.7);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

.carousel-button:hover {
    background-color: rgba(0, 123, 255, 1);
}

.testimonial p {
    font-size: 1.2em;
    color: #eee;
}


/* Pricing Section */
#pricing {
    padding: 80px 0;
    background-color: #121212;
    text-align: center;
}

#pricing h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #fff;
}

#pricing p {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #ddd;
}

#pricing p:nth-of-type(2) { /* Target the second paragraph specifically */
    font-size: 2.2em;
    font-weight: bold;
    color: #00ff95; /* Make it stand out */
    margin-top: 10px;
    margin-bottom: 40px;
}

/* Final CTA Section */
#final-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(to right, #007bff, #663399);
    color: #fff;
    text-shadow: 0 0 10px #663399;
}

#final-cta h2 {
    font-size: 3em;
    margin-bottom: 40px;
}

section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

section.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
/* Footer */
#footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 30px 0 10px 0; /* Increased top padding, decreased bottom padding */
    text-align: center;
    border-top: 1px solid #333;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007bff;
}

.copyright {
    margin-top: 15px;
    font-size: 0.9em;
    color: #888;
}

@media (max-width: 1024px) { /* Add a breakpoint for tablets */
    .testimonial-carousel {
        justify-content: center;
    }
    .testimonial {
        flex: 0 0 45%;
    }
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    #hero {
        padding: 80px 0;
    }

    #hero h1 {
        font-size: 2.5em;
    }

    #hero p {
        font-size: 1.2em;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

.step {
    width: 280px; /* Increase the width of the container */
    margin-bottom: 40px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

    #features li,
    #benefits li {
        text-align: center;
    }

    .testimonial-carousel {
        justify-content: center;
    }

    .testimonial {
        flex: 0 0 80%; /* Make testimonials take up more width on mobile */
    }

    .hero-image {
        width: 300px !important; /* Override inline style for mobile */
    }
}

/* Modal/Lightbox Styles */
.modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  padding-top: 60px; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0,0,0,0.9); 
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Feature and Benefit Button Styles */
.feature-list, .benefit-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-item, .benefit-item {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-button, .benefit-button {
    width: auto;
    padding: 15px 30px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ddd;
    border: none;
    border-radius: 30px;
    font-size: 1.2em;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.feature-button:hover, .benefit-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.feature-details, .benefit-details {
    padding: 20px;
    margin-top: 10px;
    background-color: #1a1a1a;
    border-radius: 15px;
    text-align: left;
    width: 80%;
}
