.innovation-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f3f4f6 0%, #ffffff 100%);
    overflow: hidden;
}

.innovation-section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Arial', sans-serif;
    padding: 0 1rem;
    /* background-color: red; */
}

.innovation-section-title h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.innovation-section-title p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.innovation-product-carousel-container {
    position: relative;
    padding: 0 0;
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
    /* background-color: red; */
    /* width: fit-content; */

}

.innovation-product-carousel {
    display: flex;
    align-items: center;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 3rem 0px;
    /* background-color: red; */
    /* width: fit-content; */
    /* width: 500px; */
    width: 100%;
}

.innovation-product-carousel::-webkit-scrollbar {
    display: none;
}

.innovativeProductCard {
    min-width: 200px;
    height: 280px;
    margin: 0 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    transform: scale(0.8);
    opacity: 0.7;
    /* padding: 2px; */
}

.innovativeProductCard.active {
    min-width: 300px;
    height: 400px;
    transform: scale(1);
    opacity: 1;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.innovation-product-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.4s ease;
    border-radius: 15px 15px 0 0;
    /* background-size: cover; */
    
}

.innovation-product-info {
    /* padding: 1.5rem; */
    text-align: center;
    /* display: none; */
    position: absolute;
    top: 90%;
    /* background-color: red; */
    width: 100%;
    /* padding-right: 12%; */
    border-bottom: solid;
}

.innovation-product-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.innovativeProductCard.active .innovation-product-name {
    opacity: 1;
}
