/* Our Process (Admission) page specific styles */
.page-process .adm-content {
    padding-bottom: 1rem;
}

/* Main heading styling */
.page-process .adm-content .display-6 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    color: var(--dl-blue);
}

/* Accent line styling */
.page-process .accent-line {
    width: 60px;
    height: 3px;
    background: var(--dl-yellow);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

/* Images styling */
.page-process .adm-content .img-fluid {
    border-radius: 12px;
    transition: all 0.3s ease;
}

.page-process .adm-content .img-fluid:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 102, 166, 0.12) !important;
}

/* Heading Styles */
.page-process .adm-content h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    color: var(--dl-blue);
    margin-bottom: 1rem;
}

.page-process .adm-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dl-blue);
    margin-bottom: 0.5rem;
}

.page-process .adm-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dl-text);
    margin-bottom: 1rem;
}

.page-process .lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dl-blue);
}

/* ============================================
   ADMISSION PROCESS STEPS CARDS
   ============================================ */
.admission-process-steps .process-step-card {
    background: linear-gradient(135deg, #f8fafb 0%, #f0f3f7 100%);
    border: 1px solid #eef6fb;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.admission-process-steps .process-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dl-blue), var(--dl-yellow));
}

.admission-process-steps .process-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(26, 102, 166, 0.1);
    border-color: var(--dl-blue);
}

.admission-process-steps .step-number {
    position: absolute;
    top: 12px;
    right: 16px;
    background: var(--dl-yellow);
    color: var(--dl-blue);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.admission-process-steps .step-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.admission-process-steps .process-step-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dl-blue);
    margin-bottom: 0.5rem;
}

.admission-process-steps .process-step-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   ADMISSION SECTIONS
   ============================================ */
.admission-section {
    background: #fff;
    border-left: 4px solid var(--dl-blue);
    padding: 1.5rem;
    border-radius: 8px;
}

.section-header h3 {
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
}

.section-line {
    width: 50px;
    height: 2px;
    background: var(--dl-yellow);
    border-radius: 2px;
}

.admission-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--dl-text);
}

.admission-section p:last-child {
    margin-bottom: 0;
}

/* ============================================
   MOBILE RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .admission-process-steps .process-step-card {
        padding: 1.25rem !important;
        border-radius: 10px;
    }

    .admission-process-steps .step-number {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        top: 10px;
        right: 12px;
    }

    .admission-process-steps .step-icon {
        font-size: 2rem;
    }

    .admission-process-steps .process-step-card h4 {
        font-size: 1rem;
    }

    .page-process .adm-content .display-6 {
        font-size: 1.5rem;
    }

    .page-process .adm-content h2 {
        font-size: 1.5rem;
    }

    .page-process .adm-content h3 {
        font-size: 1.1rem;
    }

    .admission-section {
        padding: 1.25rem;
        border-left: 3px solid var(--dl-blue);
    }

    .admission-section p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .admission-process-steps .process-step-card {
        padding: 1rem !important;
        border-radius: 8px;
    }

    .admission-process-steps .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        top: 8px;
        right: 10px;
    }

    .admission-process-steps .step-icon {
        font-size: 1.75rem;
    }

    .admission-process-steps .process-step-card h4 {
        font-size: 0.95rem;
    }

    .admission-process-steps .process-step-card p {
        font-size: 0.85rem;
    }

    .page-process .adm-content .display-6 {
        font-size: 1.3rem;
    }

    .page-process .adm-content h2 {
        font-size: 1.3rem;
    }

    .page-process .adm-content h3 {
        font-size: 1rem;
    }

    .page-process .accent-line {
        width: 50px;
        margin-bottom: 1rem;
    }

    .admission-section {
        padding: 1rem;
        border-left: 3px solid var(--dl-blue);
    }

    .admission-section p {
        font-size: 0.85rem;
    }

    .section-line {
        width: 40px;
    }
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */
.admission-process-steps .process-step-card,
.page-process .adm-content .img-fluid {
    transition: all 0.3s ease;
}

/* Sidebar removed — full-width admissions layout */

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .adm-hero {
        display: none;
    }

    .admission-process-steps .process-step-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .admission-section {
        page-break-inside: avoid;
    }
}