/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333333;
    background-color: #f9f9f9;
    line-height: 1.6;
}

h1, h2 {
    margin: 0 0 0 20px;
    color: ;
    text-align: center;
}

/* Hero Section */
.hero-section {
  margin-top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
/*     background: linear-gradient(120deg, #008080, #00b894);*/
    background: linear-gradient(120deg, rgba(0, 128, 128, 0.8), rgba(0, 184, 148, 0.8)), 
                url('https://cdn.glitch.global/73e6b1dd-8a3f-44a1-952b-822f6b4f35ed/pexels-ivan-samkov-9630216.jpg?v=1735591054778') center/cover no-repeat;
    color: white;
    padding: 100px 20px;
  height: 100vh; /* Full viewport height */
    overflow: hidden;
  
}

.hero-content {
    position: relative; /* Ensures content is above the background */
    z-index: 2;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Optional: Add a darker overlay for better text contrast */
    z-index: 1;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Text shadow for readability */
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Text shadow for readability */
}



.hero-content p {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #eeeeee;
}




#countdown-timer {
  font-family: 'Arial', sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 20px;
}

#countdown-timer span {
  color: #ffcc00;
}


.cta-button {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 30px;
    background-color: #f39c12;
    color: white;
    border: 0.3;
}

.cta-button:hover {
    transform: scale(1.1);
    background-color: #e67e22;
}

/* Features Section */
.features-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
}

.features-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 300px;
    flex: 1 1 calc(33.333% - 40px);
}

.feature-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.feature-item h3 {
    color: #008080;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.feature-item p {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 15px;
}

.feature-item .cta-button {
    font-size: 1rem;
    padding: 10px 20px;
    background-color: #3498db;
}

.feature-item .cta-button:hover {
    background-color: #2980b9;
}

/* Testimonials Section */
.testimonials {
    background-color: #f1f1f1;
    padding: 40px 20px;
    text-align: center;
}

.testimonial {
    margin: 20px auto;
    padding: 20px;
    max-width: 600px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.testimonial.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Infographic Section */
.infographic-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
}

.infographic-section img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Pricing Section */
.pricing-section {
    text-align: center;
    padding: 40px 20px;
}

.pricing-section p {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.pricing-section .cta-button {
    background-color: #3498db;
}

.pricing-section .cta-button:hover {
    background-color: #2980b9;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #777777;
}

footer a {
    color: #008080;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .cta-button {
        font-size: 1rem;
        padding: 12px 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}