/* --- Section 1: Banner --- */
.revolutionizinglearning-banner {
    background: linear-gradient(45deg, #f1f4ff, #ffdddd38);
    padding: 100px 0 60px;
    overflow: hidden;
}




.revolutionizinglearning-image-stack img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* --- Section 2: Challenges --- */
/******************************/

.modern-info-card {
    display: flex;
    background-color: #ffffff;
    /* box-shadow: inset 2px 2px 20px 0px rgb(105 105 105 / 12%); */
    position: relative;
    transition: transform 0.3s ease;
    border-radius: 10px;
    min-height: 215px;
    border: 1px solid #e2e8f0;
}

    .modern-info-card:hover {
        transform: translateY(-5px);
    }

.card-accent-shape {
    background-color: #f4f5fd;
    width: 140px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    clip-path: polygon(0 0, 80% 0, 100% 50%, 80% 100%, 0 100%);
    flex-shrink: 0;
}

.icon-circle {
    /* background-color: #ffffff; */
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

    .icon-circle i {
        font-size: 28px;
        color: #f26622;
    }

.card-text-content {
    padding: 30px 25px 30px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.card-title {
    font-weight: 500;
    font-size: 20px;
}

.card-desc {
    margin: 0;
}


/******************************/

/* --- Section 3: Transform --- */
.revolutionizinglearning-section {
    background: linear-gradient(45deg, #f1f4ff, #ffdddd38);
}



/* Left Side Text Styling */
.revolutionizinglearning-modern-text {
    padding-right: 30px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid #e2e8f0;
    min-height: 250px;
}

.lead-text {
    font-weight: 500;
    font-size: 20px;
}

.secondary-text {
    font-size: 16px;
}

/* Right Side Insight Card (The Lightbulb box) */
.revolutionizinglearning-insight-card {
    padding-right: 30px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid #e2e8f0;
    min-height: 250px;
}



/* Icon Styling inside the card */
.insight-icon-wrapper {
    background: #f26622;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 15px rgba(245, 175, 25, 0.3);
}

    .insight-icon-wrapper i {
        color: #ffffff;
        font-size: 20px;
    }

/* Text inside the card */
.insight-title {
    font-size: 20px;
}

.insight-desc {
    margin: 0;
}

/* Decorative Background element inside the card */
.card-bg-shape {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: rgba(245, 175, 25, 0.05);
    border-radius: 50%;
    z-index: -1;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .revolutionizinglearning-modern-text {
        padding-right: 0;
    }
}

.revolutionizinglearning-example-box {
    padding: 18px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #ededed;
    border-left: 4px solid #ff7a00;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

    .revolutionizinglearning-example-box i {
        font-size: 20px;
        color: #f97316;
    }

/* --- Section 4: Capabilities --- */ /* Main Card Container */
.gradient-feature-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 10px; /* Rounded corners like the image */
    overflow: hidden;
    /* Soft drop shadow */
    height: 100%; /* Makes all cards in a row equal height */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

    .gradient-feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

/* Top White Text Section */
.card-text-section {
    padding: 40px 25px 30px 25px;
    flex-grow: 1; /* Pushes the color section to the bottom evenly */
    background-color: #ffffff;
}

    .card-text-section h3 {
        font-weight: 500;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .card-text-section p {
        margin: 0;
    }

/* Bottom Colored Icon Section */
.card-icon-section {
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
    color: #f97316;
    font-size: 30px;
    border-top: 1px solid #e2e8f0;
}

/* The white ring around the icon */
.icon-ring {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .icon-ring i {
    }

/* --- Section 5: Why Partner --- */
.revolutionizinglearning-why-section {
    background: linear-gradient(45deg, #f1f4ff, #ffdddd38);
}



.modern-feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    display: flex;
    align-items: flex-start; /* Icon aur text ko top se align karta hai */
    gap: 20px; /* Icon aur text ke beech ka space */
    position: relative;
    overflow: hidden;
    /* Soft shadow instead of pure flat look */
    border: 1px solid #e2e8f0;
    /* Yeh variable HTML se border color lega */
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
}

    .modern-feature-card:hover {
    }

.feature-icon-box {
    width: 65px;
    height: 65px;
    /* Very light gray background for the icon */
    background-color: #f8f9fa;
    border-radius: 16px; /* slightly squarish round */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    /* Icon color set based on the theme variable */
    color: var(--card-theme);
    transition: all 0.3s ease;
}

    .feature-icon-box i {
        font-size: 28px;
    }

.modern-feature-card:hover .feature-icon-box {
    background-color: var(--card-theme);
    color: #ffffff;
    transform: scale(1.05);
}

.feature-content {
    flex-grow: 1;
}

.feature-title {
    font-weight: 500;
    font-size: 20px;
}

.feature-desc {
    /* Sleek slate gray text */
    margin: 0;
}




/* --- Section 6: Outcomes --- */
/* Container for 1 Single Row (Using CSS Grid) */
.innovative-features-row {
    /* 5 cards in 1 exact row */
    /* Space between cards */
    display: flex;
}

/* The Creative Card Design */
.inno-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #e2e8f0;
    cursor: pointer;
}

    /* Hover Effect: Card floats up and shadow increases */
    .inno-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    /* The Animated Bottom Border Line */
    .inno-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 4px;
        background-color: var(--theme-color);
        transition: all 0.4s ease;
        transform: translateX(-50%);
        border-radius: 4px 4px 0 0;
    }

    .inno-card:hover::after {
        width: 100%;
    }

.inno-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--theme-color);
    /* Creates a very soft, transparent background of the exact theme color */
    background-color: color-mix(in srgb, var(--theme-color) 12%, transparent);
    transition: transform 0.3s ease;
}

.inno-card:hover .inno-icon-box {
    transform: scale(1.1);
}

.inno-text {
    font-size: 20px;
    margin: 0;
    font-weight: 500;
}


@media (max-width: 1199px) {
    /* Laptops/Tablets */
    .innovative-features-row {
        grid-template-columns: repeat(3, 1fr); /* 3 cards in row */
    }
}

@media (max-width: 767px) {
    /* Mobile */
    .innovative-features-row {
    }

        .innovative-features-row .col {
            /* 1 card in row for mobile */
            width: 100%;
            flex-basis: unset !important;
            max-width: 100%;
            margin-bottom: 15px;
        }
}




/* --- Section 7: Call to Action --- */
.revolutionizinglearning-call-action {
    background: linear-gradient(45deg, #f1f4ff, #ffdddd38);
}

.revolutionizinglearning-call-div {
    text-align: center;
    margin: 0 auto;
}

/* --- FAQ Section --- */
.revolutionizinglearning-faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.revolutionizinglearning-faq-item {
    display: flex;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.revolutionizinglearning-faq-icon {
    font-size: 1.8rem;
    color: rgba(var(--theme-rgb), 1);
    margin-right: 20px;
    margin-top: 5px;
    display: none;
}


.revolutionizinglearning-faq-question {
    font-size: 20px;
    display: block;
    margin-bottom: 15px;
}

.revolutionizinglearning-faq-answer {
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .revolutionizinglearning-infographic-row {
        flex-direction: column;
    }

    .revolutionizinglearning-faq-item {
        flex-direction: column;
    }

    .revolutionizinglearning-faq-icon {
        margin-bottom: 15px;
    }

    .revolutionizinglearning-tech-card {
        flex-direction: column;
        text-align: center;
    }

    .revolutionizinglearning-icon-left {
        margin-right: 0;
        margin-bottom: 15px;
    }

    span.revolutionizinglearning-q-badge {
        display: none;
    }

    .revolutionizinglearning-faq-question {
        font-size: 16px;
    }

    .modern-feature-card {
        flex-flow: column;
    }

    .feature-icon-box {
        width: 50px;
        height: 50px;
    }

        .feature-icon-box i {
            font-size: 20px;
        }




    .icon-ring {
        font-size: 30px !important;
    }

    .modern-info-card {
        display: flex;
        flex-flow: column;
        min-height: auto;
    }

    .card-accent-shape {
        width: auto;
        margin: 0;
        padding: 15px;
        background: transparent;
        clip-path: unset;
    }

    .icon-circle {
        font-size: 50px;
        height: 50px;
    }

    .card-text-content {
        padding: 15px;
        padding-top: 0;
    }
    .revolutionizinglearning-modern-text {
        min-height: auto;
    }
}
