/* Admissions Page Specific Styles */

/* Hero Section */
.admissions-hero {
    background: linear-gradient(rgba(40, 0, 40, 0.7), rgba(40, 0, 40, 0.7)), url('../images/students-studying.jpg') no-repeat center center;
    background-size: cover;
    padding: 5rem 0;
    color: #fff;
}

.admissions-hero h1 {
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    color: #fff;
}

/* Step-by-Step Application Process */
.application-steps-section {
    padding: 5rem 0;
}

.step-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background-color: rgba(128, 0, 128, 0.1);
    color: #800080;
    font-size: 3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.step-card h4 {
    font-weight: 700;
    margin-top: 2rem;
}

/* Key Dates Section */
.key-dates-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.key-dates-table th {
    background-color: #800080;
    color: #fff;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.faq-section .accordion-item {
    margin-bottom: 1rem;
    border-radius: 0.5rem !important;
    border: 1px solid #dee2e6;
}

.faq-section .accordion-button {
    font-weight: 600;
}