/* General Styles */
body {
    font-family: sans-serif;
    margin: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* Header */
header {
    background-color: #fff;
    padding: 1rem 2rem;
    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;
}

.logo {
    display: flex;
    align-items: center;
}

.logo i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.logo h1 {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 1rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #007bff;
}

.nav-buttons .btn-primary {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-buttons .btn-primary:hover {
    background-color: #555;
}

.nav-buttons .btn-secondary {
    background-color: #fff;
    color: #333;
    border: 1px solid #ccc;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 1rem;
    transition: background-color 0.3s ease;
}

.nav-buttons .btn-secondary:hover {
    background-color: #f0f0f0;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-buttons .btn-primary {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.hero-buttons .btn-primary:hover {
    background-color: #555;
}

.hero-buttons .btn-secondary {
    background-color: #fff;
    color: #333;
    border: 1px solid #ccc;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-right: 1rem;
    transition: background-color 0.3s ease;
}

.hero-buttons .btn-secondary:hover {
    background-color: #f0f0f0;
}

/* Features Section */
.features {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #fff;
}

.features h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.features > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #666;
}

/* How It Works Section */
.how-it-works {
    text-align: center;
    padding: 4rem 2rem;
}

.how-it-works h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.how-it-works > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.step {
    text-align: center;
    max-width: 200px;
}

.step i {
    font-size: 2rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 50%;
    padding: 1rem;
}

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: #666;
}

/* Industries Section */
.industries {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #fff;
}

.industries h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.industries > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.industry-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.industry-tag {
    background-color: #f0f0f0;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.industry-tag:hover {
    background-color: #ddd;
}

.industry-tag i {
    margin-right: 0.5rem;
}

/* Pricing Section */
.pricing {
    text-align: center;
    padding: 4rem 2rem;
}

.pricing h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pricing > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border: 2px solid #007bff;
    transform: scale(1.05);
}

.pricing-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: normal;
    color: #666;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-card ul li {
    margin-bottom: 0.5rem;
}

.pricing-card ul li i {
    margin-right: 0.5rem;
    color: #28a745;
}

.pricing-card .btn-primary {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.pricing-card .btn-primary:hover {
    background-color: #555;
}

/* Testimonials Section */
.testimonials {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #fff;
}

.testimonials h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonials > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-card p:first-child {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
    object-position: center;
}

.testimonial-author h5 {
    margin: 0;
}

.testimonial-author p {
    color: #666;
    margin: 0;
}

/* Final CTA Section */
.final-cta {
    text-align: center;
    padding: 4rem 2rem;
}

.final-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.final-cta-buttons .btn-primary {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.final-cta-buttons .btn-primary:hover {
    background-color: #555;
}

.final-cta-buttons .btn-secondary {
    background-color: #fff;
    color: #333;
    border: 1px solid #ccc;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-left: 1rem;
    transition: background-color 0.3s ease;
}

.final-cta-buttons .btn-secondary:hover {
    background-color: #f0f0f0;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap:10px;
}

.footer-links {
    display: flex;
          flex-direction: column;  
}

.footer-links div {
   display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-links h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    margin-top:0rem;
}

.footer-links a {
    display: contents;
    text-decoration: none;
    color: #ccc;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-social a {
    color: #fff;
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #007bff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links, .nav-buttons {
        display: none;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .pricing-cards, .testimonial-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: none;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2rem;
    }
}
h5 p{
  margin:0px;
}