/* Academics Page Specific Styles */

/* Hero Section */
.academics-hero {
    background: linear-gradient(rgba(40, 0, 40, 0.7), rgba(40, 0, 40, 0.7)), url('../images/academics-hero.jpg') no-repeat center center;
    background-size: cover;
    padding: 5rem 0;
    color: #fff;
}

.academics-hero h1 {
    font-weight: 800;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7); /* Stronger shadow for better visibility */
    color: #fff; /* Ensure text is white */
}

.academics-hero .lead {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6); /* Shadow for lead text */
    color: #f0f0f0; /* Ensure text is bright */
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 5rem 0;
}

.why-choose-section .icon-box {
    font-size: 3rem;
    color: #800080;
    margin-bottom: 1rem;
}

/* Faculty Accordion */
.faculty-accordion .accordion-item {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faculty-accordion .accordion-button {
    font-size: 1.25rem;
    font-weight: 600;
    color: #343a40;
    background-color: #f8f9fa;
}

.faculty-accordion .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #800080;
}

.faculty-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(128, 0, 128, 0.25);
}

.faculty-accordion .accordion-body {
    padding: 1.5rem;
}

.faculty-accordion .department-list li {
    margin-bottom: 0.5rem;
}

/* Featured Programs */
.featured-programs-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.program-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.program-card .card-body {
    padding: 2rem;
}

.program-card .card-title {
    font-weight: 700;
    color: #800080;
}