:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --background-color: #f8f9fa;
    --text-color: #333;
    --light-text-color: #777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

main {
    padding-top: 80px;
}

section {
    padding: 5rem 10%;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

section.fade-in {
    opacity: 1;
    transform: translateY(0);
}

h1, h2, h3 {
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 600;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: calc(100vh - 80px);
    padding: 4rem 10%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
}

.hero h1 {
    margin-bottom: 1rem;
    font-size: 3.5rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.feature-grid, .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item, .pricing-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-item h3, .pricing-item h3 {
    color: var(--primary-color);
}

.pricing-item {
    text-align: center;
}

.pricing-item.featured {
    border: 2px solid var(--primary-color);
}

.price {
    font-size: 2rem;
    font-weight: 600;
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--light-text-color);
}

.pricing-item ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pricing-item ul li {
    margin-bottom: 0.5rem;
}

.contact {
    text-align: center;
    background-color: var(--primary-color);
    color: #fff;
}

.download {
    text-align: center;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3rem 0;
}

.download p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.carousel {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-item {
    display: none;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: transparent; /* Remove white background */
}

.carousel-dots {
    text-align: center;
    margin-top: 1rem;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #3498db;
}

.carousel-next, .carousel-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
}

.carousel-next {
    right: 10px;
}

.carousel-prev {
    left: 10px;
}

.workflow {
    text-align: center;
    padding: 5rem 10%;
    background-color: #f8f9fa;
    color: var(--text-color);
}

.workflow-image {
    text-align: center;
    margin-top: 2rem;
    overflow: hidden;
    height: 500px; /* Adjust height to crop the image */
}

.workflow-image img {
    max-width: 100%;
    height: auto;
    transform: translateY(-20px); /* Adjust to hide the text */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: #333;
    color: #fff;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

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

    nav ul {
        flex-direction: column;
        width: 100%;
        display: none;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 1rem 0;
    }

    .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

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

    .feature-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
}
