/* style.css */

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scrollbar */
}

h1, h2, h3 {
    margin-top: 0;
    font-weight: 700;
    color: #222;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 5px; /* Add a subtle border radius to images */
}

a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Header and Navigation */
header {
    background-color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    transition: transform 0.3s ease; /* Add a subtle animation to the logo */
}

.logo:hover {
    transform: scale(1.05);
}

.logo sup {
    font-size: 0.7rem;
    color: #007bff;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #007bff;
    text-decoration: none;
}

/* Hero Section */
#hero {
    background-color: #e9ecef;
    padding: 4rem 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Clip the animation */
}

.hero-content {
    max-width: 600px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out; /* Add an animation to the hero content */
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-image {
    max-width: 400px;
    margin-left: 2rem;
    animation: fadeInRight 1s ease-out; /* Add an animation to the hero image */
}

.cta-button {
    background-color: #007bff;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
    text-decoration: none;
    transform: scale(1.05);
}

/* Features Section */
#features {
    padding: 4rem 0;
    text-align: center;
}

#features h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease; /* Add a subtle hover effect */
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item img {
    max-width: 80px;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Benefits Section */
#benefits {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}

#benefits h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.benefit-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefit-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list ul li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    animation: fadeInLeft 1s ease-out; /* Add an animation to the benefit list items */
}

.benefit-list ul li img {
    max-width: 40px;
    margin-right: 1rem;
}

/* Use Cases Section */
#use-cases {
    padding: 4rem 0;
    text-align: center;
}

#use-cases h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.use-case-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.use-case-item:hover {
    transform: translateY(-5px);
}

.use-case-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #007bff;
}

.use-case-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Pricing Section */
#pricing {
    background-color: #e9ecef;
    padding: 4rem 0;
    text-align: center;
}

#pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid #007bff;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card ul li {
    margin-bottom: 0.5rem;
}

/* Contact Section */
#contact {
    padding: 4rem 0;
    text-align: center;
}

#contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#contact p {
    margin-bottom: 2rem;
}

#contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

#contact-form label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-align: left;
}

#contact-form input,
#contact-form textarea {
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

#contact-form textarea {
    resize: vertical;
}

#contact-form button {
    background-color: #007bff;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#contact-form button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        margin-top: 1rem;
        flex-direction: column;
    }

    nav ul li {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }

    #hero {
        flex-direction: column;
    }

    .hero-image {
        margin-left: 0;
        margin-top: 2rem;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 400px;
    }
}
