﻿.logo-slider {
    display: flex; /* Arrange logos in a row */
    justify-content: space-between; /* Distribute logos evenly */
    flex-wrap: nowrap; /* Prevent wrapping */
    overflow: hidden; /* Cut off logos outside the container */
    max-width: 100%; /* Ensure it doesn't exceed the viewport */
}

.logo-track {
    display: flex;
    width: 100%; /* Constrain the width */
    justify-content: space-between; /* Even spacing */
    gap: 10px; /* Add space between logos */
}

.logo-slider img {
    max-width: 100px; /* Set a maximum width for logos */
    height: auto; /* Maintain aspect ratio */
    flex-shrink: 0; /* Prevent logos from shrinking too small */
}

@media (max-width: 768px) {
    .logo-slider img {
        max-width: 80px; /* Reduce logo size for smaller screens */
    }
}

@media only screen and (max-width: 767px) {
    .DesktopOnly {
        display: none;
    }
}

#features {
    background-color: #ffffff;
}

.feature-item {
    margin-bottom: 30px;
    text-align: center;
}

    .feature-item img {
        margin-bottom: 15px;
    }

    .feature-item h5 {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .feature-item p {
        font-size: 1rem;
        color: #777;
    }

#industries {
    background-color: #ffffff; /* Light gray background for contrast */
    padding: 50px 20px;
}

    #industries h2 {
        font-size: 2rem;
        font-weight: 700;
        color: #333;
    }

    #industries p {
        font-size: 1.1rem;
        color: #666;
    }

.industry-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

    .industry-logos img {
        width: 100px;
        height: auto;
        filter: grayscale(100%);
        transition: filter 0.3s ease, transform 0.3s ease;
    }

        .industry-logos img:hover {
            filter: grayscale(0%);
            transform: scale(1.1);
        }

.industries-list {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}


.hero-section {
    text-align: center;
    background: #fafafa;
}

    .hero-section h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-section p {
        font-size: 1rem;
        color: #6c757d;
    }

.image-fader {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.fade-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .fade-image.show {
        opacity: 1;
        z-index: 1;
    }

/* Responsive Styles */
@media (min-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.25rem;
    }
}

@media (min-width: 992px) {
    .hero-section h1 {
        font-size: 3rem;
    }

    .hero-section p {
        font-size: 1.5rem;
    }
}








@media only screen and (max-width: 767px) {
    .DesktopOnly {
        display: none;
    }
}

#testimonials {
    background-color: #f9f9f9;
    padding: 50px 20px;
}

.testimonial-item blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    border-left: 1px solid #007bff;
    padding-left: 15px;
    margin-bottom: 20px;
}

.testimonial-item footer {
    font-size: 0.9rem;
    color: #777;
}

#pain-point {
    background-color: #f9f9f9;
    padding: 50px 20px;
    border-radius: 10px;
}

    #pain-point h2 {
        font-size: 2rem;
        color: #333;
        margin-bottom: 20px;
    }

    #pain-point p {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 40px;
    }

.card {
    border: 1px solid #e3e3e3;
    border-radius: 10px;
}

.card-body h4 {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 15px;
}

.card-body ul {
    padding-left: 0;
    list-style: none;
}

.card-body li {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #555;
}

    .card-body li i {
        margin-right: 10px;
        font-size: 1.2rem;
    }

.btn-primary {
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
}

.bgcolor1 {
    background-color: #fffbe6; /* Soft yellow for problems */
}

.bgcolor2 {
    background-color: #e6fffb; /* Soft green for solutions */
}

#trust-signals {
    background-color: #f9f9f9;
    padding: 50px 20px;
    border-radius: 10px;
}

    #trust-signals h2 {
        font-size: 2rem;
        color: #333;
    }

    #trust-signals p {
        font-size: 1.1rem;
        color: #666;
    }

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.card-body h5 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.card-body p {
    font-size: 1rem;
    color: #555;
}

.card-body img {
    margin-bottom: 15px;
}