/* Admission Page Custom Styles */

/* Hero Section */
.admission-hero {
    padding: 220px 0 100px; /* Ensures content is below navbar */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
    text-align: center;
    overflow: hidden;
    background-image: linear-gradient(rgba(15, 23, 42, 0.9), rgba(0, 98, 204, 0.8)), url('../images/admission_banner.png');
}

.admission-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(234, 88, 12, 0.2), transparent 60%);
    pointer-events: none;
}

.admission-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.admission-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Admission Layout */
.admission-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .admission-layout {
        grid-template-columns: 1fr;
    }
}

/* Process Timeline (Left Column) */
.steps-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.steps-stack::before {
    content: '';
    position: absolute;
    left: 24px; /* Align with center of step-num */
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: #e2e8f0;
    z-index: 0;
    display: none; /* Hidden by default, opting for pill design */
}

.step-pill {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.step-pill:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 98, 204, 0.08);
}

.step-num {
    background: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 98, 204, 0.3);
}

.step-content h4 {
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.step-content p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Scholarship Card */
.scholarship-box {
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    border-radius: 25px;
    padding: 40px;
    color: white;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.scholarship-box::after {
    content: '';
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.scholarship-box i {
    font-size: 2.5rem;
    color: #fb923c; /* Orange tint */
    margin-bottom: 20px;
    display: block;
}

.scholarship-box h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
}

/* Enquiry Form (Right Column) */
.enquiry-card {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 120px;
}

.enquiry-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.enquiry-card h3::before {
    content: '';
    display: block;
    width: 5px;
    height: 25px;
    background: var(--primary);
    border-radius: 10px;
}

/* Documents Section */
.docs-section {
    padding: 100px 0;
    background: #f8fafc;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .admission-hero {
        padding: 160px 0 80px;
    }
    .admission-hero h1 {
        font-size: 3rem;
    }
    .admission-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .enquiry-card {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .admission-hero {
        padding: 140px 0 60px;
    }
    .admission-hero h1 {
        font-size: 2.2rem;
    }
    .admission-hero p {
        font-size: 1.1rem;
    }
    .docs-section, .section {
        padding: 60px 0;
    }
    .doc-grid {
        grid-template-columns: 1fr;
    }
    .step-pill {
        padding: 20px;
        gap: 15px;
    }
    .step-num {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .scholarship-box {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .admission-hero h1 {
        font-size: 1.8rem;
    }
    .enquiry-card {
        padding: 25px;
    }
    .step-pill:hover {
        transform: none;
    }
}

.doc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.doc-item {
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.doc-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.doc-item i {
    color: #10b981; /* Green check */
    font-size: 1.2rem;
}

.doc-item span {
    font-weight: 600;
    color: #475569;
}
