/* =========================================
   SOLUTIONS PAGE STYLES
   ========================================= */


/* --- 1. Main Solutions Hub (Grid) --- */

.solution-hub-card {
    border: 1px solid #eee;
    padding: 3rem 2rem;
    transition: 0.3s;
    background: #fff;
    height: 100%;
    text-align: center;
}

.solution-hub-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-bottom: 4px solid var(--accent-orange);
}

.solution-hub-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}


/* --- 2. Service Detail Pages --- */


/* Service Card Grid */

.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
    border-left: 3px solid transparent;
}

.service-card:hover {
    border-left: 3px solid var(--accent-orange);
    transform: translateX(5px);
}


/* Engagement Models */

.engagement-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
}

.engagement-card:hover {
    background: var(--primary-purple);
    color: white;
}

.engagement-card:hover p,
.engagement-card:hover h4 {
    color: white;
}

.engagement-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent-orange);
}


/* Ecosystem Grid */

.ecosystem-box {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 20px;
}

.ecosystem-box img {
    max-height: 60px;
    margin-bottom: 10px;
}


/* Service Delivery Process (Numbered Steps) */

.process-step {
    text-align: center;
    position: relative;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    color: white;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    position: relative;
    z-index: 2;
}


/* Connecting Line */

.process-wrapper {
    position: relative;
}

.process-wrapper::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #ddd;
    z-index: 1;
    display: none;
    /* Hidden on mobile, shown on desktop */
}

@media (min-width: 992px) {
    .process-wrapper::before {
        display: block;
    }
}


/* FAQ Accordion */

.accordion-item {
    border: none;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.accordion-button {
    font-weight: 600;
    color: var(--primary-purple);
    background-color: #fff;
}

.accordion-button:not(.collapsed) {
    color: var(--accent-orange);
    background-color: #fff;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}


/* Why Choose Checklist */

.check-list li {
    list-style: none;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.check-list li i {
    color: var(--accent-orange);
    margin-right: 10px;
}