/* Main Section Styling */
.innovation-section {
    text-align: center;
    padding: 80px 20px;
    position: relative;
    background: linear-gradient(to right, #480A5E 0%, #1F5BEA 100%);
    color: #FFFFFF;
    overflow: hidden;
}

/* Heading Styling */
.innovation-section h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.2;
}

.innovation-section .highlight {
    color: #FFE455; /* Gold color */
}

/* Section Description Styling */
.innovation-section .description {
    font-size: 1.4rem;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Features Container */
.features-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

/* Feature Box Styling */
.feature-box {
    /* background: #FFFFFF; Solid background */
    border: 1px solid transparent;
    border-image: linear-gradient(to bottom, #FFFFFF, transparent) 1; /* White top, transparent bottom */
    /* border-radius: 20px; Curved corners */
    padding: 30px;
    text-align: center;
    flex: 1 1 300px;
    max-width: 320px;
    height: 450px; /* Equal height for all boxes */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Feature Box Hover Effect */
.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
}

/* Feature Title */
.feature-box h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 15px;
}

/* Feature Description */
.feature-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

/* Feature Icon */
.feature-icon {
    width: 70px;
    height: auto;
    margin-bottom: 15px;
}

/* Additional Image Styling */
.additional-image {
    position: absolute;
    bottom: -20px;
    left: 5%;
    width: 200px;
    height: auto;
    z-index: 10;
}

/* Responsive Design for Mobile Screens */
@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
        align-items: center;
    }

    .feature-box {
        width: 90%;
    }

    .additional-image {
        width: 150px;
        bottom: -10px;
    }

    .innovation-section h2 {
        font-size: 2.5rem;
    }

    .innovation-section .description {
        font-size: 1.2rem;
    }
}