/* ============================================
   EDUCATIONAL BPO SERVICES PAGE
   ============================================ */

/* Hero Section */
.educational-hero {
    background-image: linear-gradient(135deg, rgba(31, 41, 55, 0.92) 0%, rgba(17, 24, 39, 0.96) 100%), 
                      url('../img/health2.jpg');
    background-size: cover;
    background-position: center;
}

/* Page Hero - Legacy Support */
.page-hero {
    padding: 6rem 2rem 3rem;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    text-align: center;
    margin-top: 70px;
}

.page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Content Sections */
.content-section {
    padding: 3rem 2rem;
}

.section-alt {
    background: rgba(249, 250, 251, 0.5);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-number {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    padding: 0.375rem 0.875rem;
    border-radius: 2rem;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.section-intro {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #6b7280;
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: center;
    line-height: 1.6;
}

/* Introduction */
.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1rem;
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.column h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

/* Lists */
.feature-list,
.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.feature-list li,
.benefit-list li {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    color: #4b5563;
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    line-height: 1.5;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: 700;
    font-size: 1.125rem;
}

.benefit-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.highlight-text {
    background: rgba(59, 130, 246, 0.1);
    padding: 1rem;
    border-left: 3px solid #3b82f6;
    border-radius: 0.5rem;
    font-style: italic;
    color: #1f2937;
    font-size: 0.9375rem;
}

/* Deliverables Grid */
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.deliverable-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 0.875rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.deliverable-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.deliverable-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.deliverable-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.deliverable-card ul li {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    color: #6b7280;
    padding: 0.375rem 0 0.375rem 1.25rem;
    position: relative;
}

.deliverable-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: 700;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.process-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 0.875rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.process-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
}

.process-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.process-card p {
    color: #6b7280;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.process-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-card ul li {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    color: #4b5563;
    padding: 0.375rem 0 0.375rem 1.25rem;
    position: relative;
}

.process-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* Benefits Box */
.benefits-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    padding: 1.5rem;
    border-radius: 0.875rem;
    margin-top: 2rem;
}

.benefits-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
}

.benefits-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.benefit-item {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1f2937;
    background: #ffffff;
    padding: 0.625rem 1.25rem;
    border-radius: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Workflow Steps */
.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background: #ffffff;
    padding: 0.875rem 1.25rem;
    border-radius: 0.625rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-left: 3px solid #3b82f6;
}

.step-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.9375rem;
}

.step-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1f2937;
}

/* CTA Section */
.cta-section {
    padding: 3.5rem 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.cta-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* Utility Classes */
.mt-4 {
    margin-top: 1.5rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .page-hero {
        padding: 6rem 1.5rem 3rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.125rem;
    }

    .content-section {
        padding: 3rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .deliverables-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}


/* Onboarding Grid */
.onboarding-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.onboarding-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.onboarding-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

/* Exam Support Grid */
.exam-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.exam-phase-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid #e5e7eb;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.exam-phase-card.active {
    border-color: #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05));
}

.exam-phase-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.phase-header i {
    font-size: 2rem;
    color: #3b82f6;
}

.phase-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.exam-phase-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.exam-phase-card ul li {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    color: #4b5563;
    padding: 0.75rem 0 0.75rem 1.5rem;
    position: relative;
}

.exam-phase-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* Advantages Box */
.advantages-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    padding: 2.5rem;
    border-radius: 1rem;
    margin-top: 3rem;
}

.advantages-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    padding: 1.25rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.advantage-item i {
    font-size: 1.75rem;
    color: #3b82f6;
    flex-shrink: 0;
}

.advantage-item span {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #1f2937;
}

/* Next Steps Timeline */
.next-steps-section {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.steps-timeline {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #3b82f6 0%, #10b981 100%);
}

.timeline-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    position: relative;
    z-index: 1;
}

.step-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.step-content {
    flex: 1;
    background: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.step-content:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.step-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.step-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* Responsive for new sections */
@media screen and (max-width: 768px) {
    .onboarding-grid,
    .exam-support-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .steps-timeline::before {
        left: 20px;
    }

    .timeline-step {
        gap: 1rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
    }

    .step-icon i {
        font-size: 1.25rem;
    }

    .step-content {
        padding: 1.25rem 1.5rem;
    }

    .step-content h3 {
        font-size: 1.125rem;
    }

    .step-content p {
        font-size: 0.9375rem;
    }
}
