/*
 * Admission Page – Futuristic step timeline with glow
 * Bootstrap 5 | Responsive | Distinct design
 */

.adm-page-wrap {
    --adm-accent: #0ea5e9;
    --adm-glow: rgba(14, 165, 233, 0.4);
}

.adm-page-wrap .page-hero {
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #0ea5e9 100%);
    padding: 2.5rem 0 3rem;
    position: relative;
    overflow: hidden;
}
.adm-page-wrap .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 80% 20%, rgba(255,255,255,0.15), transparent);
    pointer-events: none;
}
.adm-page-wrap .page-hero .container { position: relative; z-index: 1; }
.adm-page-wrap .page-hero h1 {
    color: #fff;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.adm-page-wrap .page-hero h1 .hero-icon-wrap {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.adm-page-wrap .content-section {
    background: linear-gradient(180deg, #f0f9ff 0%, #fff 100%);
    padding: 3rem 0;
}

/* Timeline – vertical line + steps */
.adm-timeline {
    position: relative;
    padding-left: 0;
}
@media (min-width: 768px) {
    .adm-timeline { padding-left: 2rem; }
}
.adm-timeline::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--adm-accent), rgba(14, 165, 233, 0.3));
    border-radius: 3px;
}
@media (min-width: 768px) {
    .adm-timeline::before { left: 2rem; margin-left: -1.5px; }
}

.adm-step {
    position: relative;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(14, 165, 233, 0.2);
    padding: 1.5rem 1.5rem 1.5rem 4.5rem;
    margin-bottom: 1.5rem;
    transition: box-shadow 0.3s, transform 0.3s;
}
.adm-step:hover {
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.2);
    transform: translateX(4px);
}
@media (min-width: 768px) {
    .adm-step { padding-left: 5rem; }
}
.adm-step-num {
    position: absolute;
    left: 0.5rem;
    top: 1.5rem;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--adm-accent), #0284c7);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: 0 0 0 4px #fff, 0 0 24px var(--adm-glow);
}
@media (min-width: 768px) {
    .adm-step-num { left: 2rem; margin-left: -23px; }
}
.adm-step-title {
    color: #0c4a6e;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.adm-step p, .adm-step ul { color: #475569; font-size: 0.95rem; line-height: 1.7; margin: 0 0 0.5rem; }
.adm-step ul { padding-left: 1.25rem; }
.adm-step ul li { margin-bottom: 0.35rem; }

.adm-page-wrap .section-heading { color: #0c4a6e; border-bottom-color: var(--adm-accent); }
.adm-page-wrap .content-card {
    border-radius: 20px;
    border: 1px solid rgba(14, 165, 233, 0.2);
    box-shadow: 0 4px 24px rgba(14, 165, 233, 0.08);
}
.adm-page-wrap .section-subheading { color: var(--adm-accent); }

@media (max-width: 575.98px) {
    .adm-page-wrap .page-hero h1 { font-size: 1.4rem; }
    .adm-step { padding-left: 4rem; }
    .adm-step-num { width: 40px; height: 40px; font-size: 1.1rem; }
}
