﻿.admission-wrapper {
    background-color: #fcfcfc;
    padding: 4rem 1rem;
    color: #444;
}

.admission-container {
    max-width: 900px;
    margin: 0 auto;
}

.admission-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #eef2f5;
    border-radius: 12px;
    border-left: 5px solid #2c3e50;
}

    .admission-intro h3 {
        color: #2c3e50;
        margin-top: 0;
    }

.timeline {
    position: relative;
    padding-left: 20px;
}

    .timeline::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 25px;
        width: 3px;
        background: #e0e0e0;
        z-index: 0;
    }

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #2c3e50;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-content {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    flex-grow: 1;
    transition: transform 0.3s ease;
    border-top: 4px solid transparent;
}

    .step-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-top: 4px solid #3498db; 
    }

    .step-content h4 {
        margin: 0 0 10px 0;
        color: #2c3e50;
        font-size: 1.3rem;
    }

    .step-content p {
        margin: 0;
        line-height: 1.6;
        color: #666;
    }

.important-step .step-number {
    background: #e67e22;
}

.important-step .step-content {
    border-left: 4px solid #e67e22;
}

@media (max-width: 600px) {
    .process-step {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline::before {
        left: 25px; 
        display: none; 
    }

    .step-number {
        margin: 0 auto;
    }

    .step-content {
        text-align: center;
    }
}

.eligibility-wrapper {
    background-color: #ffffff;
    padding: 4rem 1rem;
}

.eligibility-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.criteria-section {
    padding-right: 1rem;
}

.section-header {
    margin-bottom: 2rem;
    border-left: 5px solid #27ae60; 
    padding-left: 15px;
}

    .section-header h3 {
        margin: 0;
        color: #2c3e50;
        font-size: 1.8rem;
        font-weight: 700;
    }

.criteria-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.criteria-item {
    background: #f8fcf9; 
    border: 1px solid #e1e8e3;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    display: flex;
    gap: 1.5rem;
    transition: transform 0.2s ease;
}

    .criteria-item:hover {
        transform: translateX(5px);
        border-color: #27ae60;
    }

.check-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.criteria-content h4 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 1.1rem;
}

.criteria-content p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.docs-card {
    background: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-top: 5px solid #e67e22; 
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 2.5rem;
    position: relative;
}

    .docs-card::before {
        content: '';
        position: absolute;
        top: -10px;
        left: 20px;
        right: 20px;
        height: 10px;
        background: #f0f0f0;
        border-radius: 12px 12px 0 0;
        z-index: -1;
    }

.docs-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
    border-bottom: 2px dashed #eee;
    padding-bottom: 1.5rem;
}

    .docs-header h3 {
        margin: 0;
        font-size: 1.6rem;
        color: #2c3e50;
    }

.doc-icon-main {
    font-size: 2rem;
    color: #e67e22;
}

.doc-list {
    list-style: none;
    padding: 0;
}

.doc-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.doc-bullet {
    color: #e67e22;
    font-size: 1.2rem;
    margin-top: -2px;
}

.doc-text {
    color: #555;
    line-height: 1.6;
}

    .doc-text strong {
        color: #333;
        display: block;
        margin-bottom: 4px;
    }

@media (max-width: 800px) {
    .eligibility-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .criteria-section {
        padding-right: 0;
    }
}